diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b9fbcec --- /dev/null +++ b/.gitmodules @@ -0,0 +1,23 @@ +[submodule "submodules/tree-sitter-bash"] + path = submodules/tree-sitter-bash + url = https://github.com/tgross35/tree-sitter-bash.git + branch = patch-1 + shallow = true +[submodule "submodules/tree-sitter-PowerShell"] + path = submodules/tree-sitter-PowerShell + url = https://github.com/tgross35/tree-sitter-PowerShell.git + branch = add-ts-package-config + shallow = true +[submodule "submodules/tree-sitter-perl"] + path = submodules/tree-sitter-perl + url = https://github.com/tgross35/tree-sitter-perl.git + branch = patch-1 + shallow = true +[submodule "submodules/tree-sitter-python"] + path = submodules/tree-sitter-python + url = https://github.com/tree-sitter/tree-sitter-python.git + shallow = true +[submodule "submodules/tree-sitter-regex"] + path = submodules/tree-sitter-regex + url = https://github.com/tree-sitter/tree-sitter-regex.git + shallow = true diff --git a/build-flavored-queries.py b/build-flavored-queries.py index 883615f..1abd285 100755 --- a/build-flavored-queries.py +++ b/build-flavored-queries.py @@ -28,8 +28,8 @@ ] REPLACEMENTS_RE = [ - (r";\s*NVIM-DISABLE-START.*;\s*NVIM-DISABLE-END", "", re.MULTILINE | re.DOTALL), - ("^.*NVIM-ENABLE(?P.*)$", r"\g", re.MULTILINE), + (r"^[^;] ?(.*;\s*NVIM-DISABLE)$", "", re.MULTILINE), + (r"^; ?(.*;\s*NVIM-ENABLE)$", r"\1", re.MULTILINE), ] diff --git a/grammar.js b/grammar.js index 4516162..b5146e7 100644 --- a/grammar.js +++ b/grammar.js @@ -8,7 +8,7 @@ function comma_sep1(item) { } // Create an array with the given item as contents -function array(item) { +function make_array(item) { const array_item = field("array_item", item); return field( "array", @@ -119,26 +119,17 @@ module.exports = grammar({ seq( "set", field("left", $.identifier), - field( - "right", - optional( - seq(":=", choice($.boolean, $._string, array($._string))), - ), - ), - $.eol, - ), - seq( - "set", - "shell", - ":=", - field( - "right", - array($._string), + optional( + seq(":=", field("right", choice($.boolean, $._string, $.array))), ), $.eol, ), ), + // Our only use of arrays (setting) only accepts strings. We may want to figure + // out how to better reuse `array` while specifying a type. + array: ($) => make_array($._string), + // boolean : ':=' ('true' | 'false') boolean: (_) => choice("true", "false"), diff --git a/package.json b/package.json index 49d89c3..3b20ec5 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,8 @@ "injection-regex": "^(?i)just(file)?$", "first-line-regex": "#!\\S*bin\\S*[/ ]just", "highlights": ["queries-src/highlights.scm"], - "locals": ["queries-src/locals.scm"] + "locals": ["queries-src/locals.scm"], + "injections": ["queries-src/injections.scm"] } ] } diff --git a/queries-src/highlights.scm b/queries-src/highlights.scm index 75cf322..a10c543 100644 --- a/queries-src/highlights.scm +++ b/queries-src/highlights.scm @@ -7,13 +7,14 @@ (alias left: (identifier) @variable) (assignment left: (identifier) @variable - [":="] @operator) + ":=" @operator) (module mod_name: (identifier) @namespace) ; highlight known settings (filtering does not always work) (setting left: ((identifier) @keyword + ":="? @operator (#any-of? @keyword "allow-duplicate-recipes" "dotenv-filename" @@ -38,24 +39,8 @@ (function_call name: (identifier) @function) -; highlight known attributes (filtering does not always work) (attribute - attr_item: ((identifier) @attribute - (#any-of? @attribute - "private" - "allow-duplicate-recipes" - "dotenv-filename" - "dotenv-load" - "dotenv-path" - "export" - "fallback" - "ignore-comments" - "positional-arguments" - "shell" - "tempdi" - "windows-powershell" - "windows-shell" - ))) + attr_item: ((identifier) @attribute)) (recipe_header recipe_name: (identifier) @function) diff --git a/queries-src/injections.scm b/queries-src/injections.scm index 192c6e8..7478c58 100644 --- a/queries-src/injections.scm +++ b/queries-src/injections.scm @@ -1,32 +1,161 @@ ; This query specifies how nested languages are handled +; ================ Standards ================ ((comment) @injection.content (#set! injection.language "comment")) -; NVIM-DISABLE-START -(recipe_body - (shebang) @injection.shebang - (recipe_line - (text) @injection.content)) -; NVIM-DISABLE-END +; Highlight the RHS of `=~` as regex +((regex_literal + [ + (string_literal) + (raw_string_literal) + ] @injection.content) + (#set! injection.language "regex")) + + +; ================ Global language ================ +; Global language is set with something like one of the following: +; +; set shell := ["bash", "-c", ...] +; set shell := ["pwsh.exe"] +; +; We can extract the first item of the array, but we can't extract the language +; name from that with something like regex. So instead we special case two +; things: powershell, which is likely to come with a `.exe` attachment, and +; everything else which hopefully has no extension. We separate this with a +; `#match`. +; +; On NeoVim we have `#gsub!`, so this split is not required. +; +; We also don't have a way to apply this captured language to more than one +; possible item, so instead we do each of the above patterns twice to cover +; all options (recipe bodies and external commands) +; +; Unfortunately, there also isn't a way to allow arbitrary nesting or +; alternatively set "global" capture variables. So we can set this for item- +; level external commands, but not for e.g. external commands within an +; expression without getting _really_ annoying. Should at least look fine since +; they default to bash. Limitations... +; See https://github.com/tree-sitter/tree-sitter/issues/880 for more on that. + +(source_file ; NVIM-DISABLE + (item ; NVIM-DISABLE + (setting ; NVIM-DISABLE + left: (identifier) @setting ; NVIM-DISABLE + (#match? @setting "^shell$") ; NVIM-DISABLE + right: (array ; NVIM-DISABLE + (string_literal) @executable ; NVIM-DISABLE + (#match? @executable ".*(powershell|pwsh|cmd).*") ; NVIM-DISABLE + (#set! injection.language "powershell") ; NVIM-DISABLE + ))) ; NVIM-DISABLE + (item ; NVIM-DISABLE + (recipe ; NVIM-DISABLE + (recipe_body ; NVIM-DISABLE + (recipe_line ; NVIM-DISABLE + (text) @injection.content))))) ; NVIM-DISABLE + ; NVIM-DISABLE +(source_file ; NVIM-DISABLE + (item ; NVIM-DISABLE + (setting ; NVIM-DISABLE + left: (identifier) @setting ; NVIM-DISABLE + (#match? @setting "^shell$") ; NVIM-DISABLE + right: (array ; NVIM-DISABLE + (string_literal) @injection.language ; NVIM-DISABLE + (#not-match? @executable ".*(powershell|pwsh|cmd).*") ; NVIM-DISABLE + ))) ; NVIM-DISABLE + (item ; NVIM-DISABLE + (recipe ; NVIM-DISABLE + (recipe_body ; NVIM-DISABLE + (recipe_line ; NVIM-DISABLE + (text) @injection.content))))) ; NVIM-DISABLE + ; NVIM-DISABLE +(source_file ; NVIM-DISABLE + (item ; NVIM-DISABLE + (setting ; NVIM-DISABLE + left: (identifier) @setting ; NVIM-DISABLE + (#match? @setting "^shell$") ; NVIM-DISABLE + right: (array ; NVIM-DISABLE + (string_literal) @executable ; NVIM-DISABLE + (#match? @executable ".*(powershell|pwsh|cmd).*") ; NVIM-DISABLE + (#set! injection.language "powershell") ; NVIM-DISABLE + ))) ; NVIM-DISABLE + (item ; NVIM-DISABLE + (assignment ; NVIM-DISABLE + right: (expression ; NVIM-DISABLE + (value ; NVIM-DISABLE + (external_command ; NVIM-DISABLE + body: (command_body) @injection.content)))))) ; NVIM-DISABLE + ; NVIM-DISABLE +(source_file ; NVIM-DISABLE + (item ; NVIM-DISABLE + (setting ; NVIM-DISABLE + left: (identifier) @setting ; NVIM-DISABLE + (#match? @setting "^shell$") ; NVIM-DISABLE + right: (array ; NVIM-DISABLE + (string_literal) @injection.language ; NVIM-DISABLE + (#not-match? @executable ".*(powershell|pwsh|cmd).*") ; NVIM-DISABLE + ))) ; NVIM-DISABLE + (item ; NVIM-DISABLE + (assignment ; NVIM-DISABLE + right: (expression ; NVIM-DISABLE + (value ; NVIM-DISABLE + (external_command ; NVIM-DISABLE + body: (command_body) @injection.content)))))) ; NVIM-DISABLE + +; (source_file ; NVIM-ENABLE +; (item ; NVIM-ENABLE +; (setting ; NVIM-ENABLE +; left: (identifier) @setting ; NVIM-ENABLE +; (#match? @setting "^shell$") ; NVIM-ENABLE +; right: (array ; NVIM-ENABLE +; (string_literal) @injection.language ; NVIM-ENABLE +; (#gsub! injection.language "(%S+)%*" "%1") ; NVIM-ENABLE +; ))) ; NVIM-ENABLE +; (item ; NVIM-ENABLE +; (assignment ; NVIM-ENABLE +; right: (expression ; NVIM-ENABLE +; (value ; NVIM-ENABLE +; (external_command ; NVIM-ENABLE +; body: (command_body) @injection.content)))))) ; NVIM-ENABLE +; ; NVIM-ENABLE +; (source_file ; NVIM-ENABLE +; (item ; NVIM-ENABLE +; (setting ; NVIM-ENABLE +; left: (identifier) @setting ; NVIM-ENABLE +; (#match? @setting "^shell$") ; NVIM-ENABLE +; right: (array ; NVIM-ENABLE +; (string_literal) @injection.language ; NVIM-ENABLE +; (#gsub! injection.language "(%S+)%*" "%1") ; NVIM-ENABLE +; ))) ; NVIM-ENABLE +; (item ; NVIM-ENABLE +; (assignment ; NVIM-ENABLE +; right: (expression ; NVIM-ENABLE +; (value ; NVIM-ENABLE +; (external_command ; NVIM-ENABLE +; body: (command_body) @injection.content)))))) ; NVIM-ENABLE + +; ================ Handle shebangs ================ + +(recipe_body ; NVIM-DISABLE + (shebang) @injection.shebang ; NVIM-DISABLE + (recipe_line ; NVIM-DISABLE + (text) @injection.content)) ; NVIM-DISABLE +; On NeoVIM, use gsub to extract the language from the shebang +; (recipe_body ; NVIM-ENABLE +; (shebang) @injection.language ; NVIM-ENABLE +; (recipe_line ; NVIM-ENABLE +; (text) @injection.content) ; NVIM-ENABLE +; (#gsub! injection.language "/#!%*[\/ ](%S+)/" "%1")) ; NVIM-ENABLE + + +; ================ Default recipe body ================ + +; If there are no other matches, set defaults to bash (recipe_line (text) @injection.content (#set! injection.language "bash")) -; NVIM-ENABLE (recipe_body -; NVIM-ENABLE (shebang) @injection.language -; NVIM-ENABLE (recipe_line -; NVIM-ENABLE (text) @injection.content) -; NVIM-ENABLE (#gsub! injection.language "/#!%*[\/ ](%S+)/" "%1")) - (external_command (command_body) @injection.content (#set! injection.language "bash")) - -((regex_literal - [ - (string_literal) - (raw_string_literal) - ] @injection.content) - (#set! injection.language "regex")) diff --git a/queries/just/highlights.scm b/queries/just/highlights.scm index 47d3931..a72c336 100644 --- a/queries/just/highlights.scm +++ b/queries/just/highlights.scm @@ -9,13 +9,14 @@ (alias left: (identifier) @variable) (assignment left: (identifier) @variable - [":="] @operator) + ":=" @operator) (module mod_name: (identifier) @namespace) ; highlight known settings (filtering does not always work) (setting left: ((identifier) @keyword + ":="? @operator (#any-of? @keyword "allow-duplicate-recipes" "dotenv-filename" @@ -40,24 +41,8 @@ (function_call name: (identifier) @function) -; highlight known attributes (filtering does not always work) (attribute - attr_item: ((identifier) @attribute - (#any-of? @attribute - "private" - "allow-duplicate-recipes" - "dotenv-filename" - "dotenv-load" - "dotenv-path" - "export" - "fallback" - "ignore-comments" - "positional-arguments" - "shell" - "tempdi" - "windows-powershell" - "windows-shell" - ))) + attr_item: ((identifier) @attribute)) (recipe_header recipe_name: (identifier) @function) diff --git a/queries/just/injections.scm b/queries/just/injections.scm index fbe3f53..8ba76f8 100644 --- a/queries/just/injections.scm +++ b/queries/just/injections.scm @@ -2,28 +2,160 @@ ; This query specifies how nested languages are handled +; ================ Standards ================ ((comment) @injection.content (#set! injection.language "comment")) +; Highlight the RHS of `=~` as regex +((regex_literal + [ + (string_literal) + (raw_string_literal) + ] @injection.content) + (#set! injection.language "regex")) + + +; ================ Global language ================ +; Global language is set with something like one of the following: +; +; set shell := ["bash", "-c", ...] +; set shell := ["pwsh.exe"] +; +; We can extract the first item of the array, but we can't extract the language +; name from that with something like regex. So instead we special case two +; things: powershell, which is likely to come with a `.exe` attachment, and +; everything else which hopefully has no extension. We separate this with a +; `#match`. +; +; On NeoVim we have `#gsub!`, so this split is not required. +; +; We also don't have a way to apply this captured language to more than one +; possible item, so instead we do each of the above patterns twice to cover +; all options (recipe bodies and external commands) +; +; Unfortunately, there also isn't a way to allow arbitrary nesting or +; alternatively set "global" capture variables. So we can set this for item- +; level external commands, but not for e.g. external commands within an +; expression without getting _really_ annoying. Should at least look fine since +; they default to bash. Limitations... +; See https://github.com/tree-sitter/tree-sitter/issues/880 for more on that. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +(source_file ; NVIM-ENABLE + (item ; NVIM-ENABLE + (setting ; NVIM-ENABLE + left: (identifier) @setting ; NVIM-ENABLE + (#match? @setting "^shell$") ; NVIM-ENABLE + right: (array ; NVIM-ENABLE + (string_literal) @injection.language ; NVIM-ENABLE + (#gsub! injection.language "(%S+)%*" "%1") ; NVIM-ENABLE + ))) ; NVIM-ENABLE + (item ; NVIM-ENABLE + (assignment ; NVIM-ENABLE + right: (expression ; NVIM-ENABLE + (value ; NVIM-ENABLE + (external_command ; NVIM-ENABLE + body: (command_body) @injection.content)))))) ; NVIM-ENABLE + ; NVIM-ENABLE +(source_file ; NVIM-ENABLE + (item ; NVIM-ENABLE + (setting ; NVIM-ENABLE + left: (identifier) @setting ; NVIM-ENABLE + (#match? @setting "^shell$") ; NVIM-ENABLE + right: (array ; NVIM-ENABLE + (string_literal) @injection.language ; NVIM-ENABLE + (#gsub! injection.language "(%S+)%*" "%1") ; NVIM-ENABLE + ))) ; NVIM-ENABLE + (item ; NVIM-ENABLE + (assignment ; NVIM-ENABLE + right: (expression ; NVIM-ENABLE + (value ; NVIM-ENABLE + (external_command ; NVIM-ENABLE + body: (command_body) @injection.content)))))) ; NVIM-ENABLE + +; ================ Handle shebangs ================ + + + + + +; On NeoVIM, use gsub to extract the language from the shebang + (recipe_body ; NVIM-ENABLE + (shebang) @injection.language ; NVIM-ENABLE + (recipe_line ; NVIM-ENABLE + (text) @injection.content) ; NVIM-ENABLE + (#gsub! injection.language "/#!%*[\/ ](%S+)/" "%1")) ; NVIM-ENABLE + + +; ================ Default recipe body ================ + +; If there are no other matches, set defaults to bash (recipe_line (text) @injection.content (#set! injection.language "bash")) - (recipe_body - (shebang) @injection.shebang - (recipe_line - (text) @injection.content - (#set! injection.language "python"))) - (external_command (command_body) @injection.content (#set! injection.language "bash")) - -((regex_literal - [ - (string_literal) - (raw_string_literal) - ] @injection.content) - (#set! injection.language "regex")) diff --git a/src/grammar.json b/src/grammar.json index 29b82dc..18028bb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -232,19 +232,19 @@ } }, { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":=" - }, - { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":=" + }, + { + "type": "FIELD", + "name": "right", + "content": { "type": "CHOICE", "members": [ { @@ -256,213 +256,109 @@ "name": "_string" }, { - "type": "FIELD", - "name": "array", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "contents", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "STRING", - "value": "]" - } - ] - } + "type": "SYMBOL", + "name": "array" } ] } - ] - }, - { - "type": "BLANK" - } - ] - } + } + ] + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", "name": "eol" } ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "set" - }, - { - "type": "STRING", - "value": "shell" - }, - { - "type": "STRING", - "value": ":=" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "FIELD", - "name": "array", - "content": { + } + ] + }, + "array": { + "type": "FIELD", + "name": "array", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "contents", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "contents", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "array_item", + "content": { + "type": "SYMBOL", + "name": "_string" + } + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - } - ] - } - } - ] + "type": "STRING", + "value": "," }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "array_item", - "content": { - "type": "SYMBOL", - "name": "_string" - } - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "array_item", + "content": { + "type": "SYMBOL", + "name": "_string" + } } ] - }, - { - "type": "BLANK" } - ] - } + } + ] }, { - "type": "STRING", - "value": "]" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "array_item", + "content": { + "type": "SYMBOL", + "name": "_string" + } + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "BLANK" } - } - }, - { - "type": "SYMBOL", - "name": "eol" + ] } - ] - } - ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } }, "boolean": { "type": "CHOICE", @@ -1276,10 +1172,6 @@ ] } }, - "shebang_language": { - "type": "PATTERN", - "value": ".+" - }, "comment": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 47a7c96..d5559d6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -25,6 +25,58 @@ } } }, + { + "type": "array", + "named": true, + "fields": { + "array": { + "multiple": true, + "required": true, + "types": [ + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + } + ] + }, + "array_item": { + "multiple": true, + "required": false, + "types": [ + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + "contents": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, { "type": "assignment", "named": true, @@ -664,55 +716,9 @@ "type": "setting", "named": true, "fields": { - "array": { - "multiple": true, - "required": false, - "types": [ - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - } - ] - }, - "array_item": { - "multiple": true, - "required": false, - "types": [ - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "string_literal", - "named": true - } - ] - }, - "contents": { - "multiple": true, - "required": false, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "string_literal", - "named": true - } - ] - }, "left": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -721,20 +727,12 @@ ] }, "right": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": ":=", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false + "type": "array", + "named": true }, { "type": "boolean", @@ -822,11 +820,6 @@ } } }, - { - "type": "text", - "named": true, - "fields": {} - }, { "type": "value", "named": true, @@ -1029,8 +1022,8 @@ "named": false }, { - "type": "shell", - "named": false + "type": "text", + "named": true }, { "type": "true", diff --git a/src/parser.c b/src/parser.c index 57e7c9e..1dcb8c4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 364 +#define STATE_COUNT 341 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 104 +#define SYMBOL_COUNT 103 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 51 +#define TOKEN_COUNT 50 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 19 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 48 +#define MAX_ALIAS_SEQUENCE_LENGTH 6 +#define PRODUCTION_ID_COUNT 42 enum { sym_identifier = 1, @@ -28,54 +28,54 @@ enum { anon_sym_LBRACK = 9, anon_sym_COMMA = 10, anon_sym_RBRACK = 11, - anon_sym_shell = 12, - anon_sym_true = 13, - anon_sym_false = 14, - anon_sym_SLASH = 15, - anon_sym_PLUS = 16, - anon_sym_if = 17, - anon_sym_else = 18, - anon_sym_LBRACE = 19, - anon_sym_RBRACE = 20, - anon_sym_EQ_EQ = 21, - anon_sym_BANG_EQ = 22, - anon_sym_EQ_TILDE = 23, - anon_sym_LPAREN = 24, - anon_sym_RPAREN = 25, - anon_sym_AT = 26, - anon_sym_COLON = 27, - anon_sym_DOLLAR = 28, - anon_sym_EQ = 29, - anon_sym_STAR = 30, - anon_sym_AMP_AMP = 31, - anon_sym_AT_DASH = 32, - anon_sym_DASH_AT = 33, - anon_sym_DASH = 34, - aux_sym_shebang_token1 = 35, - aux_sym_shebang_language_token1 = 36, - aux_sym_comment_token1 = 37, - anon_sym_LBRACE_LBRACE = 38, - anon_sym_RBRACE_RBRACE = 39, - sym_escape_sequence = 40, - sym__indent = 41, - sym__dedent = 42, - sym__newline = 43, - sym__string_start = 44, - sym__string_end = 45, - sym__string_body = 46, - sym__raw_string_start = 47, - sym__raw_string_end = 48, - sym__command_start = 49, - sym__command_end = 50, - sym_source_file = 51, - sym_item = 52, - sym_eol = 53, - sym_alias = 54, - sym_assignment = 55, - sym_export = 56, - sym_import = 57, - sym_module = 58, - sym_setting = 59, + anon_sym_true = 12, + anon_sym_false = 13, + anon_sym_SLASH = 14, + anon_sym_PLUS = 15, + anon_sym_if = 16, + anon_sym_else = 17, + anon_sym_LBRACE = 18, + anon_sym_RBRACE = 19, + anon_sym_EQ_EQ = 20, + anon_sym_BANG_EQ = 21, + anon_sym_EQ_TILDE = 22, + anon_sym_LPAREN = 23, + anon_sym_RPAREN = 24, + anon_sym_AT = 25, + anon_sym_COLON = 26, + anon_sym_DOLLAR = 27, + anon_sym_EQ = 28, + anon_sym_STAR = 29, + anon_sym_AMP_AMP = 30, + anon_sym_AT_DASH = 31, + anon_sym_DASH_AT = 32, + anon_sym_DASH = 33, + aux_sym_shebang_token1 = 34, + aux_sym_comment_token1 = 35, + anon_sym_LBRACE_LBRACE = 36, + anon_sym_RBRACE_RBRACE = 37, + sym_escape_sequence = 38, + sym_text = 39, + sym__indent = 40, + sym__dedent = 41, + sym__newline = 42, + sym__string_start = 43, + sym__string_end = 44, + sym__string_body = 45, + sym__raw_string_start = 46, + sym__raw_string_end = 47, + sym__command_start = 48, + sym__command_end = 49, + sym_source_file = 50, + sym_item = 51, + sym_eol = 52, + sym_alias = 53, + sym_assignment = 54, + sym_export = 55, + sym_import = 56, + sym_module = 57, + sym_setting = 58, + sym_array = 59, sym_boolean = 60, sym_expression = 61, sym__expression_inner = 62, @@ -106,21 +106,20 @@ enum { sym_raw_string_literal = 87, sym_external_command = 88, sym_command_body = 89, - sym_text = 90, - aux_sym_source_file_repeat1 = 91, - aux_sym_setting_repeat1 = 92, - aux_sym_if_expression_repeat1 = 93, - aux_sym_sequence_repeat1 = 94, - aux_sym_attribute_repeat1 = 95, - aux_sym_recipe_repeat1 = 96, - aux_sym_parameters_repeat1 = 97, - aux_sym_dependencies_repeat1 = 98, - aux_sym_dependency_expression_repeat1 = 99, - aux_sym_recipe_body_repeat1 = 100, - aux_sym_recipe_line_repeat1 = 101, - aux_sym_string_literal_repeat1 = 102, - aux_sym_external_command_repeat1 = 103, - anon_alias_sym_expression = 104, + aux_sym_source_file_repeat1 = 90, + aux_sym_array_repeat1 = 91, + aux_sym_if_expression_repeat1 = 92, + aux_sym_sequence_repeat1 = 93, + aux_sym_attribute_repeat1 = 94, + aux_sym_recipe_repeat1 = 95, + aux_sym_parameters_repeat1 = 96, + aux_sym_dependencies_repeat1 = 97, + aux_sym_dependency_expression_repeat1 = 98, + aux_sym_recipe_body_repeat1 = 99, + aux_sym_recipe_line_repeat1 = 100, + aux_sym_string_literal_repeat1 = 101, + aux_sym_external_command_repeat1 = 102, + anon_alias_sym_expression = 103, }; static const char * const ts_symbol_names[] = { @@ -136,7 +135,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_COMMA] = ",", [anon_sym_RBRACK] = "]", - [anon_sym_shell] = "shell", [anon_sym_true] = "true", [anon_sym_false] = "false", [anon_sym_SLASH] = "/", @@ -160,11 +158,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_AT] = "-@", [anon_sym_DASH] = "-", [aux_sym_shebang_token1] = "shebang_token1", - [aux_sym_shebang_language_token1] = "shebang_language_token1", [aux_sym_comment_token1] = "comment_token1", [anon_sym_LBRACE_LBRACE] = "{{", [anon_sym_RBRACE_RBRACE] = "}}", [sym_escape_sequence] = "escape_sequence", + [sym_text] = "text", [sym__indent] = "_indent", [sym__dedent] = "_dedent", [sym__newline] = "_newline", @@ -184,6 +182,7 @@ static const char * const ts_symbol_names[] = { [sym_import] = "import", [sym_module] = "module", [sym_setting] = "setting", + [sym_array] = "array", [sym_boolean] = "boolean", [sym_expression] = "expression", [sym__expression_inner] = "_expression_inner", @@ -214,9 +213,8 @@ static const char * const ts_symbol_names[] = { [sym_raw_string_literal] = "raw_string_literal", [sym_external_command] = "external_command", [sym_command_body] = "command_body", - [sym_text] = "text", [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_setting_repeat1] = "setting_repeat1", + [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_if_expression_repeat1] = "if_expression_repeat1", [aux_sym_sequence_repeat1] = "sequence_repeat1", [aux_sym_attribute_repeat1] = "attribute_repeat1", @@ -244,7 +242,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_shell] = anon_sym_shell, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, [anon_sym_SLASH] = anon_sym_SLASH, @@ -268,11 +265,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_AT] = anon_sym_DASH_AT, [anon_sym_DASH] = anon_sym_DASH, [aux_sym_shebang_token1] = aux_sym_shebang_token1, - [aux_sym_shebang_language_token1] = aux_sym_shebang_language_token1, [aux_sym_comment_token1] = aux_sym_comment_token1, [anon_sym_LBRACE_LBRACE] = anon_sym_LBRACE_LBRACE, [anon_sym_RBRACE_RBRACE] = anon_sym_RBRACE_RBRACE, [sym_escape_sequence] = sym_escape_sequence, + [sym_text] = sym_text, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, [sym__newline] = sym__newline, @@ -292,6 +289,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_import] = sym_import, [sym_module] = sym_module, [sym_setting] = sym_setting, + [sym_array] = sym_array, [sym_boolean] = sym_boolean, [sym_expression] = sym_expression, [sym__expression_inner] = sym__expression_inner, @@ -322,9 +320,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_raw_string_literal] = sym_raw_string_literal, [sym_external_command] = sym_external_command, [sym_command_body] = sym_command_body, - [sym_text] = sym_text, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_setting_repeat1] = aux_sym_setting_repeat1, + [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_if_expression_repeat1] = aux_sym_if_expression_repeat1, [aux_sym_sequence_repeat1] = aux_sym_sequence_repeat1, [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, @@ -388,10 +385,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_shell] = { - .visible = true, - .named = false, - }, [anon_sym_true] = { .visible = true, .named = false, @@ -484,10 +477,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_shebang_language_token1] = { - .visible = false, - .named = false, - }, [aux_sym_comment_token1] = { .visible = false, .named = false, @@ -504,6 +493,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_text] = { + .visible = true, + .named = true, + }, [sym__indent] = { .visible = false, .named = true, @@ -580,6 +573,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_array] = { + .visible = true, + .named = true, + }, [sym_boolean] = { .visible = true, .named = true, @@ -700,15 +697,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_text] = { - .visible = true, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, }, - [aux_sym_setting_repeat1] = { + [aux_sym_array_repeat1] = { .visible = false, .named = false, }, @@ -824,36 +817,30 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [14] = {.index = 17, .length = 2}, [15] = {.index = 19, .length = 2}, [16] = {.index = 21, .length = 2}, - [17] = {.index = 23, .length = 3}, - [18] = {.index = 26, .length = 3}, - [19] = {.index = 29, .length = 1}, - [20] = {.index = 30, .length = 1}, - [22] = {.index = 31, .length = 1}, - [23] = {.index = 32, .length = 1}, - [24] = {.index = 33, .length = 2}, - [25] = {.index = 35, .length = 1}, - [26] = {.index = 36, .length = 2}, - [27] = {.index = 38, .length = 4}, - [28] = {.index = 42, .length = 2}, - [29] = {.index = 44, .length = 2}, - [30] = {.index = 46, .length = 2}, - [31] = {.index = 48, .length = 2}, - [32] = {.index = 50, .length = 2}, - [33] = {.index = 52, .length = 1}, - [34] = {.index = 53, .length = 3}, - [35] = {.index = 56, .length = 2}, - [36] = {.index = 58, .length = 5}, - [37] = {.index = 63, .length = 1}, - [38] = {.index = 64, .length = 2}, - [39] = {.index = 66, .length = 2}, - [40] = {.index = 68, .length = 4}, - [41] = {.index = 72, .length = 5}, - [42] = {.index = 77, .length = 6}, - [43] = {.index = 83, .length = 7}, - [44] = {.index = 90, .length = 3}, - [45] = {.index = 93, .length = 6}, - [46] = {.index = 99, .length = 8}, - [47] = {.index = 107, .length = 1}, + [17] = {.index = 23, .length = 2}, + [18] = {.index = 25, .length = 3}, + [19] = {.index = 28, .length = 1}, + [20] = {.index = 29, .length = 1}, + [22] = {.index = 30, .length = 1}, + [23] = {.index = 31, .length = 1}, + [24] = {.index = 32, .length = 2}, + [25] = {.index = 34, .length = 1}, + [26] = {.index = 35, .length = 3}, + [27] = {.index = 38, .length = 2}, + [28] = {.index = 40, .length = 2}, + [29] = {.index = 42, .length = 2}, + [30] = {.index = 44, .length = 2}, + [31] = {.index = 46, .length = 2}, + [32] = {.index = 48, .length = 1}, + [33] = {.index = 49, .length = 4}, + [34] = {.index = 53, .length = 5}, + [35] = {.index = 58, .length = 2}, + [36] = {.index = 60, .length = 1}, + [37] = {.index = 61, .length = 2}, + [38] = {.index = 63, .length = 2}, + [39] = {.index = 65, .length = 6}, + [40] = {.index = 71, .length = 3}, + [41] = {.index = 74, .length = 1}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -897,119 +884,80 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_default, 2}, {field_param, 0}, [23] = - {field_left, 1}, - {field_right, 2}, - {field_right, 3}, - [26] = + {field_array, 0}, + {field_array, 1}, + [25] = {field_attr_item, 1}, {field_attr_item, 2, .inherited = true}, {field_contents, 2}, - [29] = + [28] = {field_braced_body, 2, .inherited = true}, - [30] = + [29] = {field_name, 0}, - [31] = + [30] = {field_recipe, 1}, - [32] = + [31] = {field_expression, 0}, - [33] = + [32] = {field_default, 3}, {field_param, 1}, - [35] = + [34] = {field_contents, 1}, - [36] = - {field_right, 3}, - {field_right, 4}, + [35] = + {field_array, 0}, + {field_array, 2}, + {field_array_item, 1}, [38] = - {field_array, 3}, - {field_array, 4}, - {field_left, 1}, - {field_right, 2}, - [42] = {field_braced_body, 2, .inherited = true}, {field_braced_body, 3, .inherited = true}, - [44] = + [40] = {field_arguments, 2}, {field_name, 0}, - [46] = + [42] = {field_expression, 2, .inherited = true}, {field_recipe, 1}, - [48] = + [44] = {field_expression, 0, .inherited = true}, {field_expression, 1, .inherited = true}, - [50] = + [46] = {field_contents, 1}, {field_contents, 2}, - [52] = + [48] = {field_array_item, 1}, + [49] = + {field_array, 0}, + {field_array, 3}, + {field_array_item, 1}, + {field_array_item, 2}, [53] = - {field_array_item, 4}, - {field_right, 3}, - {field_right, 5}, - [56] = + {field_array, 0}, + {field_array, 3}, + {field_array_item, 1}, + {field_array_item, 2, .inherited = true}, + {field_contents, 2}, + [58] = {field_array_item, 0, .inherited = true}, {field_array_item, 1, .inherited = true}, - [58] = - {field_array, 3}, - {field_array, 5}, - {field_array_item, 4}, - {field_left, 1}, - {field_right, 2}, - [63] = + [60] = {field_braced_body, 1}, - [64] = + [61] = {field_braced_body, 2, .inherited = true}, {field_braced_body, 4, .inherited = true}, - [66] = + [63] = {field_braced_body, 0, .inherited = true}, {field_braced_body, 1, .inherited = true}, - [68] = - {field_array_item, 4}, - {field_array_item, 5}, - {field_right, 3}, - {field_right, 6}, - [72] = - {field_array_item, 4}, - {field_array_item, 5, .inherited = true}, - {field_contents, 5}, - {field_right, 3}, - {field_right, 6}, - [77] = - {field_array, 3}, - {field_array, 6}, - {field_array_item, 4}, - {field_array_item, 5}, - {field_left, 1}, - {field_right, 2}, - [83] = - {field_array, 3}, - {field_array, 6}, - {field_array_item, 4}, - {field_array_item, 5, .inherited = true}, - {field_contents, 5}, - {field_left, 1}, - {field_right, 2}, - [90] = + [65] = + {field_array, 0}, + {field_array, 4}, + {field_array_item, 1}, + {field_array_item, 2, .inherited = true}, + {field_array_item, 3}, + {field_contents, 2}, + [71] = {field_braced_body, 2, .inherited = true}, {field_braced_body, 3, .inherited = true}, {field_braced_body, 5, .inherited = true}, - [93] = - {field_array_item, 4}, - {field_array_item, 5, .inherited = true}, - {field_array_item, 6}, - {field_contents, 5}, - {field_right, 3}, - {field_right, 7}, - [99] = - {field_array, 3}, - {field_array, 7}, - {field_array_item, 4}, - {field_array_item, 5, .inherited = true}, - {field_array_item, 6}, - {field_contents, 5}, - {field_left, 1}, - {field_right, 2}, - [107] = + [74] = {field_braced_body, 3, .inherited = true}, }; @@ -1037,68 +985,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 7, - [9] = 9, - [10] = 7, - [11] = 11, + [8] = 8, + [9] = 6, + [10] = 10, + [11] = 6, [12] = 12, [13] = 13, - [14] = 12, - [15] = 15, - [16] = 15, - [17] = 12, - [18] = 15, - [19] = 15, + [14] = 13, + [15] = 12, + [16] = 13, + [17] = 17, + [18] = 12, + [19] = 13, [20] = 12, [21] = 21, [22] = 22, [23] = 23, [24] = 24, - [25] = 25, - [26] = 24, + [25] = 22, + [26] = 26, [27] = 27, - [28] = 28, - [29] = 22, - [30] = 21, + [28] = 22, + [29] = 21, + [30] = 23, [31] = 31, - [32] = 22, - [33] = 33, - [34] = 24, - [35] = 22, - [36] = 24, + [32] = 32, + [33] = 23, + [34] = 22, + [35] = 23, + [36] = 36, [37] = 37, [38] = 38, [39] = 39, [40] = 40, [41] = 41, [42] = 42, - [43] = 42, - [44] = 44, - [45] = 45, - [46] = 42, - [47] = 47, + [43] = 43, + [44] = 37, + [45] = 41, + [46] = 37, + [47] = 37, [48] = 48, - [49] = 38, - [50] = 50, - [51] = 38, - [52] = 42, - [53] = 47, - [54] = 54, - [55] = 47, - [56] = 38, - [57] = 47, + [49] = 41, + [50] = 48, + [51] = 41, + [52] = 48, + [53] = 48, + [54] = 39, + [55] = 43, + [56] = 56, + [57] = 42, [58] = 58, [59] = 59, [60] = 60, [61] = 61, [62] = 62, - [63] = 63, - [64] = 44, + [63] = 38, + [64] = 64, [65] = 65, - [66] = 40, - [67] = 41, + [66] = 66, + [67] = 67, [68] = 68, - [69] = 37, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, @@ -1117,282 +1065,259 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 85, [86] = 86, [87] = 87, - [88] = 75, - [89] = 89, + [88] = 88, + [89] = 75, [90] = 90, [91] = 91, - [92] = 92, + [92] = 71, [93] = 93, - [94] = 94, + [94] = 80, [95] = 95, [96] = 96, [97] = 97, - [98] = 98, + [98] = 96, [99] = 99, - [100] = 89, - [101] = 101, - [102] = 94, + [100] = 100, + [101] = 99, + [102] = 56, [103] = 103, [104] = 104, [105] = 105, [106] = 106, - [107] = 106, + [107] = 42, [108] = 108, - [109] = 108, + [109] = 109, [110] = 110, [111] = 111, - [112] = 65, - [113] = 111, - [114] = 60, - [115] = 115, - [116] = 116, - [117] = 41, - [118] = 118, - [119] = 119, - [120] = 40, - [121] = 44, - [122] = 118, - [123] = 37, - [124] = 124, - [125] = 59, - [126] = 58, - [127] = 116, - [128] = 128, - [129] = 39, + [112] = 40, + [113] = 103, + [114] = 105, + [115] = 69, + [116] = 68, + [117] = 104, + [118] = 62, + [119] = 61, + [120] = 43, + [121] = 108, + [122] = 109, + [123] = 65, + [124] = 110, + [125] = 125, + [126] = 111, + [127] = 38, + [128] = 39, + [129] = 129, [130] = 130, [131] = 131, - [132] = 119, - [133] = 124, + [132] = 132, + [133] = 73, [134] = 134, - [135] = 131, - [136] = 134, - [137] = 68, - [138] = 63, - [139] = 139, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 137, + [139] = 130, [140] = 140, [141] = 141, [142] = 142, [143] = 143, [144] = 144, - [145] = 142, + [145] = 145, [146] = 146, [147] = 147, - [148] = 139, + [148] = 71, [149] = 149, - [150] = 74, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, - [154] = 154, - [155] = 155, - [156] = 94, + [154] = 149, + [155] = 75, + [156] = 80, [157] = 157, [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 155, - [167] = 155, + [159] = 158, + [160] = 158, + [161] = 149, + [162] = 149, + [163] = 158, + [164] = 96, + [165] = 75, + [166] = 166, + [167] = 40, [168] = 168, - [169] = 164, - [170] = 75, + [169] = 169, + [170] = 170, [171] = 171, - [172] = 155, + [172] = 172, [173] = 173, [174] = 174, - [175] = 175, - [176] = 89, - [177] = 164, - [178] = 164, + [175] = 80, + [176] = 176, + [177] = 177, + [178] = 71, [179] = 179, - [180] = 180, + [180] = 99, [181] = 181, [182] = 182, - [183] = 75, + [183] = 183, [184] = 184, [185] = 185, - [186] = 106, - [187] = 89, - [188] = 94, - [189] = 189, + [186] = 186, + [187] = 187, + [188] = 69, + [189] = 110, [190] = 190, - [191] = 191, - [192] = 192, - [193] = 39, - [194] = 108, - [195] = 195, - [196] = 196, - [197] = 58, + [191] = 62, + [192] = 99, + [193] = 96, + [194] = 111, + [195] = 40, + [196] = 104, + [197] = 187, [198] = 68, - [199] = 199, + [199] = 65, [200] = 200, - [201] = 201, - [202] = 111, - [203] = 203, + [201] = 190, + [202] = 190, + [203] = 187, [204] = 204, [205] = 205, [206] = 206, - [207] = 207, - [208] = 119, - [209] = 124, - [210] = 210, - [211] = 131, - [212] = 212, - [213] = 63, - [214] = 214, - [215] = 204, - [216] = 216, - [217] = 207, - [218] = 204, - [219] = 219, - [220] = 60, - [221] = 207, - [222] = 222, - [223] = 207, - [224] = 224, - [225] = 204, - [226] = 207, - [227] = 106, - [228] = 108, + [207] = 109, + [208] = 208, + [209] = 42, + [210] = 108, + [211] = 211, + [212] = 43, + [213] = 105, + [214] = 103, + [215] = 187, + [216] = 187, + [217] = 190, + [218] = 218, + [219] = 56, + [220] = 220, + [221] = 38, + [222] = 39, + [223] = 223, + [224] = 190, + [225] = 61, + [226] = 226, + [227] = 110, + [228] = 228, [229] = 229, - [230] = 44, - [231] = 37, - [232] = 65, + [230] = 230, + [231] = 231, + [232] = 226, [233] = 233, - [234] = 39, + [234] = 229, [235] = 235, [236] = 236, - [237] = 204, - [238] = 238, - [239] = 239, + [237] = 226, + [238] = 233, + [239] = 233, [240] = 240, - [241] = 116, - [242] = 118, - [243] = 243, - [244] = 41, - [245] = 40, + [241] = 241, + [242] = 242, + [243] = 226, + [244] = 233, + [245] = 245, [246] = 246, - [247] = 59, - [248] = 134, - [249] = 65, - [250] = 76, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 255, - [258] = 258, - [259] = 95, - [260] = 254, - [261] = 256, - [262] = 262, - [263] = 254, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 256, - [268] = 256, + [247] = 111, + [248] = 248, + [249] = 103, + [250] = 105, + [251] = 69, + [252] = 38, + [253] = 39, + [254] = 68, + [255] = 104, + [256] = 83, + [257] = 257, + [258] = 62, + [259] = 81, + [260] = 61, + [261] = 56, + [262] = 108, + [263] = 109, + [264] = 42, + [265] = 65, + [266] = 43, + [267] = 267, + [268] = 268, [269] = 269, - [270] = 270, - [271] = 37, + [270] = 267, + [271] = 271, [272] = 272, - [273] = 124, - [274] = 131, - [275] = 63, - [276] = 276, - [277] = 44, - [278] = 68, - [279] = 134, - [280] = 40, - [281] = 254, - [282] = 41, - [283] = 58, - [284] = 59, - [285] = 118, - [286] = 116, - [287] = 287, - [288] = 60, - [289] = 119, - [290] = 111, + [273] = 268, + [274] = 274, + [275] = 275, + [276] = 274, + [277] = 277, + [278] = 268, + [279] = 268, + [280] = 267, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 268, + [285] = 285, + [286] = 286, + [287] = 274, + [288] = 274, + [289] = 267, + [290] = 290, [291] = 291, [292] = 292, [293] = 293, [294] = 294, - [295] = 291, - [296] = 296, + [295] = 295, + [296] = 291, [297] = 297, [298] = 298, [299] = 299, - [300] = 291, + [300] = 300, [301] = 301, - [302] = 291, - [303] = 301, - [304] = 299, - [305] = 291, - [306] = 299, - [307] = 301, - [308] = 301, - [309] = 299, - [310] = 310, + [302] = 299, + [303] = 291, + [304] = 304, + [305] = 305, + [306] = 301, + [307] = 307, + [308] = 308, + [309] = 291, + [310] = 290, [311] = 311, - [312] = 312, + [312] = 300, [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, + [314] = 300, + [315] = 299, + [316] = 301, + [317] = 299, [318] = 318, [319] = 319, [320] = 320, [321] = 321, [322] = 322, - [323] = 311, - [324] = 313, - [325] = 314, - [326] = 310, + [323] = 323, + [324] = 291, + [325] = 301, + [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 311, + [330] = 323, [331] = 331, - [332] = 319, + [332] = 322, [333] = 333, [334] = 334, - [335] = 313, + [335] = 323, [336] = 336, [337] = 337, [338] = 338, - [339] = 313, - [340] = 314, - [341] = 319, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 311, - [346] = 319, - [347] = 319, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 344, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 314, - [358] = 344, - [359] = 352, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 344, + [339] = 300, + [340] = 323, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1402,7 +1327,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(12); if (lookahead == '!') ADVANCE(5); - if (lookahead == '#') ADVANCE(51); + if (lookahead == '#') ADVANCE(45); if (lookahead == '$') ADVANCE(33); if (lookahead == '&') ADVANCE(4); if (lookahead == '(') ADVANCE(26); @@ -1427,36 +1352,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 1: if (lookahead == '\n') SKIP(1) - if (lookahead == '#') ADVANCE(45); + if (lookahead == '#') ADVANCE(52); if (lookahead == '-') ADVANCE(43); if (lookahead == '@') ADVANCE(30); - if (lookahead == '{') ADVANCE(49); + if (lookahead == '{') ADVANCE(56); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(46); - if (lookahead != 0) ADVANCE(50); + lookahead == ' ') ADVANCE(53); + if (lookahead != 0) ADVANCE(57); END_STATE(); case 2: if (lookahead == '\n') SKIP(2) if (lookahead == '-') ADVANCE(43); if (lookahead == '@') ADVANCE(30); - if (lookahead == '{') ADVANCE(49); + if (lookahead == '{') ADVANCE(56); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(47); - if (lookahead != 0) ADVANCE(50); + lookahead == ' ') ADVANCE(54); + if (lookahead != 0) ADVANCE(57); END_STATE(); case 3: if (lookahead == '\n') SKIP(3) - if (lookahead == '{') ADVANCE(49); + if (lookahead == '{') ADVANCE(56); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(48); - if (lookahead != 0) ADVANCE(50); + lookahead == ' ') ADVANCE(55); + if (lookahead != 0) ADVANCE(57); END_STATE(); case 4: if (lookahead == '&') ADVANCE(37); @@ -1469,22 +1394,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(25); END_STATE(); case 7: - if (lookahead == '{') ADVANCE(53); + if (lookahead == '{') ADVANCE(47); END_STATE(); case 8: - if (lookahead == '}') ADVANCE(55); + if (lookahead == '}') ADVANCE(49); END_STATE(); case 9: if (lookahead == '"' || lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(57); + lookahead == 't') ADVANCE(51); END_STATE(); case 10: if (eof) ADVANCE(12); if (lookahead == '!') ADVANCE(5); - if (lookahead == '#') ADVANCE(51); + if (lookahead == '#') ADVANCE(45); if (lookahead == '$') ADVANCE(33); if (lookahead == '(') ADVANCE(26); if (lookahead == ')') ADVANCE(27); @@ -1505,11 +1430,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 11: if (eof) ADVANCE(12); - if (lookahead == '#') ADVANCE(52); + if (lookahead == '#') ADVANCE(46); if (lookahead == '$') ADVANCE(33); if (lookahead == '(') ADVANCE(26); if (lookahead == '*') ADVANCE(36); @@ -1526,7 +1451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 12: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1557,7 +1482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 21: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '{') ADVANCE(53); + if (lookahead == '{') ADVANCE(47); END_STATE(); case 22: ACCEPT_TOKEN(anon_sym_RBRACE); @@ -1588,7 +1513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_AT); if (lookahead == '-') ADVANCE(39); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 31: ACCEPT_TOKEN(anon_sym_COLON); @@ -1620,7 +1545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 39: ACCEPT_TOKEN(anon_sym_AT_DASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 40: ACCEPT_TOKEN(anon_sym_DASH_AT); @@ -1628,7 +1553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 41: ACCEPT_TOKEN(anon_sym_DASH_AT); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_DASH); @@ -1638,7 +1563,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '@') ADVANCE(41); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 44: ACCEPT_TOKEN(aux_sym_shebang_token1); @@ -1646,86 +1571,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(44); END_STATE(); case 45: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead == '!') ADVANCE(44); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(46); END_STATE(); case 46: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); - if (lookahead == '#') ADVANCE(45); - if (lookahead == '-') ADVANCE(43); - if (lookahead == '@') ADVANCE(30); - if (lookahead == '{') ADVANCE(49); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(46); + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(46); END_STATE(); case 47: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); - if (lookahead == '-') ADVANCE(43); - if (lookahead == '@') ADVANCE(30); - if (lookahead == '{') ADVANCE(49); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(47); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); END_STATE(); case 48: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); - if (lookahead == '{') ADVANCE(49); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(48); + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 49: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); - if (lookahead == '{') ADVANCE(54); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); case 50: - ACCEPT_TOKEN(aux_sym_shebang_language_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 51: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '!') ADVANCE(44); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 52: - ACCEPT_TOKEN(aux_sym_comment_token1); + ACCEPT_TOKEN(sym_text); + if (lookahead == '!') ADVANCE(44); if (lookahead != 0 && - lookahead != '\n') ADVANCE(52); + lookahead != '\n') ADVANCE(57); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + ACCEPT_TOKEN(sym_text); + if (lookahead == '#') ADVANCE(52); + if (lookahead == '-') ADVANCE(43); + if (lookahead == '@') ADVANCE(30); + if (lookahead == '{') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(53); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(57); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + ACCEPT_TOKEN(sym_text); + if (lookahead == '-') ADVANCE(43); + if (lookahead == '@') ADVANCE(30); + if (lookahead == '{') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(54); if (lookahead != 0 && - lookahead != '\n') ADVANCE(50); + lookahead != '\n') ADVANCE(57); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + ACCEPT_TOKEN(sym_text); + if (lookahead == '{') ADVANCE(56); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(55); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(57); END_STATE(); case 56: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + ACCEPT_TOKEN(sym_text); + if (lookahead == '{') ADVANCE(48); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(57); END_STATE(); case 57: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_text); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(57); END_STATE(); default: return false; @@ -1768,108 +1693,95 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 6: if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'h') ADVANCE(16); END_STATE(); case 7: - if (lookahead == 'r') ADVANCE(17); + if (lookahead == 'r') ADVANCE(16); END_STATE(); case 8: - if (lookahead == 'i') ADVANCE(18); + if (lookahead == 'i') ADVANCE(17); END_STATE(); case 9: - if (lookahead == 's') ADVANCE(19); + if (lookahead == 's') ADVANCE(18); END_STATE(); case 10: - if (lookahead == 'p') ADVANCE(20); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 11: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'l') ADVANCE(20); END_STATE(); case 12: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 13: - if (lookahead == 'p') ADVANCE(22); + if (lookahead == 'p') ADVANCE(21); END_STATE(); case 14: - if (lookahead == 'd') ADVANCE(23); + if (lookahead == 'd') ADVANCE(22); END_STATE(); case 15: - if (lookahead == 't') ADVANCE(24); + if (lookahead == 't') ADVANCE(23); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'u') ADVANCE(24); END_STATE(); case 17: - if (lookahead == 'u') ADVANCE(26); + if (lookahead == 'a') ADVANCE(25); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(27); + if (lookahead == 'e') ADVANCE(26); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'o') ADVANCE(27); END_STATE(); case 20: - if (lookahead == 'o') ADVANCE(29); + if (lookahead == 's') ADVANCE(28); END_STATE(); case 21: - if (lookahead == 's') ADVANCE(30); + if (lookahead == 'o') ADVANCE(29); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(31); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_set); + if (lookahead == 'e') ADVANCE(30); END_STATE(); case 25: - if (lookahead == 'l') ADVANCE(32); + if (lookahead == 's') ADVANCE(31); END_STATE(); case 26: - if (lookahead == 'e') ADVANCE(33); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 27: - if (lookahead == 's') ADVANCE(34); + if (lookahead == 'r') ADVANCE(32); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(33); END_STATE(); case 29: - if (lookahead == 'r') ADVANCE(35); + if (lookahead == 'r') ADVANCE(34); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(36); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 31: - if (lookahead == 'r') ADVANCE(37); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 32: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == 't') ADVANCE(35); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == 't') ADVANCE(36); END_STATE(); case 35: - if (lookahead == 't') ADVANCE(39); - END_STATE(); - case 36: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(40); - END_STATE(); - case 38: - ACCEPT_TOKEN(anon_sym_shell); - END_STATE(); - case 39: ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 40: + case 36: ACCEPT_TOKEN(anon_sym_import); END_STATE(); default: @@ -1901,12 +1813,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [20] = {.lex_state = 0, .external_lex_state = 3}, [21] = {.lex_state = 0, .external_lex_state = 3}, [22] = {.lex_state = 0, .external_lex_state = 3}, - [23] = {.lex_state = 1, .external_lex_state = 4}, - [24] = {.lex_state = 0, .external_lex_state = 3}, + [23] = {.lex_state = 0, .external_lex_state = 3}, + [24] = {.lex_state = 11, .external_lex_state = 4}, [25] = {.lex_state = 0, .external_lex_state = 3}, [26] = {.lex_state = 0, .external_lex_state = 3}, - [27] = {.lex_state = 11, .external_lex_state = 5}, - [28] = {.lex_state = 11, .external_lex_state = 5}, + [27] = {.lex_state = 11, .external_lex_state = 4}, + [28] = {.lex_state = 0, .external_lex_state = 3}, [29] = {.lex_state = 0, .external_lex_state = 3}, [30] = {.lex_state = 0, .external_lex_state = 3}, [31] = {.lex_state = 0, .external_lex_state = 3}, @@ -1914,51 +1826,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 0, .external_lex_state = 3}, [34] = {.lex_state = 0, .external_lex_state = 3}, [35] = {.lex_state = 0, .external_lex_state = 3}, - [36] = {.lex_state = 0, .external_lex_state = 3}, - [37] = {.lex_state = 10}, - [38] = {.lex_state = 0, .external_lex_state = 3}, + [36] = {.lex_state = 1, .external_lex_state = 5}, + [37] = {.lex_state = 0, .external_lex_state = 3}, + [38] = {.lex_state = 10}, [39] = {.lex_state = 10}, [40] = {.lex_state = 10}, - [41] = {.lex_state = 10}, - [42] = {.lex_state = 0, .external_lex_state = 3}, - [43] = {.lex_state = 0, .external_lex_state = 3}, - [44] = {.lex_state = 10}, - [45] = {.lex_state = 2, .external_lex_state = 4}, + [41] = {.lex_state = 0, .external_lex_state = 3}, + [42] = {.lex_state = 10}, + [43] = {.lex_state = 10}, + [44] = {.lex_state = 0, .external_lex_state = 3}, + [45] = {.lex_state = 0, .external_lex_state = 3}, [46] = {.lex_state = 0, .external_lex_state = 3}, [47] = {.lex_state = 0, .external_lex_state = 3}, - [48] = {.lex_state = 2, .external_lex_state = 4}, + [48] = {.lex_state = 0, .external_lex_state = 3}, [49] = {.lex_state = 0, .external_lex_state = 3}, - [50] = {.lex_state = 2, .external_lex_state = 4}, + [50] = {.lex_state = 0, .external_lex_state = 3}, [51] = {.lex_state = 0, .external_lex_state = 3}, [52] = {.lex_state = 0, .external_lex_state = 3}, [53] = {.lex_state = 0, .external_lex_state = 3}, - [54] = {.lex_state = 2, .external_lex_state = 4}, - [55] = {.lex_state = 0, .external_lex_state = 3}, - [56] = {.lex_state = 0, .external_lex_state = 3}, - [57] = {.lex_state = 0, .external_lex_state = 3}, - [58] = {.lex_state = 10}, - [59] = {.lex_state = 10}, - [60] = {.lex_state = 10}, - [61] = {.lex_state = 11, .external_lex_state = 6}, - [62] = {.lex_state = 11, .external_lex_state = 6}, - [63] = {.lex_state = 10}, - [64] = {.lex_state = 11, .external_lex_state = 2}, + [54] = {.lex_state = 11, .external_lex_state = 2}, + [55] = {.lex_state = 11, .external_lex_state = 2}, + [56] = {.lex_state = 10}, + [57] = {.lex_state = 11, .external_lex_state = 2}, + [58] = {.lex_state = 2, .external_lex_state = 5}, + [59] = {.lex_state = 2, .external_lex_state = 5}, + [60] = {.lex_state = 11, .external_lex_state = 6}, + [61] = {.lex_state = 10}, + [62] = {.lex_state = 10}, + [63] = {.lex_state = 11, .external_lex_state = 2}, + [64] = {.lex_state = 2, .external_lex_state = 5}, [65] = {.lex_state = 10}, - [66] = {.lex_state = 11, .external_lex_state = 2}, - [67] = {.lex_state = 11, .external_lex_state = 2}, + [66] = {.lex_state = 2, .external_lex_state = 5}, + [67] = {.lex_state = 11, .external_lex_state = 6}, [68] = {.lex_state = 10}, - [69] = {.lex_state = 11, .external_lex_state = 2}, + [69] = {.lex_state = 10}, [70] = {.lex_state = 11, .external_lex_state = 2}, [71] = {.lex_state = 0, .external_lex_state = 3}, [72] = {.lex_state = 11, .external_lex_state = 2}, [73] = {.lex_state = 11, .external_lex_state = 2}, [74] = {.lex_state = 11, .external_lex_state = 2}, - [75] = {.lex_state = 0, .external_lex_state = 3}, + [75] = {.lex_state = 10}, [76] = {.lex_state = 11, .external_lex_state = 2}, [77] = {.lex_state = 11, .external_lex_state = 2}, - [78] = {.lex_state = 11, .external_lex_state = 2}, - [79] = {.lex_state = 11, .external_lex_state = 2}, - [80] = {.lex_state = 11, .external_lex_state = 2}, + [78] = {.lex_state = 0, .external_lex_state = 3}, + [79] = {.lex_state = 0, .external_lex_state = 3}, + [80] = {.lex_state = 10}, [81] = {.lex_state = 11, .external_lex_state = 2}, [82] = {.lex_state = 11, .external_lex_state = 2}, [83] = {.lex_state = 11, .external_lex_state = 2}, @@ -1966,282 +1878,259 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [85] = {.lex_state = 11, .external_lex_state = 2}, [86] = {.lex_state = 11, .external_lex_state = 2}, [87] = {.lex_state = 11, .external_lex_state = 2}, - [88] = {.lex_state = 10}, + [88] = {.lex_state = 11, .external_lex_state = 2}, [89] = {.lex_state = 0, .external_lex_state = 3}, [90] = {.lex_state = 11, .external_lex_state = 2}, [91] = {.lex_state = 11, .external_lex_state = 2}, - [92] = {.lex_state = 11, .external_lex_state = 2}, + [92] = {.lex_state = 10}, [93] = {.lex_state = 11, .external_lex_state = 2}, [94] = {.lex_state = 0, .external_lex_state = 3}, [95] = {.lex_state = 11, .external_lex_state = 2}, - [96] = {.lex_state = 11, .external_lex_state = 2}, - [97] = {.lex_state = 11, .external_lex_state = 2}, - [98] = {.lex_state = 11, .external_lex_state = 2}, - [99] = {.lex_state = 11, .external_lex_state = 2}, - [100] = {.lex_state = 10}, - [101] = {.lex_state = 11, .external_lex_state = 2}, - [102] = {.lex_state = 10}, - [103] = {.lex_state = 11, .external_lex_state = 2}, - [104] = {.lex_state = 0, .external_lex_state = 3}, - [105] = {.lex_state = 11, .external_lex_state = 2}, - [106] = {.lex_state = 10}, + [96] = {.lex_state = 0, .external_lex_state = 3}, + [97] = {.lex_state = 0, .external_lex_state = 7}, + [98] = {.lex_state = 10}, + [99] = {.lex_state = 0, .external_lex_state = 3}, + [100] = {.lex_state = 0}, + [101] = {.lex_state = 10}, + [102] = {.lex_state = 0, .external_lex_state = 3}, + [103] = {.lex_state = 10}, + [104] = {.lex_state = 10}, + [105] = {.lex_state = 10}, + [106] = {.lex_state = 0}, [107] = {.lex_state = 0, .external_lex_state = 3}, - [108] = {.lex_state = 0, .external_lex_state = 3}, + [108] = {.lex_state = 10}, [109] = {.lex_state = 10}, - [110] = {.lex_state = 0}, - [111] = {.lex_state = 0, .external_lex_state = 3}, + [110] = {.lex_state = 10}, + [111] = {.lex_state = 10}, [112] = {.lex_state = 0, .external_lex_state = 3}, - [113] = {.lex_state = 10}, + [113] = {.lex_state = 0, .external_lex_state = 3}, [114] = {.lex_state = 0, .external_lex_state = 3}, - [115] = {.lex_state = 0}, + [115] = {.lex_state = 0, .external_lex_state = 3}, [116] = {.lex_state = 0, .external_lex_state = 3}, [117] = {.lex_state = 0, .external_lex_state = 3}, - [118] = {.lex_state = 10}, - [119] = {.lex_state = 10}, + [118] = {.lex_state = 0, .external_lex_state = 3}, + [119] = {.lex_state = 0, .external_lex_state = 3}, [120] = {.lex_state = 0, .external_lex_state = 3}, [121] = {.lex_state = 0, .external_lex_state = 3}, [122] = {.lex_state = 0, .external_lex_state = 3}, [123] = {.lex_state = 0, .external_lex_state = 3}, - [124] = {.lex_state = 10}, - [125] = {.lex_state = 0, .external_lex_state = 3}, + [124] = {.lex_state = 0, .external_lex_state = 3}, + [125] = {.lex_state = 0}, [126] = {.lex_state = 0, .external_lex_state = 3}, - [127] = {.lex_state = 10}, - [128] = {.lex_state = 0}, - [129] = {.lex_state = 0, .external_lex_state = 3}, - [130] = {.lex_state = 0, .external_lex_state = 7}, - [131] = {.lex_state = 10}, - [132] = {.lex_state = 0, .external_lex_state = 3}, - [133] = {.lex_state = 0, .external_lex_state = 3}, - [134] = {.lex_state = 10}, - [135] = {.lex_state = 0, .external_lex_state = 3}, - [136] = {.lex_state = 0, .external_lex_state = 3}, - [137] = {.lex_state = 0, .external_lex_state = 3}, - [138] = {.lex_state = 0, .external_lex_state = 3}, + [127] = {.lex_state = 0, .external_lex_state = 3}, + [128] = {.lex_state = 0, .external_lex_state = 3}, + [129] = {.lex_state = 2, .external_lex_state = 5}, + [130] = {.lex_state = 0, .external_lex_state = 2}, + [131] = {.lex_state = 0, .external_lex_state = 7}, + [132] = {.lex_state = 2, .external_lex_state = 5}, + [133] = {.lex_state = 2, .external_lex_state = 5}, + [134] = {.lex_state = 2, .external_lex_state = 5}, + [135] = {.lex_state = 0, .external_lex_state = 2}, + [136] = {.lex_state = 0, .external_lex_state = 7}, + [137] = {.lex_state = 0, .external_lex_state = 2}, + [138] = {.lex_state = 0, .external_lex_state = 2}, [139] = {.lex_state = 0, .external_lex_state = 2}, - [140] = {.lex_state = 0, .external_lex_state = 7}, - [141] = {.lex_state = 0, .external_lex_state = 7}, - [142] = {.lex_state = 0, .external_lex_state = 2}, - [143] = {.lex_state = 0, .external_lex_state = 7}, - [144] = {.lex_state = 2, .external_lex_state = 4}, - [145] = {.lex_state = 0, .external_lex_state = 2}, - [146] = {.lex_state = 2, .external_lex_state = 4}, - [147] = {.lex_state = 0, .external_lex_state = 7}, - [148] = {.lex_state = 0, .external_lex_state = 2}, - [149] = {.lex_state = 0, .external_lex_state = 3}, - [150] = {.lex_state = 2, .external_lex_state = 4}, - [151] = {.lex_state = 0, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 4}, - [153] = {.lex_state = 0}, - [154] = {.lex_state = 0, .external_lex_state = 7}, - [155] = {.lex_state = 11, .external_lex_state = 8}, + [140] = {.lex_state = 0, .external_lex_state = 3}, + [141] = {.lex_state = 0}, + [142] = {.lex_state = 0}, + [143] = {.lex_state = 11}, + [144] = {.lex_state = 0, .external_lex_state = 7}, + [145] = {.lex_state = 0, .external_lex_state = 7}, + [146] = {.lex_state = 0, .external_lex_state = 2}, + [147] = {.lex_state = 0, .external_lex_state = 2}, + [148] = {.lex_state = 11, .external_lex_state = 2}, + [149] = {.lex_state = 11, .external_lex_state = 8}, + [150] = {.lex_state = 10}, + [151] = {.lex_state = 11}, + [152] = {.lex_state = 0, .external_lex_state = 2}, + [153] = {.lex_state = 0, .external_lex_state = 2}, + [154] = {.lex_state = 11, .external_lex_state = 8}, + [155] = {.lex_state = 11, .external_lex_state = 2}, [156] = {.lex_state = 11, .external_lex_state = 2}, - [157] = {.lex_state = 3, .external_lex_state = 2}, + [157] = {.lex_state = 11, .external_lex_state = 8}, [158] = {.lex_state = 11, .external_lex_state = 8}, - [159] = {.lex_state = 0, .external_lex_state = 7}, - [160] = {.lex_state = 3, .external_lex_state = 2}, - [161] = {.lex_state = 3, .external_lex_state = 2}, - [162] = {.lex_state = 3, .external_lex_state = 2}, - [163] = {.lex_state = 0, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 8}, - [165] = {.lex_state = 10}, - [166] = {.lex_state = 11, .external_lex_state = 8}, - [167] = {.lex_state = 11, .external_lex_state = 8}, - [168] = {.lex_state = 0, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 8}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 0, .external_lex_state = 7}, - [172] = {.lex_state = 11, .external_lex_state = 8}, - [173] = {.lex_state = 0}, - [174] = {.lex_state = 0, .external_lex_state = 2}, - [175] = {.lex_state = 11}, - [176] = {.lex_state = 11, .external_lex_state = 2}, - [177] = {.lex_state = 11, .external_lex_state = 8}, - [178] = {.lex_state = 11, .external_lex_state = 8}, - [179] = {.lex_state = 0, .external_lex_state = 2}, - [180] = {.lex_state = 11}, - [181] = {.lex_state = 10}, - [182] = {.lex_state = 0}, - [183] = {.lex_state = 0}, - [184] = {.lex_state = 0}, - [185] = {.lex_state = 0}, - [186] = {.lex_state = 11, .external_lex_state = 2}, - [187] = {.lex_state = 0}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 0, .external_lex_state = 7}, - [190] = {.lex_state = 0, .external_lex_state = 7}, - [191] = {.lex_state = 0}, - [192] = {.lex_state = 11, .external_lex_state = 2}, - [193] = {.lex_state = 11, .external_lex_state = 2}, + [159] = {.lex_state = 11, .external_lex_state = 8}, + [160] = {.lex_state = 11, .external_lex_state = 8}, + [161] = {.lex_state = 11, .external_lex_state = 8}, + [162] = {.lex_state = 11, .external_lex_state = 8}, + [163] = {.lex_state = 11, .external_lex_state = 8}, + [164] = {.lex_state = 11, .external_lex_state = 2}, + [165] = {.lex_state = 0}, + [166] = {.lex_state = 0, .external_lex_state = 7}, + [167] = {.lex_state = 11, .external_lex_state = 2}, + [168] = {.lex_state = 0}, + [169] = {.lex_state = 10}, + [170] = {.lex_state = 0}, + [171] = {.lex_state = 3, .external_lex_state = 2}, + [172] = {.lex_state = 0, .external_lex_state = 7}, + [173] = {.lex_state = 11, .external_lex_state = 2}, + [174] = {.lex_state = 0}, + [175] = {.lex_state = 0}, + [176] = {.lex_state = 0}, + [177] = {.lex_state = 0, .external_lex_state = 7}, + [178] = {.lex_state = 0}, + [179] = {.lex_state = 0}, + [180] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 3, .external_lex_state = 2}, + [182] = {.lex_state = 3, .external_lex_state = 2}, + [183] = {.lex_state = 3, .external_lex_state = 2}, + [184] = {.lex_state = 10}, + [185] = {.lex_state = 11, .external_lex_state = 2}, + [186] = {.lex_state = 0, .external_lex_state = 7}, + [187] = {.lex_state = 0, .external_lex_state = 9}, + [188] = {.lex_state = 11, .external_lex_state = 2}, + [189] = {.lex_state = 11, .external_lex_state = 2}, + [190] = {.lex_state = 0, .external_lex_state = 9}, + [191] = {.lex_state = 11, .external_lex_state = 2}, + [192] = {.lex_state = 0}, + [193] = {.lex_state = 0}, [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 0}, - [196] = {.lex_state = 0, .external_lex_state = 7}, - [197] = {.lex_state = 11, .external_lex_state = 2}, + [196] = {.lex_state = 11, .external_lex_state = 2}, + [197] = {.lex_state = 0, .external_lex_state = 9}, [198] = {.lex_state = 11, .external_lex_state = 2}, [199] = {.lex_state = 11, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, - [204] = {.lex_state = 0, .external_lex_state = 9}, - [205] = {.lex_state = 11, .external_lex_state = 2}, - [206] = {.lex_state = 11, .external_lex_state = 2}, - [207] = {.lex_state = 0, .external_lex_state = 9}, + [200] = {.lex_state = 0, .external_lex_state = 2}, + [201] = {.lex_state = 0, .external_lex_state = 9}, + [202] = {.lex_state = 0, .external_lex_state = 9}, + [203] = {.lex_state = 0, .external_lex_state = 9}, + [204] = {.lex_state = 11, .external_lex_state = 2}, + [205] = {.lex_state = 0, .external_lex_state = 2}, + [206] = {.lex_state = 0, .external_lex_state = 2}, + [207] = {.lex_state = 11, .external_lex_state = 2}, [208] = {.lex_state = 11, .external_lex_state = 2}, - [209] = {.lex_state = 11, .external_lex_state = 2}, + [209] = {.lex_state = 0, .external_lex_state = 7}, [210] = {.lex_state = 11, .external_lex_state = 2}, - [211] = {.lex_state = 11, .external_lex_state = 2}, - [212] = {.lex_state = 11, .external_lex_state = 2}, + [211] = {.lex_state = 0, .external_lex_state = 9}, + [212] = {.lex_state = 0, .external_lex_state = 7}, [213] = {.lex_state = 11, .external_lex_state = 2}, [214] = {.lex_state = 11, .external_lex_state = 2}, [215] = {.lex_state = 0, .external_lex_state = 9}, - [216] = {.lex_state = 0, .external_lex_state = 7}, + [216] = {.lex_state = 0, .external_lex_state = 9}, [217] = {.lex_state = 0, .external_lex_state = 9}, - [218] = {.lex_state = 0, .external_lex_state = 9}, - [219] = {.lex_state = 0, .external_lex_state = 2}, + [218] = {.lex_state = 0, .external_lex_state = 2}, + [219] = {.lex_state = 11, .external_lex_state = 2}, [220] = {.lex_state = 11, .external_lex_state = 2}, - [221] = {.lex_state = 0, .external_lex_state = 9}, - [222] = {.lex_state = 0, .external_lex_state = 2}, - [223] = {.lex_state = 0, .external_lex_state = 9}, - [224] = {.lex_state = 0, .external_lex_state = 2}, - [225] = {.lex_state = 0, .external_lex_state = 9}, - [226] = {.lex_state = 0, .external_lex_state = 9}, + [221] = {.lex_state = 0, .external_lex_state = 7}, + [222] = {.lex_state = 0, .external_lex_state = 7}, + [223] = {.lex_state = 0, .external_lex_state = 2}, + [224] = {.lex_state = 0, .external_lex_state = 9}, + [225] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 10}, [227] = {.lex_state = 0}, - [228] = {.lex_state = 0}, - [229] = {.lex_state = 0, .external_lex_state = 9}, - [230] = {.lex_state = 0, .external_lex_state = 7}, - [231] = {.lex_state = 0, .external_lex_state = 7}, - [232] = {.lex_state = 11, .external_lex_state = 2}, - [233] = {.lex_state = 11, .external_lex_state = 2}, - [234] = {.lex_state = 0}, - [235] = {.lex_state = 11, .external_lex_state = 2}, - [236] = {.lex_state = 11, .external_lex_state = 2}, - [237] = {.lex_state = 0, .external_lex_state = 9}, + [228] = {.lex_state = 10}, + [229] = {.lex_state = 3, .external_lex_state = 2}, + [230] = {.lex_state = 0}, + [231] = {.lex_state = 3, .external_lex_state = 2}, + [232] = {.lex_state = 10}, + [233] = {.lex_state = 10}, + [234] = {.lex_state = 11, .external_lex_state = 8}, + [235] = {.lex_state = 10}, + [236] = {.lex_state = 0}, + [237] = {.lex_state = 10}, [238] = {.lex_state = 10}, - [239] = {.lex_state = 0, .external_lex_state = 2}, - [240] = {.lex_state = 0, .external_lex_state = 2}, - [241] = {.lex_state = 11, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, - [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 0, .external_lex_state = 7}, - [245] = {.lex_state = 0, .external_lex_state = 7}, - [246] = {.lex_state = 11, .external_lex_state = 2}, - [247] = {.lex_state = 11, .external_lex_state = 2}, - [248] = {.lex_state = 11, .external_lex_state = 2}, + [239] = {.lex_state = 10}, + [240] = {.lex_state = 10}, + [241] = {.lex_state = 0}, + [242] = {.lex_state = 0}, + [243] = {.lex_state = 10}, + [244] = {.lex_state = 10}, + [245] = {.lex_state = 0}, + [246] = {.lex_state = 11, .external_lex_state = 8}, + [247] = {.lex_state = 0}, + [248] = {.lex_state = 0}, [249] = {.lex_state = 0}, - [250] = {.lex_state = 10}, + [250] = {.lex_state = 0}, [251] = {.lex_state = 0}, [252] = {.lex_state = 0}, [253] = {.lex_state = 0}, - [254] = {.lex_state = 10}, - [255] = {.lex_state = 3, .external_lex_state = 2}, + [254] = {.lex_state = 0}, + [255] = {.lex_state = 0}, [256] = {.lex_state = 10}, - [257] = {.lex_state = 11, .external_lex_state = 8}, + [257] = {.lex_state = 0}, [258] = {.lex_state = 0}, [259] = {.lex_state = 10}, - [260] = {.lex_state = 10}, - [261] = {.lex_state = 10}, + [260] = {.lex_state = 0}, + [261] = {.lex_state = 0}, [262] = {.lex_state = 0}, - [263] = {.lex_state = 10}, - [264] = {.lex_state = 10}, - [265] = {.lex_state = 3, .external_lex_state = 2}, - [266] = {.lex_state = 3, .external_lex_state = 2}, + [263] = {.lex_state = 0}, + [264] = {.lex_state = 0}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 0}, [267] = {.lex_state = 10}, - [268] = {.lex_state = 10}, + [268] = {.lex_state = 0, .external_lex_state = 10}, [269] = {.lex_state = 0}, - [270] = {.lex_state = 11, .external_lex_state = 8}, + [270] = {.lex_state = 10}, [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 0}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 0}, + [272] = {.lex_state = 11, .external_lex_state = 2}, + [273] = {.lex_state = 0, .external_lex_state = 10}, + [274] = {.lex_state = 10}, + [275] = {.lex_state = 11, .external_lex_state = 2}, [276] = {.lex_state = 10}, [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, - [280] = {.lex_state = 0}, - [281] = {.lex_state = 10}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 0}, - [285] = {.lex_state = 0}, + [278] = {.lex_state = 0, .external_lex_state = 10}, + [279] = {.lex_state = 0, .external_lex_state = 10}, + [280] = {.lex_state = 10}, + [281] = {.lex_state = 11, .external_lex_state = 2}, + [282] = {.lex_state = 11, .external_lex_state = 2}, + [283] = {.lex_state = 11, .external_lex_state = 2}, + [284] = {.lex_state = 0, .external_lex_state = 10}, + [285] = {.lex_state = 11, .external_lex_state = 2}, [286] = {.lex_state = 0}, [287] = {.lex_state = 10}, - [288] = {.lex_state = 0}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 0, .external_lex_state = 10}, + [288] = {.lex_state = 10}, + [289] = {.lex_state = 10}, + [290] = {.lex_state = 10}, + [291] = {.lex_state = 0, .external_lex_state = 11}, [292] = {.lex_state = 0}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 11, .external_lex_state = 2}, - [295] = {.lex_state = 0, .external_lex_state = 10}, - [296] = {.lex_state = 0}, + [293] = {.lex_state = 0, .external_lex_state = 2}, + [294] = {.lex_state = 0, .external_lex_state = 2}, + [295] = {.lex_state = 0, .external_lex_state = 2}, + [296] = {.lex_state = 0, .external_lex_state = 11}, [297] = {.lex_state = 0}, [298] = {.lex_state = 0}, - [299] = {.lex_state = 10}, - [300] = {.lex_state = 0, .external_lex_state = 10}, - [301] = {.lex_state = 10}, - [302] = {.lex_state = 0, .external_lex_state = 10}, - [303] = {.lex_state = 10}, - [304] = {.lex_state = 10}, - [305] = {.lex_state = 0, .external_lex_state = 10}, - [306] = {.lex_state = 10}, - [307] = {.lex_state = 10}, + [299] = {.lex_state = 0}, + [300] = {.lex_state = 0}, + [301] = {.lex_state = 0}, + [302] = {.lex_state = 0}, + [303] = {.lex_state = 0, .external_lex_state = 11}, + [304] = {.lex_state = 0}, + [305] = {.lex_state = 0}, + [306] = {.lex_state = 0}, + [307] = {.lex_state = 0}, [308] = {.lex_state = 10}, - [309] = {.lex_state = 10}, + [309] = {.lex_state = 0, .external_lex_state = 11}, [310] = {.lex_state = 10}, [311] = {.lex_state = 0}, [312] = {.lex_state = 0}, [313] = {.lex_state = 0}, [314] = {.lex_state = 0}, - [315] = {.lex_state = 0, .external_lex_state = 2}, - [316] = {.lex_state = 0, .external_lex_state = 2}, + [315] = {.lex_state = 0}, + [316] = {.lex_state = 0}, [317] = {.lex_state = 0}, [318] = {.lex_state = 0}, - [319] = {.lex_state = 0, .external_lex_state = 11}, - [320] = {.lex_state = 0}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 0, .external_lex_state = 2}, [321] = {.lex_state = 0}, - [322] = {.lex_state = 0}, + [322] = {.lex_state = 0, .external_lex_state = 2}, [323] = {.lex_state = 0}, - [324] = {.lex_state = 0}, + [324] = {.lex_state = 0, .external_lex_state = 11}, [325] = {.lex_state = 0}, - [326] = {.lex_state = 10}, + [326] = {.lex_state = 0}, [327] = {.lex_state = 0}, - [328] = {.lex_state = 10}, + [328] = {.lex_state = 0, .external_lex_state = 2}, [329] = {.lex_state = 0, .external_lex_state = 2}, [330] = {.lex_state = 0}, [331] = {.lex_state = 0}, - [332] = {.lex_state = 0, .external_lex_state = 11}, + [332] = {.lex_state = 0, .external_lex_state = 2}, [333] = {.lex_state = 0}, [334] = {.lex_state = 0}, [335] = {.lex_state = 0}, - [336] = {.lex_state = 0, .external_lex_state = 2}, + [336] = {.lex_state = 0}, [337] = {.lex_state = 0}, [338] = {.lex_state = 0}, [339] = {.lex_state = 0}, [340] = {.lex_state = 0}, - [341] = {.lex_state = 0, .external_lex_state = 11}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 0, .external_lex_state = 11}, - [347] = {.lex_state = 0, .external_lex_state = 11}, - [348] = {.lex_state = 0, .external_lex_state = 2}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 0, .external_lex_state = 2}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 0}, - [356] = {.lex_state = 0}, - [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 0, .external_lex_state = 2}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0, .external_lex_state = 2}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, }; enum { @@ -2292,13 +2181,13 @@ static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__command_start] = true, }, [4] = { - [ts_external_token__dedent] = true, [ts_external_token__newline] = true, + [ts_external_token__string_start] = true, + [ts_external_token__raw_string_start] = true, }, [5] = { + [ts_external_token__dedent] = true, [ts_external_token__newline] = true, - [ts_external_token__string_start] = true, - [ts_external_token__raw_string_start] = true, }, [6] = { [ts_external_token__indent] = true, @@ -2339,7 +2228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_shell] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), @@ -2378,22 +2266,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__command_end] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(350), - [sym_item] = STATE(4), - [sym_eol] = STATE(77), - [sym_alias] = STATE(77), - [sym_assignment] = STATE(77), - [sym_export] = STATE(77), - [sym_import] = STATE(77), - [sym_module] = STATE(77), - [sym_setting] = STATE(77), - [sym_attribute] = STATE(165), - [sym_recipe] = STATE(77), - [sym_recipe_header] = STATE(348), - [sym_shebang] = STATE(5), - [sym_comment] = STATE(76), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_recipe_repeat1] = STATE(165), + [sym_source_file] = STATE(331), + [sym_item] = STATE(3), + [sym_eol] = STATE(95), + [sym_alias] = STATE(95), + [sym_assignment] = STATE(95), + [sym_export] = STATE(95), + [sym_import] = STATE(95), + [sym_module] = STATE(95), + [sym_setting] = STATE(95), + [sym_attribute] = STATE(150), + [sym_recipe] = STATE(95), + [sym_recipe_header] = STATE(329), + [sym_shebang] = STATE(4), + [sym_comment] = STATE(81), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_recipe_repeat1] = STATE(150), [ts_builtin_sym_end] = ACTIONS(3), [sym_identifier] = ACTIONS(5), [anon_sym_alias] = ACTIONS(7), @@ -2433,17 +2321,17 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, ACTIONS(29), 1, aux_sym_comment_token1, - STATE(76), 1, + STATE(81), 1, sym_comment, - STATE(348), 1, + STATE(329), 1, sym_recipe_header, - STATE(3), 2, + STATE(5), 2, sym_item, aux_sym_source_file_repeat1, - STATE(165), 2, + STATE(150), 2, sym_attribute, aux_sym_recipe_repeat1, - STATE(77), 8, + STATE(95), 8, sym_eol, sym_alias, sym_assignment, @@ -2453,39 +2341,39 @@ static const uint16_t ts_small_parse_table[] = { sym_setting, sym_recipe, [58] = 16, - ACTIONS(31), 1, - ts_builtin_sym_end, - ACTIONS(33), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(36), 1, + ACTIONS(7), 1, anon_sym_alias, - ACTIONS(39), 1, + ACTIONS(9), 1, anon_sym_export, - ACTIONS(42), 1, + ACTIONS(11), 1, anon_sym_import, - ACTIONS(45), 1, + ACTIONS(13), 1, anon_sym_mod, - ACTIONS(48), 1, + ACTIONS(15), 1, anon_sym_set, - ACTIONS(51), 1, + ACTIONS(17), 1, anon_sym_LBRACK, - ACTIONS(54), 1, + ACTIONS(19), 1, anon_sym_AT, - ACTIONS(57), 1, - aux_sym_comment_token1, - ACTIONS(60), 1, + ACTIONS(25), 1, sym__newline, - STATE(76), 1, + ACTIONS(29), 1, + aux_sym_comment_token1, + ACTIONS(31), 1, + ts_builtin_sym_end, + STATE(81), 1, sym_comment, - STATE(348), 1, + STATE(329), 1, sym_recipe_header, - STATE(3), 2, + STATE(5), 2, sym_item, aux_sym_source_file_repeat1, - STATE(165), 2, + STATE(150), 2, sym_attribute, aux_sym_recipe_repeat1, - STATE(77), 8, + STATE(95), 8, sym_eol, sym_alias, sym_assignment, @@ -2515,19 +2403,19 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(29), 1, aux_sym_comment_token1, - ACTIONS(63), 1, + ACTIONS(31), 1, ts_builtin_sym_end, - STATE(76), 1, + STATE(81), 1, sym_comment, - STATE(348), 1, + STATE(329), 1, sym_recipe_header, - STATE(3), 2, + STATE(2), 2, sym_item, aux_sym_source_file_repeat1, - STATE(165), 2, + STATE(150), 2, sym_attribute, aux_sym_recipe_repeat1, - STATE(77), 8, + STATE(95), 8, sym_eol, sym_alias, sym_assignment, @@ -2537,39 +2425,39 @@ static const uint16_t ts_small_parse_table[] = { sym_setting, sym_recipe, [174] = 16, - ACTIONS(5), 1, + ACTIONS(33), 1, + ts_builtin_sym_end, + ACTIONS(35), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(38), 1, anon_sym_alias, - ACTIONS(9), 1, + ACTIONS(41), 1, anon_sym_export, - ACTIONS(11), 1, + ACTIONS(44), 1, anon_sym_import, - ACTIONS(13), 1, + ACTIONS(47), 1, anon_sym_mod, - ACTIONS(15), 1, + ACTIONS(50), 1, anon_sym_set, - ACTIONS(17), 1, + ACTIONS(53), 1, anon_sym_LBRACK, - ACTIONS(19), 1, + ACTIONS(56), 1, anon_sym_AT, - ACTIONS(25), 1, - sym__newline, - ACTIONS(29), 1, + ACTIONS(59), 1, aux_sym_comment_token1, - ACTIONS(63), 1, - ts_builtin_sym_end, - STATE(76), 1, + ACTIONS(62), 1, + sym__newline, + STATE(81), 1, sym_comment, - STATE(348), 1, + STATE(329), 1, sym_recipe_header, - STATE(2), 2, + STATE(5), 2, sym_item, aux_sym_source_file_repeat1, - STATE(165), 2, + STATE(150), 2, sym_attribute, aux_sym_recipe_repeat1, - STATE(77), 8, + STATE(95), 8, sym_eol, sym_alias, sym_assignment, @@ -2595,16 +2483,16 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_start, ACTIONS(79), 1, sym__command_start, - STATE(11), 1, - aux_sym_dependency_expression_repeat1, - STATE(133), 1, + STATE(103), 1, sym__expression_inner, - STATE(149), 1, + STATE(230), 1, sym_expression, - STATE(135), 2, + STATE(306), 1, + sym_sequence, + STATE(105), 2, sym_if_expression, sym_value, - STATE(138), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, @@ -2613,126 +2501,126 @@ static const uint16_t ts_small_parse_table[] = { [277] = 13, ACTIONS(81), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(84), 1, anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_if, ACTIONS(87), 1, + anon_sym_if, + ACTIONS(90), 1, anon_sym_LPAREN, - ACTIONS(89), 1, + ACTIONS(93), 1, anon_sym_RPAREN, - ACTIONS(91), 1, + ACTIONS(95), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(98), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(101), 1, sym__command_start, - STATE(124), 1, + STATE(7), 1, + aux_sym_dependency_expression_repeat1, + STATE(113), 1, sym__expression_inner, - STATE(258), 1, + STATE(140), 1, sym_expression, - STATE(313), 1, - sym_sequence, - STATE(131), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [322] = 13, - ACTIONS(81), 1, + ACTIONS(104), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(112), 1, + anon_sym_RPAREN, + ACTIONS(114), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(116), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(118), 1, sym__command_start, - ACTIONS(97), 1, - anon_sym_RPAREN, - STATE(124), 1, + STATE(7), 1, + aux_sym_dependency_expression_repeat1, + STATE(113), 1, sym__expression_inner, - STATE(258), 1, + STATE(140), 1, sym_expression, - STATE(335), 1, - sym_sequence, - STATE(131), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [367] = 13, - ACTIONS(99), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(102), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(105), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(108), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(111), 1, - anon_sym_RPAREN, - ACTIONS(113), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(116), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(119), 1, + ACTIONS(79), 1, sym__command_start, - STATE(9), 1, - aux_sym_dependency_expression_repeat1, - STATE(133), 1, + ACTIONS(120), 1, + anon_sym_RPAREN, + STATE(103), 1, sym__expression_inner, - STATE(149), 1, + STATE(230), 1, sym_expression, - STATE(135), 2, - sym_if_expression, + STATE(325), 1, + sym_sequence, + STATE(105), 2, + sym_if_expression, sym_value, - STATE(138), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [412] = 13, - ACTIONS(81), 1, + ACTIONS(104), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(114), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(116), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(118), 1, sym__command_start, ACTIONS(122), 1, anon_sym_RPAREN, - STATE(124), 1, + STATE(8), 1, + aux_sym_dependency_expression_repeat1, + STATE(113), 1, sym__expression_inner, - STATE(258), 1, + STATE(140), 1, sym_expression, - STATE(339), 1, - sym_sequence, - STATE(131), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, @@ -2755,314 +2643,314 @@ static const uint16_t ts_small_parse_table[] = { sym__command_start, ACTIONS(124), 1, anon_sym_RPAREN, - STATE(9), 1, - aux_sym_dependency_expression_repeat1, - STATE(133), 1, + STATE(103), 1, sym__expression_inner, - STATE(149), 1, + STATE(230), 1, sym_expression, - STATE(135), 2, + STATE(316), 1, + sym_sequence, + STATE(105), 2, sym_if_expression, sym_value, - STATE(138), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [502] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(304), 1, + STATE(280), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [544] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(63), 2, - sym_function_call, - sym_external_command, - STATE(131), 2, + STATE(184), 1, + sym_expression, + STATE(287), 1, + sym_condition, + STATE(105), 2, sym_if_expression, sym_value, - STATE(328), 2, - sym_expression, - sym_regex_literal, - STATE(287), 3, + STATE(69), 5, + sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, + sym_external_command, [586] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(306), 1, + STATE(274), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [628] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(303), 1, + STATE(289), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [670] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(308), 1, + STATE(288), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [712] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, - sym_expression, - STATE(309), 1, - sym_condition, - STATE(131), 2, + STATE(69), 2, + sym_function_call, + sym_external_command, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, - sym_function_call, + STATE(308), 2, + sym_expression, + sym_regex_literal, + STATE(235), 3, sym__string, sym_string_literal, sym_raw_string_literal, - sym_external_command, [754] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(301), 1, + STATE(270), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [796] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(307), 1, + STATE(276), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [838] = 12, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(238), 1, + STATE(184), 1, sym_expression, - STATE(299), 1, + STATE(267), 1, sym_condition, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, [880] = 11, - ACTIONS(81), 1, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(326), 1, + STATE(290), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, @@ -3083,175 +2971,148 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_start, ACTIONS(138), 1, sym__command_start, - STATE(273), 1, + STATE(249), 1, sym__expression_inner, - STATE(340), 1, + STATE(317), 1, sym_expression, - STATE(274), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [958] = 10, - ACTIONS(142), 1, - aux_sym_shebang_token1, - ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(148), 1, - sym__dedent, - ACTIONS(150), 1, - sym__newline, - STATE(54), 1, - sym_shebang, - STATE(162), 1, - sym_recipe_line_prefix, - STATE(45), 2, - sym_recipe_line, - aux_sym_recipe_body_repeat1, - STATE(160), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - ACTIONS(140), 4, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - [995] = 11, - ACTIONS(81), 1, + [958] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(345), 1, + STATE(312), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1034] = 11, - ACTIONS(81), 1, + [997] = 5, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + STATE(90), 3, + sym__string, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(140), 5, + sym__newline, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_AT, + aux_sym_comment_token1, + ACTIONS(142), 6, + anon_sym_alias, + anon_sym_export, + anon_sym_import, + anon_sym_mod, + anon_sym_set, + sym_identifier, + [1024] = 11, + ACTIONS(126), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(128), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(130), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(132), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(134), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(136), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(138), 1, sym__command_start, - STATE(124), 1, + STATE(249), 1, sym__expression_inner, - STATE(328), 1, + STATE(315), 1, sym_expression, - STATE(131), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1073] = 11, - ACTIONS(81), 1, + [1063] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(330), 1, + STATE(277), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1112] = 5, - ACTIONS(156), 1, - sym__string_start, - ACTIONS(158), 1, - sym__raw_string_start, - STATE(90), 3, - sym__string, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(152), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(154), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [1139] = 5, - ACTIONS(156), 1, + [1102] = 5, + ACTIONS(144), 1, sym__string_start, - ACTIONS(158), 1, + ACTIONS(146), 1, sym__raw_string_start, - STATE(99), 3, + STATE(91), 3, sym__string, sym_string_literal, sym_raw_string_literal, - ACTIONS(160), 5, + ACTIONS(148), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(162), 6, + ACTIONS(150), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [1166] = 11, + [1129] = 11, ACTIONS(126), 1, sym_identifier, ACTIONS(128), 1, @@ -3266,160 +3127,160 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_start, ACTIONS(138), 1, sym__command_start, - STATE(273), 1, + STATE(249), 1, sym__expression_inner, - STATE(357), 1, + STATE(299), 1, sym_expression, - STATE(274), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1205] = 11, - ACTIONS(81), 1, + [1168] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, STATE(310), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1244] = 11, - ACTIONS(81), 1, + [1207] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(293), 1, + STATE(339), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1283] = 11, - ACTIONS(126), 1, + [1246] = 11, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + ACTIONS(152), 1, sym_identifier, - ACTIONS(128), 1, + ACTIONS(154), 1, anon_sym_SLASH, - ACTIONS(130), 1, + ACTIONS(156), 1, anon_sym_if, - ACTIONS(132), 1, + ACTIONS(158), 1, anon_sym_LPAREN, - ACTIONS(134), 1, - sym__string_start, - ACTIONS(136), 1, - sym__raw_string_start, - ACTIONS(138), 1, + ACTIONS(160), 1, sym__command_start, - STATE(273), 1, + STATE(214), 1, sym__expression_inner, - STATE(314), 1, + STATE(220), 1, sym_expression, - STATE(274), 2, + STATE(213), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(188), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1322] = 11, - ACTIONS(156), 1, - sym__string_start, - ACTIONS(158), 1, - sym__raw_string_start, - ACTIONS(164), 1, + [1285] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(168), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(170), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(172), 1, + ACTIONS(75), 1, + sym__string_start, + ACTIONS(77), 1, + sym__raw_string_start, + ACTIONS(79), 1, sym__command_start, - STATE(200), 1, - sym_expression, - STATE(209), 1, + STATE(103), 1, sym__expression_inner, - STATE(211), 2, + STATE(308), 1, + sym_expression, + STATE(105), 2, sym_if_expression, sym_value, - STATE(213), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1361] = 11, - ACTIONS(81), 1, + [1324] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(323), 1, + STATE(300), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1400] = 11, + [1363] = 11, ACTIONS(126), 1, sym_identifier, ACTIONS(128), 1, @@ -3434,92 +3295,101 @@ static const uint16_t ts_small_parse_table[] = { sym__raw_string_start, ACTIONS(138), 1, sym__command_start, - STATE(273), 1, + STATE(249), 1, sym__expression_inner, - STATE(325), 1, + STATE(302), 1, sym_expression, - STATE(274), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1439] = 11, - ACTIONS(81), 1, + [1402] = 11, + ACTIONS(65), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(67), 1, anon_sym_SLASH, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(79), 1, sym__command_start, - STATE(124), 1, + STATE(103), 1, sym__expression_inner, - STATE(311), 1, + STATE(314), 1, sym_expression, - STATE(131), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1478] = 1, - ACTIONS(174), 14, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_RBRACE_RBRACE, - sym_identifier, - [1495] = 9, - ACTIONS(65), 1, + [1441] = 10, + ACTIONS(164), 1, + aux_sym_shebang_token1, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(168), 1, + sym_text, + ACTIONS(170), 1, + sym__dedent, + ACTIONS(172), 1, + sym__newline, + STATE(64), 1, + sym_shebang, + STATE(182), 1, + sym_recipe_line_prefix, + STATE(66), 2, + sym_recipe_line, + aux_sym_recipe_body_repeat1, + STATE(183), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + ACTIONS(162), 4, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + [1477] = 9, + ACTIONS(126), 1, sym_identifier, - ACTIONS(69), 1, + ACTIONS(130), 1, anon_sym_if, - ACTIONS(71), 1, + ACTIONS(132), 1, anon_sym_LPAREN, - ACTIONS(75), 1, + ACTIONS(134), 1, sym__string_start, - ACTIONS(77), 1, + ACTIONS(136), 1, sym__raw_string_start, - ACTIONS(79), 1, + ACTIONS(138), 1, sym__command_start, - STATE(116), 1, + STATE(262), 1, sym__expression_inner, - STATE(135), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(138), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1528] = 2, - ACTIONS(178), 1, - anon_sym_LPAREN, - ACTIONS(176), 13, + [1510] = 1, + ACTIONS(174), 14, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LBRACE, @@ -3532,8 +3402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [1547] = 1, - ACTIONS(180), 14, + [1527] = 1, + ACTIONS(176), 14, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_SLASH, @@ -3548,10 +3418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [1564] = 1, - ACTIONS(182), 14, + [1544] = 2, + ACTIONS(180), 1, + anon_sym_LPAREN, + ACTIONS(178), 13, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LBRACE, @@ -3564,55 +3435,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [1581] = 9, - ACTIONS(65), 1, + [1563] = 9, + ACTIONS(104), 1, sym_identifier, - ACTIONS(69), 1, + ACTIONS(108), 1, anon_sym_if, - ACTIONS(71), 1, + ACTIONS(110), 1, anon_sym_LPAREN, - ACTIONS(75), 1, + ACTIONS(114), 1, sym__string_start, - ACTIONS(77), 1, + ACTIONS(116), 1, sym__raw_string_start, - ACTIONS(79), 1, + ACTIONS(118), 1, sym__command_start, - STATE(136), 1, + STATE(117), 1, sym__expression_inner, - STATE(135), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(138), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1614] = 9, - ACTIONS(126), 1, + [1596] = 1, + ACTIONS(182), 14, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_RBRACE_RBRACE, sym_identifier, - ACTIONS(130), 1, - anon_sym_if, - ACTIONS(132), 1, - anon_sym_LPAREN, - ACTIONS(134), 1, - sym__string_start, - ACTIONS(136), 1, - sym__raw_string_start, - ACTIONS(138), 1, - sym__command_start, - STATE(279), 1, - sym__expression_inner, - STATE(274), 2, - sym_if_expression, - sym_value, - STATE(275), 5, - sym_function_call, - sym__string, - sym_string_literal, - sym_raw_string_literal, - sym_external_command, - [1647] = 1, + [1613] = 1, ACTIONS(184), 14, anon_sym_COMMA, anon_sym_RBRACK, @@ -3628,412 +3491,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [1664] = 8, + [1630] = 9, ACTIONS(144), 1, - aux_sym_shebang_language_token1, + sym__string_start, ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(150), 1, - sym__newline, - ACTIONS(186), 1, - sym__dedent, - STATE(162), 1, - sym_recipe_line_prefix, - STATE(48), 2, - sym_recipe_line, - aux_sym_recipe_body_repeat1, - STATE(160), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - ACTIONS(140), 4, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - [1695] = 9, - ACTIONS(81), 1, + sym__raw_string_start, + ACTIONS(152), 1, sym_identifier, - ACTIONS(85), 1, + ACTIONS(156), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(158), 1, anon_sym_LPAREN, - ACTIONS(91), 1, - sym__string_start, - ACTIONS(93), 1, - sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(160), 1, sym__command_start, - STATE(134), 1, + STATE(210), 1, sym__expression_inner, - STATE(131), 2, + STATE(213), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(188), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1728] = 9, - ACTIONS(81), 1, + [1663] = 9, + ACTIONS(126), 1, sym_identifier, - ACTIONS(85), 1, + ACTIONS(130), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(132), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(134), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(136), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(138), 1, sym__command_start, - STATE(118), 1, + STATE(255), 1, sym__expression_inner, - STATE(131), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1761] = 8, - ACTIONS(191), 1, - aux_sym_shebang_language_token1, - ACTIONS(194), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(197), 1, - sym__dedent, - ACTIONS(199), 1, - sym__newline, - STATE(162), 1, - sym_recipe_line_prefix, - STATE(48), 2, - sym_recipe_line, - aux_sym_recipe_body_repeat1, - STATE(160), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - ACTIONS(188), 4, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - [1792] = 9, - ACTIONS(126), 1, + [1696] = 9, + ACTIONS(65), 1, sym_identifier, - ACTIONS(130), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(132), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(134), 1, + ACTIONS(75), 1, sym__string_start, - ACTIONS(136), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(138), 1, + ACTIONS(79), 1, sym__command_start, - STATE(286), 1, + STATE(108), 1, sym__expression_inner, - STATE(274), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1825] = 8, - ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(150), 1, - sym__newline, - ACTIONS(202), 1, - sym__dedent, - STATE(162), 1, - sym_recipe_line_prefix, - STATE(48), 2, - sym_recipe_line, - aux_sym_recipe_body_repeat1, - STATE(160), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - ACTIONS(140), 4, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - [1856] = 9, - ACTIONS(81), 1, + [1729] = 9, + ACTIONS(104), 1, sym_identifier, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_if, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(114), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(116), 1, sym__raw_string_start, - ACTIONS(95), 1, + ACTIONS(118), 1, sym__command_start, - STATE(127), 1, + STATE(121), 1, sym__expression_inner, - STATE(131), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(63), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1889] = 9, - ACTIONS(156), 1, + [1762] = 9, + ACTIONS(65), 1, + sym_identifier, + ACTIONS(69), 1, + anon_sym_if, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(75), 1, sym__string_start, - ACTIONS(158), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(164), 1, + ACTIONS(79), 1, + sym__command_start, + STATE(109), 1, + sym__expression_inner, + STATE(105), 2, + sym_if_expression, + sym_value, + STATE(69), 5, + sym_function_call, + sym__string, + sym_string_literal, + sym_raw_string_literal, + sym_external_command, + [1795] = 9, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + ACTIONS(152), 1, sym_identifier, - ACTIONS(168), 1, + ACTIONS(156), 1, anon_sym_if, - ACTIONS(170), 1, + ACTIONS(158), 1, anon_sym_LPAREN, - ACTIONS(172), 1, + ACTIONS(160), 1, sym__command_start, - STATE(248), 1, + STATE(196), 1, sym__expression_inner, - STATE(211), 2, + STATE(213), 2, sym_if_expression, sym_value, - STATE(213), 5, + STATE(188), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1922] = 9, - ACTIONS(126), 1, + [1828] = 9, + ACTIONS(104), 1, sym_identifier, - ACTIONS(130), 1, + ACTIONS(108), 1, anon_sym_if, - ACTIONS(132), 1, + ACTIONS(110), 1, anon_sym_LPAREN, - ACTIONS(134), 1, + ACTIONS(114), 1, sym__string_start, - ACTIONS(136), 1, + ACTIONS(116), 1, sym__raw_string_start, - ACTIONS(138), 1, + ACTIONS(118), 1, sym__command_start, - STATE(285), 1, + STATE(122), 1, sym__expression_inner, - STATE(274), 2, + STATE(114), 2, sym_if_expression, sym_value, - STATE(275), 5, + STATE(115), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [1955] = 8, - ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(150), 1, - sym__newline, - ACTIONS(186), 1, - sym__dedent, - STATE(162), 1, - sym_recipe_line_prefix, - STATE(50), 2, - sym_recipe_line, - aux_sym_recipe_body_repeat1, - STATE(160), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - ACTIONS(140), 4, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - [1986] = 9, - ACTIONS(156), 1, - sym__string_start, - ACTIONS(158), 1, - sym__raw_string_start, - ACTIONS(164), 1, + [1861] = 9, + ACTIONS(65), 1, sym_identifier, - ACTIONS(168), 1, + ACTIONS(69), 1, anon_sym_if, - ACTIONS(170), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(172), 1, + ACTIONS(75), 1, + sym__string_start, + ACTIONS(77), 1, + sym__raw_string_start, + ACTIONS(79), 1, sym__command_start, - STATE(242), 1, + STATE(104), 1, sym__expression_inner, - STATE(211), 2, + STATE(105), 2, sym_if_expression, sym_value, - STATE(213), 5, + STATE(69), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [2019] = 9, - ACTIONS(156), 1, - sym__string_start, - ACTIONS(158), 1, - sym__raw_string_start, - ACTIONS(164), 1, + [1894] = 9, + ACTIONS(126), 1, sym_identifier, - ACTIONS(168), 1, + ACTIONS(130), 1, anon_sym_if, - ACTIONS(170), 1, + ACTIONS(132), 1, anon_sym_LPAREN, - ACTIONS(172), 1, + ACTIONS(134), 1, + sym__string_start, + ACTIONS(136), 1, + sym__raw_string_start, + ACTIONS(138), 1, sym__command_start, - STATE(241), 1, + STATE(263), 1, sym__expression_inner, - STATE(211), 2, + STATE(250), 2, sym_if_expression, sym_value, - STATE(213), 5, + STATE(251), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [2052] = 9, - ACTIONS(65), 1, + [1927] = 9, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + ACTIONS(152), 1, sym_identifier, - ACTIONS(69), 1, + ACTIONS(156), 1, anon_sym_if, - ACTIONS(71), 1, + ACTIONS(158), 1, anon_sym_LPAREN, - ACTIONS(75), 1, - sym__string_start, - ACTIONS(77), 1, - sym__raw_string_start, - ACTIONS(79), 1, + ACTIONS(160), 1, sym__command_start, - STATE(122), 1, + STATE(207), 1, sym__expression_inner, - STATE(135), 2, + STATE(213), 2, sym_if_expression, sym_value, - STATE(138), 5, + STATE(188), 5, sym_function_call, sym__string, sym_string_literal, sym_raw_string_literal, sym_external_command, - [2085] = 1, - ACTIONS(204), 13, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_RBRACE_RBRACE, - sym_identifier, - [2101] = 1, - ACTIONS(206), 13, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_RBRACE_RBRACE, - sym_identifier, - [2117] = 1, - ACTIONS(208), 13, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_RBRACE_RBRACE, - sym_identifier, - [2133] = 4, - ACTIONS(214), 1, - sym__indent, - STATE(96), 1, - sym_recipe_body, - ACTIONS(210), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(212), 6, + [1960] = 2, + ACTIONS(186), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2155] = 4, - ACTIONS(214), 1, - sym__indent, - STATE(98), 1, - sym_recipe_body, - ACTIONS(216), 5, + ACTIONS(176), 7, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(218), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2177] = 1, - ACTIONS(176), 13, - anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_RBRACE_RBRACE, - sym_identifier, - [2193] = 2, - ACTIONS(220), 6, + anon_sym_AT, + aux_sym_comment_token1, + [1978] = 2, + ACTIONS(188), 6, anon_sym_alias, anon_sym_export, anon_sym_import, @@ -4048,8 +3763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AT, aux_sym_comment_token1, - [2211] = 1, - ACTIONS(222), 13, + [1996] = 1, + ACTIONS(190), 13, anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, @@ -4063,15 +3778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [2227] = 2, - ACTIONS(224), 6, + [2012] = 2, + ACTIONS(192), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - ACTIONS(180), 7, + ACTIONS(182), 7, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, @@ -4079,30 +3794,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AT, aux_sym_comment_token1, - [2245] = 2, - ACTIONS(226), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - ACTIONS(182), 7, + [2030] = 8, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(168), 1, + sym_text, + ACTIONS(172), 1, sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(194), 1, + sym__dedent, + STATE(182), 1, + sym_recipe_line_prefix, + STATE(59), 2, + sym_recipe_line, + aux_sym_recipe_body_repeat1, + STATE(183), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + ACTIONS(162), 4, anon_sym_AT, - aux_sym_comment_token1, - [2263] = 1, - ACTIONS(228), 13, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + [2060] = 8, + ACTIONS(199), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(202), 1, + sym_text, + ACTIONS(205), 1, + sym__dedent, + ACTIONS(207), 1, + sym__newline, + STATE(182), 1, + sym_recipe_line_prefix, + STATE(59), 2, + sym_recipe_line, + aux_sym_recipe_body_repeat1, + STATE(183), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + ACTIONS(196), 4, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + [2090] = 4, + ACTIONS(214), 1, + sym__indent, + STATE(77), 1, + sym_recipe_body, + ACTIONS(210), 5, + sym__newline, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_AT, + aux_sym_comment_token1, + ACTIONS(212), 6, + anon_sym_alias, + anon_sym_export, + anon_sym_import, + anon_sym_mod, + anon_sym_set, + sym_identifier, + [2112] = 1, + ACTIONS(216), 13, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_RBRACE_RBRACE, + sym_identifier, + [2128] = 1, + ACTIONS(218), 13, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_COLON, @@ -4110,8 +3886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_RBRACE_RBRACE, sym_identifier, - [2279] = 2, - ACTIONS(230), 6, + [2144] = 2, + ACTIONS(220), 6, anon_sym_alias, anon_sym_export, anon_sym_import, @@ -4126,54 +3902,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AT, aux_sym_comment_token1, - [2297] = 2, - ACTIONS(232), 5, + [2162] = 8, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(168), 1, + sym_text, + ACTIONS(172), 1, + sym__newline, + ACTIONS(222), 1, + sym__dedent, + STATE(182), 1, + sym_recipe_line_prefix, + STATE(58), 2, + sym_recipe_line, + aux_sym_recipe_body_repeat1, + STATE(183), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + ACTIONS(162), 4, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + [2192] = 1, + ACTIONS(224), 13, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_RBRACE_RBRACE, + sym_identifier, + [2208] = 8, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(168), 1, + sym_text, + ACTIONS(172), 1, + sym__newline, + ACTIONS(222), 1, + sym__dedent, + STATE(182), 1, + sym_recipe_line_prefix, + STATE(59), 2, + sym_recipe_line, + aux_sym_recipe_body_repeat1, + STATE(183), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + ACTIONS(162), 4, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + [2238] = 4, + ACTIONS(214), 1, + sym__indent, + STATE(84), 1, + sym_recipe_body, + ACTIONS(226), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(234), 6, + ACTIONS(228), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2313] = 7, - ACTIONS(87), 1, - anon_sym_LPAREN, - ACTIONS(91), 1, - sym__string_start, - ACTIONS(93), 1, - sym__raw_string_start, - ACTIONS(95), 1, - sym__command_start, - ACTIONS(236), 1, + [2260] = 1, + ACTIONS(230), 13, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_RBRACE_RBRACE, sym_identifier, - STATE(195), 1, - sym_value, - STATE(63), 5, - sym_function_call, - sym__string, - sym_string_literal, - sym_raw_string_literal, - sym_external_command, - [2339] = 2, - ACTIONS(238), 5, + [2276] = 1, + ACTIONS(178), 13, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_RBRACE_RBRACE, + sym_identifier, + [2292] = 2, + ACTIONS(232), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(240), 6, + ACTIONS(234), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2355] = 2, + [2308] = 4, + ACTIONS(240), 1, + anon_sym_else, + STATE(94), 1, + aux_sym_if_expression_repeat1, + ACTIONS(236), 2, + anon_sym_if, + sym_identifier, + ACTIONS(238), 7, + sym__string_start, + sym__raw_string_start, + sym__command_start, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2328] = 2, ACTIONS(242), 5, sym__newline, ts_builtin_sym_end, @@ -4187,7 +4053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2371] = 2, + [2344] = 2, ACTIONS(246), 5, sym__newline, ts_builtin_sym_end, @@ -4201,121 +4067,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2387] = 4, - ACTIONS(254), 1, - anon_sym_else, - STATE(75), 1, - aux_sym_if_expression_repeat1, - ACTIONS(250), 2, - anon_sym_if, - sym_identifier, - ACTIONS(252), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [2407] = 2, - ACTIONS(257), 5, + [2360] = 2, + ACTIONS(250), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(259), 6, + ACTIONS(252), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2423] = 2, - ACTIONS(261), 5, + [2376] = 3, + ACTIONS(256), 1, + anon_sym_else, + STATE(75), 1, + aux_sym_if_expression_repeat1, + ACTIONS(254), 9, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + [2394] = 2, + ACTIONS(259), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(263), 6, + ACTIONS(261), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2439] = 2, - ACTIONS(265), 5, + [2410] = 2, + ACTIONS(263), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(267), 6, + ACTIONS(265), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2455] = 2, - ACTIONS(269), 5, + [2426] = 7, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(75), 1, + sym__string_start, + ACTIONS(77), 1, + sym__raw_string_start, + ACTIONS(79), 1, + sym__command_start, + ACTIONS(267), 1, + sym_identifier, + STATE(174), 1, + sym_value, + STATE(69), 5, + sym_function_call, + sym__string, + sym_string_literal, + sym_raw_string_literal, + sym_external_command, + [2452] = 7, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(75), 1, + sym__string_start, + ACTIONS(77), 1, + sym__raw_string_start, + ACTIONS(79), 1, + sym__command_start, + ACTIONS(267), 1, + sym_identifier, + STATE(170), 1, + sym_value, + STATE(69), 5, + sym_function_call, + sym__string, + sym_string_literal, + sym_raw_string_literal, + sym_external_command, + [2478] = 3, + ACTIONS(271), 1, + anon_sym_else, + STATE(75), 1, + aux_sym_if_expression_repeat1, + ACTIONS(269), 9, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + [2496] = 2, + ACTIONS(273), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(271), 6, + ACTIONS(275), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2471] = 2, - ACTIONS(273), 5, + [2512] = 2, + ACTIONS(277), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(275), 6, + ACTIONS(279), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2487] = 2, - ACTIONS(277), 5, + [2528] = 2, + ACTIONS(281), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(279), 6, + ACTIONS(283), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2503] = 2, - ACTIONS(281), 5, + [2544] = 2, + ACTIONS(210), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(283), 6, + ACTIONS(212), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2519] = 2, + [2560] = 2, ACTIONS(285), 5, sym__newline, ts_builtin_sym_end, @@ -4329,7 +4247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2535] = 2, + [2576] = 2, ACTIONS(289), 5, sym__newline, ts_builtin_sym_end, @@ -4343,7 +4261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2551] = 2, + [2592] = 2, ACTIONS(293), 5, sym__newline, ts_builtin_sym_end, @@ -4357,7 +4275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2567] = 2, + [2608] = 2, ACTIONS(297), 5, sym__newline, ts_builtin_sym_end, @@ -4371,199 +4289,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_set, sym_identifier, - [2583] = 2, - ACTIONS(301), 5, + [2624] = 4, + ACTIONS(303), 1, + anon_sym_else, + STATE(89), 1, + aux_sym_if_expression_repeat1, + ACTIONS(301), 2, + anon_sym_if, + sym_identifier, + ACTIONS(254), 7, + sym__string_start, + sym__raw_string_start, + sym__command_start, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2644] = 2, + ACTIONS(306), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(303), 6, + ACTIONS(308), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2599] = 3, - ACTIONS(305), 1, - anon_sym_else, - STATE(88), 1, - aux_sym_if_expression_repeat1, - ACTIONS(252), 9, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [2617] = 4, - ACTIONS(312), 1, - anon_sym_else, - STATE(75), 1, - aux_sym_if_expression_repeat1, - ACTIONS(308), 2, - anon_sym_if, - sym_identifier, - ACTIONS(310), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [2637] = 2, - ACTIONS(314), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(316), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2653] = 2, - ACTIONS(318), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(320), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2669] = 2, - ACTIONS(322), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(324), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2685] = 2, - ACTIONS(326), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(328), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2701] = 4, - ACTIONS(334), 1, - anon_sym_else, - STATE(89), 1, - aux_sym_if_expression_repeat1, - ACTIONS(330), 2, - anon_sym_if, - sym_identifier, - ACTIONS(332), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [2721] = 2, - ACTIONS(336), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(338), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2737] = 2, - ACTIONS(216), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(218), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2753] = 2, - ACTIONS(340), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(342), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2769] = 2, - ACTIONS(344), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(346), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2785] = 2, - ACTIONS(348), 5, + [2660] = 2, + ACTIONS(310), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(350), 6, + ACTIONS(312), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2801] = 3, - ACTIONS(352), 1, + [2676] = 3, + ACTIONS(314), 1, anon_sym_else, - STATE(88), 1, + STATE(80), 1, aux_sym_if_expression_repeat1, - ACTIONS(310), 9, + ACTIONS(238), 9, anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, @@ -4573,84 +4348,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [2819] = 2, - ACTIONS(354), 5, + [2694] = 2, + ACTIONS(316), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(356), 6, + ACTIONS(318), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2835] = 3, - ACTIONS(358), 1, + [2710] = 4, + ACTIONS(322), 1, anon_sym_else, - STATE(100), 1, + STATE(89), 1, aux_sym_if_expression_repeat1, - ACTIONS(332), 9, - anon_sym_COMMA, + ACTIONS(320), 2, + anon_sym_if, + sym_identifier, + ACTIONS(269), 7, + sym__string_start, + sym__raw_string_start, + sym__command_start, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [2853] = 2, - ACTIONS(360), 5, + [2730] = 2, + ACTIONS(324), 5, sym__newline, ts_builtin_sym_end, anon_sym_LBRACK, anon_sym_AT, aux_sym_comment_token1, - ACTIONS(362), 6, + ACTIONS(326), 6, anon_sym_alias, anon_sym_export, anon_sym_import, anon_sym_mod, anon_sym_set, sym_identifier, - [2869] = 7, - ACTIONS(87), 1, - anon_sym_LPAREN, - ACTIONS(91), 1, + [2746] = 2, + ACTIONS(328), 3, + anon_sym_if, + anon_sym_else, + sym_identifier, + ACTIONS(330), 7, sym__string_start, - ACTIONS(93), 1, sym__raw_string_start, - ACTIONS(95), 1, sym__command_start, - ACTIONS(236), 1, - sym_identifier, - STATE(185), 1, - sym_value, - STATE(63), 5, - sym_function_call, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2761] = 5, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + ACTIONS(332), 1, + anon_sym_LBRACK, + ACTIONS(334), 2, + anon_sym_true, + anon_sym_false, + STATE(208), 5, + sym_array, + sym_boolean, sym__string, sym_string_literal, sym_raw_string_literal, - sym_external_command, - [2895] = 2, - ACTIONS(364), 5, - sym__newline, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_AT, - aux_sym_comment_token1, - ACTIONS(366), 6, - anon_sym_alias, - anon_sym_export, - anon_sym_import, - anon_sym_mod, - anon_sym_set, - sym_identifier, - [2911] = 1, - ACTIONS(368), 10, + [2782] = 1, + ACTIONS(330), 10, anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, @@ -4661,12 +4433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [2924] = 2, - ACTIONS(370), 3, + [2795] = 2, + ACTIONS(336), 3, anon_sym_if, anon_sym_else, sym_identifier, - ACTIONS(368), 7, + ACTIONS(338), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4674,21 +4446,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [2939] = 2, - ACTIONS(372), 3, - anon_sym_if, - anon_sym_else, + [2810] = 9, + ACTIONS(340), 1, sym_identifier, - ACTIONS(374), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, + ACTIONS(342), 1, + anon_sym_COLON_EQ, + ACTIONS(346), 1, + anon_sym_COLON, + ACTIONS(348), 1, + anon_sym_DOLLAR, + STATE(141), 1, + aux_sym_parameters_repeat1, + STATE(176), 1, + sym_parameter, + STATE(305), 1, + sym_parameters, + STATE(307), 1, + sym_variadic_parameter, + ACTIONS(344), 2, anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [2954] = 1, - ACTIONS(374), 10, + anon_sym_STAR, + [2839] = 1, + ACTIONS(338), 10, anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, @@ -4699,31 +4478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [2967] = 9, - ACTIONS(376), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_COLON_EQ, - ACTIONS(382), 1, - anon_sym_COLON, - ACTIONS(384), 1, - anon_sym_DOLLAR, - STATE(153), 1, - aux_sym_parameters_repeat1, - STATE(182), 1, - sym_parameter, - STATE(318), 1, - sym_parameters, - STATE(331), 1, - sym_variadic_parameter, - ACTIONS(380), 2, - anon_sym_PLUS, - anon_sym_STAR, - [2996] = 2, - ACTIONS(386), 2, + [2852] = 2, + ACTIONS(350), 2, anon_sym_if, sym_identifier, - ACTIONS(388), 7, + ACTIONS(190), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4731,73 +4490,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3010] = 2, - ACTIONS(390), 2, - anon_sym_if, - sym_identifier, - ACTIONS(222), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, + [2866] = 3, + ACTIONS(354), 1, anon_sym_SLASH, + ACTIONS(356), 1, anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [3024] = 1, - ACTIONS(388), 9, + ACTIONS(352), 7, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + [2882] = 3, + ACTIONS(354), 1, anon_sym_SLASH, + ACTIONS(356), 1, anon_sym_PLUS, + ACTIONS(358), 7, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [3036] = 2, - ACTIONS(392), 2, - anon_sym_if, - sym_identifier, - ACTIONS(208), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, + [2898] = 1, + ACTIONS(360), 9, + anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, anon_sym_RPAREN, - [3050] = 8, - ACTIONS(376), 1, + anon_sym_RBRACE_RBRACE, + [2910] = 8, + ACTIONS(340), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(348), 1, anon_sym_DOLLAR, - ACTIONS(394), 1, + ACTIONS(362), 1, anon_sym_COLON, - STATE(153), 1, + STATE(141), 1, aux_sym_parameters_repeat1, - STATE(182), 1, + STATE(176), 1, sym_parameter, + STATE(307), 1, + sym_variadic_parameter, STATE(318), 1, sym_parameters, - STATE(331), 1, - sym_variadic_parameter, - ACTIONS(380), 2, + ACTIONS(344), 2, anon_sym_PLUS, anon_sym_STAR, - [3076] = 2, - ACTIONS(396), 2, - anon_sym_if, - sym_identifier, - ACTIONS(398), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LPAREN, - anon_sym_RPAREN, - [3090] = 2, - ACTIONS(226), 2, + [2936] = 2, + ACTIONS(192), 2, anon_sym_if, sym_identifier, ACTIONS(182), 7, @@ -4808,10 +4557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3104] = 2, - ACTIONS(400), 1, + [2950] = 2, + ACTIONS(356), 1, anon_sym_PLUS, - ACTIONS(398), 8, + ACTIONS(364), 8, anon_sym_COMMA, anon_sym_SLASH, anon_sym_LBRACE, @@ -4820,8 +4569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [3118] = 1, - ACTIONS(402), 9, + [2964] = 1, + ACTIONS(364), 9, anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, @@ -4831,23 +4580,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, - [3130] = 2, - ACTIONS(224), 2, - anon_sym_if, - sym_identifier, - ACTIONS(180), 7, - sym__string_start, - sym__raw_string_start, - sym__command_start, + [2976] = 1, + ACTIONS(366), 9, + anon_sym_COMMA, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, anon_sym_RPAREN, - [3144] = 2, - ACTIONS(220), 2, + anon_sym_RBRACE_RBRACE, + [2988] = 1, + ACTIONS(368), 9, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + [3000] = 2, + ACTIONS(370), 2, anon_sym_if, sym_identifier, - ACTIONS(184), 7, + ACTIONS(178), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4855,24 +4614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3158] = 3, - ACTIONS(404), 1, + [3014] = 4, + ACTIONS(374), 1, + anon_sym_SLASH, + ACTIONS(376), 1, anon_sym_PLUS, - ACTIONS(396), 2, + ACTIONS(372), 2, anon_sym_if, sym_identifier, - ACTIONS(398), 6, + ACTIONS(352), 5, sym__string_start, sym__raw_string_start, sym__command_start, - anon_sym_SLASH, anon_sym_LPAREN, anon_sym_RPAREN, - [3174] = 2, - ACTIONS(230), 2, + [3032] = 2, + ACTIONS(378), 2, anon_sym_if, sym_identifier, - ACTIONS(174), 7, + ACTIONS(360), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4880,24 +4640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3188] = 3, - ACTIONS(400), 1, - anon_sym_PLUS, - ACTIONS(408), 1, - anon_sym_SLASH, - ACTIONS(406), 7, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [3204] = 2, - ACTIONS(410), 2, + [3046] = 2, + ACTIONS(370), 2, anon_sym_if, sym_identifier, - ACTIONS(206), 7, + ACTIONS(178), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4905,11 +4652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3218] = 2, - ACTIONS(412), 2, + [3060] = 2, + ACTIONS(380), 2, anon_sym_if, sym_identifier, - ACTIONS(204), 7, + ACTIONS(230), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4917,40 +4664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3232] = 1, - ACTIONS(398), 9, - anon_sym_COMMA, + [3074] = 4, + ACTIONS(374), 1, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [3244] = 8, ACTIONS(376), 1, - sym_identifier, - ACTIONS(384), 1, - anon_sym_DOLLAR, - ACTIONS(414), 1, - anon_sym_COLON, - STATE(153), 1, - aux_sym_parameters_repeat1, - STATE(182), 1, - sym_parameter, - STATE(331), 1, - sym_variadic_parameter, - STATE(351), 1, - sym_parameters, - ACTIONS(380), 2, anon_sym_PLUS, - anon_sym_STAR, - [3270] = 2, - ACTIONS(416), 2, + ACTIONS(382), 2, anon_sym_if, sym_identifier, - ACTIONS(176), 7, + ACTIONS(358), 5, + sym__string_start, + sym__raw_string_start, + sym__command_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3092] = 2, + ACTIONS(384), 2, + anon_sym_if, + sym_identifier, + ACTIONS(218), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4958,37 +4690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3284] = 5, - ACTIONS(156), 1, + [3106] = 2, + ACTIONS(386), 2, + anon_sym_if, + sym_identifier, + ACTIONS(216), 7, sym__string_start, - ACTIONS(158), 1, sym__raw_string_start, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 2, - anon_sym_true, - anon_sym_false, - STATE(236), 4, - sym_boolean, - sym__string, - sym_string_literal, - sym_raw_string_literal, - [3304] = 1, - ACTIONS(422), 9, - anon_sym_COMMA, + sym__command_start, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [3316] = 2, - ACTIONS(424), 2, + [3120] = 2, + ACTIONS(188), 2, anon_sym_if, sym_identifier, - ACTIONS(402), 7, + ACTIONS(184), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -4996,38 +4714,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3330] = 4, - ACTIONS(404), 1, + [3134] = 3, + ACTIONS(376), 1, anon_sym_PLUS, - ACTIONS(428), 1, - anon_sym_SLASH, - ACTIONS(426), 2, + ACTIONS(388), 2, anon_sym_if, sym_identifier, - ACTIONS(406), 5, + ACTIONS(364), 6, sym__string_start, sym__raw_string_start, sym__command_start, + anon_sym_SLASH, anon_sym_LPAREN, anon_sym_RPAREN, - [3348] = 3, - ACTIONS(400), 1, + [3150] = 2, + ACTIONS(388), 2, + anon_sym_if, + sym_identifier, + ACTIONS(364), 7, + sym__string_start, + sym__raw_string_start, + sym__command_start, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(408), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3164] = 2, + ACTIONS(390), 2, + anon_sym_if, + sym_identifier, + ACTIONS(224), 7, + sym__string_start, + sym__raw_string_start, + sym__command_start, anon_sym_SLASH, - ACTIONS(430), 7, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, + anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - [3364] = 2, - ACTIONS(432), 2, + [3178] = 2, + ACTIONS(392), 2, anon_sym_if, sym_identifier, - ACTIONS(422), 7, + ACTIONS(366), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -5035,25 +4763,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3378] = 4, - ACTIONS(404), 1, + [3192] = 8, + ACTIONS(340), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_DOLLAR, + ACTIONS(394), 1, + anon_sym_COLON, + STATE(141), 1, + aux_sym_parameters_repeat1, + STATE(176), 1, + sym_parameter, + STATE(305), 1, + sym_parameters, + STATE(307), 1, + sym_variadic_parameter, + ACTIONS(344), 2, anon_sym_PLUS, - ACTIONS(428), 1, - anon_sym_SLASH, - ACTIONS(434), 2, + anon_sym_STAR, + [3218] = 2, + ACTIONS(396), 2, anon_sym_if, sym_identifier, - ACTIONS(430), 5, + ACTIONS(368), 7, sym__string_start, sym__raw_string_start, sym__command_start, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3396] = 2, - ACTIONS(436), 2, + [3232] = 2, + ACTIONS(220), 2, anon_sym_if, sym_identifier, - ACTIONS(228), 7, + ACTIONS(174), 7, sym__string_start, sym__raw_string_start, sym__command_start, @@ -5061,8 +4805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3410] = 2, - ACTIONS(416), 2, + [3246] = 2, + ACTIONS(186), 2, anon_sym_if, sym_identifier, ACTIONS(176), 7, @@ -5073,1531 +4817,1396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LPAREN, anon_sym_RPAREN, - [3424] = 4, - STATE(139), 1, - sym_dependency, - STATE(224), 1, - sym_dependency_expression, - STATE(142), 2, - sym_dependencies, - aux_sym_dependencies_repeat1, - ACTIONS(438), 4, + [3260] = 2, + ACTIONS(400), 2, + sym__dedent, sym__newline, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - sym_identifier, - [3441] = 6, - ACTIONS(91), 1, - sym__string_start, - ACTIONS(93), 1, - sym__raw_string_start, - ACTIONS(440), 1, - anon_sym_COMMA, - ACTIONS(442), 1, - anon_sym_RBRACK, - STATE(143), 1, - aux_sym_setting_repeat1, - STATE(360), 3, - sym__string, - sym_string_literal, - sym_raw_string_literal, - [3462] = 6, - ACTIONS(91), 1, - sym__string_start, - ACTIONS(93), 1, - sym__raw_string_start, - ACTIONS(440), 1, - anon_sym_COMMA, - ACTIONS(444), 1, - anon_sym_RBRACK, - STATE(147), 1, - aux_sym_setting_repeat1, - STATE(342), 3, - sym__string, - sym_string_literal, - sym_raw_string_literal, - [3483] = 4, - STATE(139), 1, + ACTIONS(398), 6, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + anon_sym_LBRACE_LBRACE, + sym_text, + [3273] = 4, + STATE(137), 1, sym_dependency, - STATE(224), 1, + STATE(218), 1, sym_dependency_expression, - STATE(151), 2, + STATE(135), 2, sym_dependencies, aux_sym_dependencies_repeat1, - ACTIONS(446), 4, + ACTIONS(402), 4, sym__newline, anon_sym_LPAREN, anon_sym_AMP_AMP, sym_identifier, - [3500] = 6, - ACTIONS(91), 1, + [3290] = 6, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(440), 1, + ACTIONS(404), 1, anon_sym_COMMA, - ACTIONS(448), 1, + ACTIONS(406), 1, anon_sym_RBRACK, - STATE(189), 1, - aux_sym_setting_repeat1, - STATE(349), 3, + STATE(177), 1, + aux_sym_array_repeat1, + STATE(313), 3, sym__string, sym_string_literal, sym_raw_string_literal, - [3521] = 2, - ACTIONS(452), 2, + [3311] = 2, + ACTIONS(410), 2, sym__dedent, sym__newline, - ACTIONS(450), 6, + ACTIONS(408), 6, anon_sym_AT, anon_sym_AT_DASH, anon_sym_DASH_AT, anon_sym_DASH, - aux_sym_shebang_language_token1, anon_sym_LBRACE_LBRACE, - [3534] = 7, - ACTIONS(446), 1, + sym_text, + [3324] = 2, + ACTIONS(246), 2, + sym__dedent, sym__newline, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(458), 1, - anon_sym_AMP_AMP, - STATE(139), 1, - sym_dependency, - STATE(224), 1, - sym_dependency_expression, - STATE(151), 2, - sym_dependencies, - aux_sym_dependencies_repeat1, - [3557] = 2, - ACTIONS(462), 2, + ACTIONS(248), 6, + anon_sym_AT, + anon_sym_AT_DASH, + anon_sym_DASH_AT, + anon_sym_DASH, + anon_sym_LBRACE_LBRACE, + sym_text, + [3337] = 2, + ACTIONS(414), 2, sym__dedent, sym__newline, - ACTIONS(460), 6, + ACTIONS(412), 6, anon_sym_AT, anon_sym_AT_DASH, anon_sym_DASH_AT, anon_sym_DASH, - aux_sym_shebang_language_token1, anon_sym_LBRACE_LBRACE, - [3570] = 6, - ACTIONS(91), 1, + sym_text, + [3350] = 7, + ACTIONS(416), 1, + sym_identifier, + ACTIONS(419), 1, + anon_sym_LPAREN, + ACTIONS(422), 1, + anon_sym_AMP_AMP, + ACTIONS(425), 1, + sym__newline, + STATE(137), 1, + sym_dependency, + STATE(218), 1, + sym_dependency_expression, + STATE(135), 2, + sym_dependencies, + aux_sym_dependencies_repeat1, + [3373] = 6, + ACTIONS(75), 1, sym__string_start, - ACTIONS(93), 1, + ACTIONS(77), 1, sym__raw_string_start, - ACTIONS(440), 1, + ACTIONS(404), 1, anon_sym_COMMA, - ACTIONS(464), 1, + ACTIONS(427), 1, anon_sym_RBRACK, - STATE(189), 1, - aux_sym_setting_repeat1, - STATE(338), 3, + STATE(131), 1, + aux_sym_array_repeat1, + STATE(311), 3, sym__string, sym_string_literal, sym_raw_string_literal, - [3591] = 7, - ACTIONS(438), 1, + [3394] = 4, + STATE(137), 1, + sym_dependency, + STATE(218), 1, + sym_dependency_expression, + STATE(130), 2, + sym_dependencies, + aux_sym_dependencies_repeat1, + ACTIONS(429), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + sym_identifier, + [3411] = 7, + ACTIONS(429), 1, sym__newline, - ACTIONS(454), 1, + ACTIONS(431), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(433), 1, anon_sym_LPAREN, - ACTIONS(458), 1, + ACTIONS(435), 1, anon_sym_AMP_AMP, - STATE(139), 1, + STATE(137), 1, sym_dependency, - STATE(224), 1, + STATE(218), 1, sym_dependency_expression, - STATE(145), 2, + STATE(139), 2, sym_dependencies, aux_sym_dependencies_repeat1, - [3614] = 2, - ACTIONS(466), 2, - anon_sym_if, - sym_identifier, - ACTIONS(468), 6, - sym__string_start, - sym__raw_string_start, - sym__command_start, - anon_sym_SLASH, - anon_sym_LPAREN, - anon_sym_RPAREN, - [3627] = 2, - ACTIONS(246), 2, - sym__dedent, + [3434] = 7, + ACTIONS(402), 1, sym__newline, - ACTIONS(248), 6, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - aux_sym_shebang_language_token1, - anon_sym_LBRACE_LBRACE, - [3640] = 7, - ACTIONS(470), 1, + ACTIONS(431), 1, sym_identifier, - ACTIONS(473), 1, + ACTIONS(433), 1, anon_sym_LPAREN, - ACTIONS(476), 1, + ACTIONS(435), 1, anon_sym_AMP_AMP, - ACTIONS(479), 1, - sym__newline, - STATE(139), 1, + STATE(137), 1, sym_dependency, - STATE(224), 1, + STATE(218), 1, sym_dependency_expression, - STATE(151), 2, + STATE(135), 2, sym_dependencies, aux_sym_dependencies_repeat1, - [3663] = 2, - ACTIONS(483), 2, - sym__dedent, - sym__newline, - ACTIONS(481), 6, - anon_sym_AT, - anon_sym_AT_DASH, - anon_sym_DASH_AT, - anon_sym_DASH, - aux_sym_shebang_language_token1, - anon_sym_LBRACE_LBRACE, - [3676] = 6, - ACTIONS(376), 1, + [3457] = 2, + ACTIONS(437), 2, + anon_sym_if, + sym_identifier, + ACTIONS(439), 6, + sym__string_start, + sym__raw_string_start, + sym__command_start, + anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3470] = 6, + ACTIONS(340), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(348), 1, anon_sym_DOLLAR, - STATE(173), 1, + STATE(142), 1, aux_sym_parameters_repeat1, - STATE(184), 1, + STATE(168), 1, sym_parameter, - STATE(312), 1, + STATE(338), 1, sym_variadic_parameter, - ACTIONS(380), 2, + ACTIONS(344), 2, anon_sym_PLUS, anon_sym_STAR, - [3696] = 4, - ACTIONS(485), 1, + [3490] = 4, + ACTIONS(441), 1, + sym_identifier, + ACTIONS(446), 1, + anon_sym_DOLLAR, + ACTIONS(444), 2, + anon_sym_PLUS, + anon_sym_STAR, + STATE(142), 2, + sym_parameter, + aux_sym_parameters_repeat1, + [3505] = 2, + ACTIONS(451), 1, + anon_sym_EQ, + ACTIONS(449), 5, + anon_sym_PLUS, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + sym_identifier, + [3516] = 4, + ACTIONS(453), 1, anon_sym_RBRACK, - ACTIONS(487), 1, + ACTIONS(455), 1, sym__string_start, - ACTIONS(489), 1, + ACTIONS(457), 1, sym__raw_string_start, - STATE(140), 3, + STATE(136), 3, sym__string, sym_string_literal, sym_raw_string_literal, - [3711] = 4, - ACTIONS(491), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, - sym__string_body, - ACTIONS(495), 1, - sym__command_end, - STATE(158), 3, - sym_interpolation, - sym_command_body, - aux_sym_external_command_repeat1, - [3726] = 3, - ACTIONS(497), 1, - anon_sym_else, - STATE(176), 1, - aux_sym_if_expression_repeat1, - ACTIONS(332), 4, - sym__newline, - anon_sym_SLASH, - anon_sym_PLUS, - aux_sym_comment_token1, - [3739] = 4, + [3531] = 4, ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(499), 1, - sym__newline, - STATE(161), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - [3754] = 4, - ACTIONS(501), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(504), 1, - sym__string_body, - ACTIONS(507), 1, - sym__command_end, - STATE(158), 3, - sym_interpolation, - sym_command_body, - aux_sym_external_command_repeat1, - [3769] = 4, - ACTIONS(156), 1, sym__string_start, - ACTIONS(158), 1, + ACTIONS(146), 1, sym__raw_string_start, - ACTIONS(509), 1, + ACTIONS(459), 1, anon_sym_QMARK, - STATE(92), 3, + STATE(85), 3, sym__string, sym_string_literal, sym_raw_string_literal, - [3784] = 4, - ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(511), 1, - sym__newline, - STATE(161), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - [3799] = 4, - ACTIONS(513), 1, - aux_sym_shebang_language_token1, - ACTIONS(516), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(519), 1, - sym__newline, - STATE(161), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - [3814] = 4, - ACTIONS(144), 1, - aux_sym_shebang_language_token1, - ACTIONS(146), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(511), 1, + [3546] = 6, + ACTIONS(431), 1, + sym_identifier, + ACTIONS(433), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, sym__newline, - STATE(157), 3, - sym_interpolation, - sym_text, - aux_sym_recipe_line_repeat1, - [3829] = 6, - ACTIONS(454), 1, + STATE(138), 1, + sym_dependency, + STATE(218), 1, + sym_dependency_expression, + STATE(294), 1, + sym_dependencies, + [3565] = 6, + ACTIONS(431), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(433), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(463), 1, sym__newline, - STATE(148), 1, + STATE(138), 1, sym_dependency, - STATE(224), 1, + STATE(218), 1, sym_dependency_expression, - STATE(361), 1, + STATE(328), 1, sym_dependencies, - [3848] = 4, - ACTIONS(491), 1, + [3584] = 3, + ACTIONS(465), 1, + anon_sym_else, + STATE(156), 1, + aux_sym_if_expression_repeat1, + ACTIONS(238), 4, + sym__newline, + anon_sym_SLASH, + anon_sym_PLUS, + aux_sym_comment_token1, + [3597] = 4, + ACTIONS(467), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, + ACTIONS(469), 1, sym__string_body, - ACTIONS(523), 1, + ACTIONS(471), 1, sym__command_end, - STATE(167), 3, + STATE(157), 3, sym_interpolation, sym_command_body, aux_sym_external_command_repeat1, - [3863] = 5, + [3612] = 5, ACTIONS(17), 1, anon_sym_LBRACK, ACTIONS(19), 1, anon_sym_AT, - ACTIONS(525), 1, + ACTIONS(473), 1, sym_identifier, - STATE(329), 1, + STATE(295), 1, sym_recipe_header, - STATE(181), 2, + STATE(169), 2, sym_attribute, aux_sym_recipe_repeat1, - [3880] = 4, - ACTIONS(491), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, - sym__string_body, - ACTIONS(527), 1, - sym__command_end, - STATE(158), 3, - sym_interpolation, - sym_command_body, - aux_sym_external_command_repeat1, - [3895] = 4, - ACTIONS(491), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, - sym__string_body, - ACTIONS(529), 1, - sym__command_end, - STATE(158), 3, - sym_interpolation, - sym_command_body, - aux_sym_external_command_repeat1, - [3910] = 6, - ACTIONS(454), 1, + [3629] = 2, + ACTIONS(477), 1, + anon_sym_EQ, + ACTIONS(475), 5, + anon_sym_PLUS, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + sym_identifier, + [3640] = 6, + ACTIONS(431), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(433), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(479), 1, sym__newline, - STATE(148), 1, + STATE(138), 1, sym_dependency, - STATE(224), 1, + STATE(218), 1, sym_dependency_expression, - STATE(316), 1, + STATE(320), 1, + sym_dependencies, + [3659] = 6, + ACTIONS(431), 1, + sym_identifier, + ACTIONS(433), 1, + anon_sym_LPAREN, + ACTIONS(481), 1, + sym__newline, + STATE(138), 1, + sym_dependency, + STATE(218), 1, + sym_dependency_expression, + STATE(293), 1, sym_dependencies, - [3929] = 4, - ACTIONS(491), 1, + [3678] = 4, + ACTIONS(467), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, + ACTIONS(469), 1, sym__string_body, - ACTIONS(533), 1, + ACTIONS(483), 1, sym__command_end, - STATE(166), 3, + STATE(157), 3, sym_interpolation, sym_command_body, aux_sym_external_command_repeat1, - [3944] = 3, - ACTIONS(535), 1, + [3693] = 3, + ACTIONS(485), 1, anon_sym_else, - STATE(170), 1, + STATE(155), 1, aux_sym_if_expression_repeat1, - ACTIONS(252), 4, + ACTIONS(254), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [3957] = 4, - ACTIONS(487), 1, - sym__string_start, - ACTIONS(489), 1, - sym__raw_string_start, - ACTIONS(538), 1, - anon_sym_RBRACK, - STATE(141), 3, - sym__string, - sym_string_literal, - sym_raw_string_literal, - [3972] = 4, - ACTIONS(491), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, - sym__string_body, - ACTIONS(540), 1, - sym__command_end, - STATE(158), 3, - sym_interpolation, - sym_command_body, - aux_sym_external_command_repeat1, - [3987] = 4, - ACTIONS(542), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(545), 2, - anon_sym_PLUS, - anon_sym_STAR, - STATE(173), 2, - sym_parameter, - aux_sym_parameters_repeat1, - [4002] = 6, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(550), 1, - sym__newline, - STATE(148), 1, - sym_dependency, - STATE(224), 1, - sym_dependency_expression, - STATE(336), 1, - sym_dependencies, - [4021] = 2, - ACTIONS(554), 1, - anon_sym_EQ, - ACTIONS(552), 5, - anon_sym_PLUS, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - sym_identifier, - [4032] = 3, - ACTIONS(556), 1, + [3706] = 3, + ACTIONS(488), 1, anon_sym_else, - STATE(170), 1, + STATE(155), 1, aux_sym_if_expression_repeat1, - ACTIONS(310), 4, + ACTIONS(269), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4045] = 4, - ACTIONS(491), 1, + [3719] = 4, + ACTIONS(490), 1, anon_sym_LBRACE_LBRACE, ACTIONS(493), 1, sym__string_body, - ACTIONS(558), 1, + ACTIONS(496), 1, sym__command_end, - STATE(172), 3, + STATE(157), 3, sym_interpolation, sym_command_body, aux_sym_external_command_repeat1, - [4060] = 4, - ACTIONS(491), 1, + [3734] = 4, + ACTIONS(467), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(493), 1, + ACTIONS(469), 1, sym__string_body, - ACTIONS(560), 1, + ACTIONS(498), 1, sym__command_end, - STATE(155), 3, + STATE(162), 3, sym_interpolation, sym_command_body, aux_sym_external_command_repeat1, - [4075] = 6, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, - anon_sym_LPAREN, - ACTIONS(562), 1, + [3749] = 4, + ACTIONS(467), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(469), 1, + sym__string_body, + ACTIONS(500), 1, + sym__command_end, + STATE(149), 3, + sym_interpolation, + sym_command_body, + aux_sym_external_command_repeat1, + [3764] = 4, + ACTIONS(467), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(469), 1, + sym__string_body, + ACTIONS(502), 1, + sym__command_end, + STATE(161), 3, + sym_interpolation, + sym_command_body, + aux_sym_external_command_repeat1, + [3779] = 4, + ACTIONS(467), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(469), 1, + sym__string_body, + ACTIONS(504), 1, + sym__command_end, + STATE(157), 3, + sym_interpolation, + sym_command_body, + aux_sym_external_command_repeat1, + [3794] = 4, + ACTIONS(467), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(469), 1, + sym__string_body, + ACTIONS(506), 1, + sym__command_end, + STATE(157), 3, + sym_interpolation, + sym_command_body, + aux_sym_external_command_repeat1, + [3809] = 4, + ACTIONS(467), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(469), 1, + sym__string_body, + ACTIONS(508), 1, + sym__command_end, + STATE(154), 3, + sym_interpolation, + sym_command_body, + aux_sym_external_command_repeat1, + [3824] = 1, + ACTIONS(330), 5, sym__newline, - STATE(148), 1, - sym_dependency, - STATE(224), 1, - sym_dependency_expression, - STATE(315), 1, - sym_dependencies, - [4094] = 2, - ACTIONS(566), 1, - anon_sym_EQ, - ACTIONS(564), 5, - anon_sym_PLUS, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_STAR, - sym_identifier, - [4105] = 3, - ACTIONS(570), 1, - anon_sym_LBRACK, - ACTIONS(568), 2, - anon_sym_AT, - sym_identifier, - STATE(181), 2, - sym_attribute, - aux_sym_recipe_repeat1, - [4117] = 2, - ACTIONS(575), 1, - anon_sym_COLON, - ACTIONS(573), 4, + anon_sym_SLASH, anon_sym_PLUS, - anon_sym_DOLLAR, - anon_sym_STAR, - sym_identifier, - [4127] = 3, - ACTIONS(577), 1, anon_sym_else, - STATE(183), 1, + aux_sym_comment_token1, + [3832] = 3, + ACTIONS(510), 1, + anon_sym_else, + STATE(165), 1, aux_sym_if_expression_repeat1, - ACTIONS(252), 3, + ACTIONS(254), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [4139] = 2, - ACTIONS(580), 1, + [3844] = 3, + ACTIONS(144), 1, + sym__string_start, + ACTIONS(146), 1, + sym__raw_string_start, + STATE(70), 3, + sym__string, + sym_string_literal, + sym_raw_string_literal, + [3856] = 2, + ACTIONS(513), 1, + anon_sym_LPAREN, + ACTIONS(178), 4, + sym__newline, + anon_sym_SLASH, + anon_sym_PLUS, + aux_sym_comment_token1, + [3866] = 2, + ACTIONS(517), 1, anon_sym_COLON, - ACTIONS(573), 4, + ACTIONS(515), 4, anon_sym_PLUS, anon_sym_DOLLAR, anon_sym_STAR, sym_identifier, - [4149] = 1, - ACTIONS(582), 5, + [3876] = 3, + ACTIONS(521), 1, + anon_sym_LBRACK, + ACTIONS(519), 2, + anon_sym_AT, + sym_identifier, + STATE(169), 2, + sym_attribute, + aux_sym_recipe_repeat1, + [3888] = 1, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_COLON, anon_sym_DOLLAR, anon_sym_STAR, sym_identifier, - [4157] = 1, - ACTIONS(368), 5, + [3896] = 4, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(526), 1, + sym_text, + ACTIONS(528), 1, sym__newline, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_else, - aux_sym_comment_token1, - [4165] = 3, - ACTIONS(584), 1, - anon_sym_else, - STATE(183), 1, - aux_sym_if_expression_repeat1, - ACTIONS(310), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_RBRACE, - [4177] = 3, - ACTIONS(586), 1, - anon_sym_else, - STATE(187), 1, - aux_sym_if_expression_repeat1, - ACTIONS(332), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_RBRACE, - [4189] = 3, - ACTIONS(588), 1, - anon_sym_COMMA, - STATE(189), 1, - aux_sym_setting_repeat1, - ACTIONS(591), 3, - sym__string_start, - sym__raw_string_start, - anon_sym_RBRACK, - [4201] = 3, - ACTIONS(156), 1, + STATE(181), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + [3910] = 3, + ACTIONS(455), 1, sym__string_start, - ACTIONS(158), 1, + ACTIONS(457), 1, sym__raw_string_start, - STATE(86), 3, + STATE(186), 3, sym__string, sym_string_literal, sym_raw_string_literal, - [4213] = 5, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_dependency, - STATE(224), 1, - sym_dependency_expression, - STATE(239), 1, - sym_dependencies, - [4229] = 5, + [3922] = 5, ACTIONS(25), 1, sym__newline, ACTIONS(29), 1, aux_sym_comment_token1, - ACTIONS(593), 1, + ACTIONS(530), 1, anon_sym_COLON_EQ, - STATE(72), 1, - sym_eol, - STATE(76), 1, + STATE(81), 1, sym_comment, - [4245] = 2, - ACTIONS(595), 1, - anon_sym_LPAREN, - ACTIONS(176), 4, - sym__newline, - anon_sym_SLASH, - anon_sym_PLUS, - aux_sym_comment_token1, - [4255] = 1, - ACTIONS(374), 5, - sym__newline, - anon_sym_SLASH, + STATE(88), 1, + sym_eol, + [3938] = 1, + ACTIONS(532), 5, anon_sym_PLUS, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_STAR, + sym_identifier, + [3946] = 3, + ACTIONS(534), 1, anon_sym_else, - aux_sym_comment_token1, - [4263] = 1, - ACTIONS(597), 5, + STATE(165), 1, + aux_sym_if_expression_repeat1, + ACTIONS(269), 3, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_RBRACE, + [3958] = 2, + ACTIONS(536), 1, anon_sym_COLON, + ACTIONS(515), 4, + anon_sym_PLUS, anon_sym_DOLLAR, anon_sym_STAR, sym_identifier, - [4271] = 3, - ACTIONS(487), 1, + [3968] = 3, + ACTIONS(538), 1, + anon_sym_COMMA, + STATE(177), 1, + aux_sym_array_repeat1, + ACTIONS(541), 3, sym__string_start, - ACTIONS(489), 1, sym__raw_string_start, - STATE(216), 3, - sym__string, - sym_string_literal, - sym_raw_string_literal, - [4283] = 1, - ACTIONS(204), 4, - sym__newline, + anon_sym_RBRACK, + [3980] = 3, + ACTIONS(543), 1, + anon_sym_else, + STATE(175), 1, + aux_sym_if_expression_repeat1, + ACTIONS(238), 3, anon_sym_SLASH, anon_sym_PLUS, - aux_sym_comment_token1, - [4290] = 1, - ACTIONS(228), 4, + anon_sym_RBRACE, + [3992] = 5, + ACTIONS(431), 1, + sym_identifier, + ACTIONS(433), 1, + anon_sym_LPAREN, + STATE(137), 1, + sym_dependency, + STATE(200), 1, + sym_dependencies, + STATE(218), 1, + sym_dependency_expression, + [4008] = 1, + ACTIONS(338), 5, sym__newline, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_else, aux_sym_comment_token1, - [4297] = 4, - ACTIONS(599), 1, - aux_sym_comment_token1, - ACTIONS(601), 1, - sym__newline, - STATE(250), 1, - sym_comment, - STATE(276), 1, - sym_eol, - [4310] = 4, - ACTIONS(25), 1, - sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(105), 1, - sym_eol, - [4323] = 4, - ACTIONS(25), 1, + [4016] = 4, + ACTIONS(545), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(548), 1, + sym_text, + ACTIONS(551), 1, sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(81), 1, - sym_eol, - [4336] = 1, - ACTIONS(388), 4, + STATE(181), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + [4030] = 4, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(553), 1, + sym_text, + ACTIONS(555), 1, sym__newline, - anon_sym_SLASH, - anon_sym_PLUS, - aux_sym_comment_token1, - [4343] = 4, - ACTIONS(25), 1, + STATE(171), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + [4044] = 4, + ACTIONS(166), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(526), 1, + sym_text, + ACTIONS(555), 1, sym__newline, - ACTIONS(29), 1, + STATE(181), 2, + sym_interpolation, + aux_sym_recipe_line_repeat1, + [4058] = 3, + ACTIONS(557), 1, + anon_sym_LBRACE, + ACTIONS(561), 1, + anon_sym_EQ_TILDE, + ACTIONS(559), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [4069] = 4, + ACTIONS(563), 1, aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(82), 1, + ACTIONS(565), 1, + sym__newline, + STATE(240), 1, sym_eol, - [4356] = 3, - ACTIONS(605), 1, + STATE(259), 1, + sym_comment, + [4082] = 1, + ACTIONS(567), 4, + sym__string_start, + sym__raw_string_start, + anon_sym_COMMA, + anon_sym_RBRACK, + [4089] = 3, + ACTIONS(571), 1, sym__string_end, - STATE(229), 1, + STATE(211), 1, aux_sym_string_literal_repeat1, - ACTIONS(603), 2, + ACTIONS(569), 2, sym__string_body, sym_escape_sequence, - [4367] = 4, - ACTIONS(25), 1, + [4100] = 1, + ACTIONS(178), 4, sym__newline, - ACTIONS(29), 1, + anon_sym_SLASH, + anon_sym_PLUS, aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(80), 1, - sym_eol, - [4380] = 4, - ACTIONS(25), 1, + [4107] = 1, + ACTIONS(366), 4, sym__newline, - ACTIONS(29), 1, + anon_sym_SLASH, + anon_sym_PLUS, aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(83), 1, - sym_eol, - [4393] = 3, - ACTIONS(609), 1, + [4114] = 3, + ACTIONS(575), 1, sym__string_end, - STATE(204), 1, + STATE(187), 1, aux_sym_string_literal_repeat1, - ACTIONS(607), 2, + ACTIONS(573), 2, sym__string_body, sym_escape_sequence, - [4404] = 1, - ACTIONS(402), 4, + [4125] = 1, + ACTIONS(218), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4411] = 3, - ACTIONS(611), 1, + [4132] = 1, + ACTIONS(338), 4, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_else, + anon_sym_RBRACE, + [4139] = 1, + ACTIONS(330), 4, anon_sym_SLASH, - ACTIONS(613), 1, anon_sym_PLUS, - ACTIONS(406), 2, + anon_sym_else, + anon_sym_RBRACE, + [4146] = 1, + ACTIONS(368), 4, sym__newline, + anon_sym_SLASH, + anon_sym_PLUS, aux_sym_comment_token1, - [4422] = 4, - ACTIONS(25), 1, + [4153] = 2, + ACTIONS(577), 1, + anon_sym_LPAREN, + ACTIONS(178), 3, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_RBRACE, + [4162] = 3, + ACTIONS(579), 1, + anon_sym_SLASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(358), 2, sym__newline, - ACTIONS(29), 1, aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(79), 1, - sym_eol, - [4435] = 1, - ACTIONS(422), 4, + [4173] = 3, + ACTIONS(583), 1, + sym__string_end, + STATE(211), 1, + aux_sym_string_literal_repeat1, + ACTIONS(569), 2, + sym__string_body, + sym_escape_sequence, + [4184] = 1, + ACTIONS(230), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4442] = 4, - ACTIONS(25), 1, - sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(78), 1, - sym_eol, - [4455] = 1, - ACTIONS(176), 4, + [4191] = 1, + ACTIONS(224), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4462] = 4, - ACTIONS(25), 1, + [4198] = 1, + ACTIONS(425), 4, sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(73), 1, - sym_eol, - STATE(76), 1, - sym_comment, - [4475] = 3, - ACTIONS(615), 1, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + sym_identifier, + [4205] = 3, + ACTIONS(587), 1, sym__string_end, - STATE(229), 1, + STATE(216), 1, aux_sym_string_literal_repeat1, - ACTIONS(603), 2, + ACTIONS(585), 2, sym__string_body, sym_escape_sequence, - [4486] = 1, - ACTIONS(617), 4, - sym__string_start, - sym__raw_string_start, - anon_sym_COMMA, - anon_sym_RBRACK, - [4493] = 3, - ACTIONS(621), 1, + [4216] = 3, + ACTIONS(591), 1, sym__string_end, STATE(215), 1, aux_sym_string_literal_repeat1, - ACTIONS(619), 2, + ACTIONS(589), 2, sym__string_body, sym_escape_sequence, - [4504] = 3, - ACTIONS(623), 1, + [4227] = 3, + ACTIONS(593), 1, sym__string_end, - STATE(229), 1, + STATE(211), 1, aux_sym_string_literal_repeat1, - ACTIONS(603), 2, + ACTIONS(569), 2, sym__string_body, sym_escape_sequence, - [4515] = 1, - ACTIONS(625), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - sym_identifier, - [4522] = 1, - ACTIONS(208), 4, - sym__newline, - anon_sym_SLASH, - anon_sym_PLUS, + [4238] = 4, + ACTIONS(563), 1, aux_sym_comment_token1, - [4529] = 3, - ACTIONS(629), 1, - sym__string_end, - STATE(218), 1, - aux_sym_string_literal_repeat1, - ACTIONS(627), 2, - sym__string_body, - sym_escape_sequence, - [4540] = 1, - ACTIONS(631), 4, + ACTIONS(565), 1, + sym__newline, + STATE(228), 1, + sym_eol, + STATE(259), 1, + sym_comment, + [4251] = 1, + ACTIONS(595), 4, sym__newline, anon_sym_LPAREN, anon_sym_AMP_AMP, sym_identifier, - [4547] = 3, - ACTIONS(635), 1, - sym__string_end, - STATE(237), 1, - aux_sym_string_literal_repeat1, - ACTIONS(633), 2, - sym__string_body, - sym_escape_sequence, - [4558] = 1, - ACTIONS(637), 4, + [4258] = 1, + ACTIONS(597), 4, sym__newline, anon_sym_LPAREN, anon_sym_AMP_AMP, sym_identifier, - [4565] = 3, - ACTIONS(639), 1, - sym__string_end, - STATE(229), 1, - aux_sym_string_literal_repeat1, - ACTIONS(603), 2, - sym__string_body, - sym_escape_sequence, - [4576] = 3, - ACTIONS(643), 1, - sym__string_end, - STATE(225), 1, - aux_sym_string_literal_repeat1, - ACTIONS(641), 2, - sym__string_body, - sym_escape_sequence, - [4587] = 1, - ACTIONS(368), 4, + [4265] = 1, + ACTIONS(364), 4, + sym__newline, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_else, - anon_sym_RBRACE, - [4594] = 1, - ACTIONS(374), 4, - anon_sym_SLASH, + aux_sym_comment_token1, + [4272] = 4, + ACTIONS(25), 1, + sym__newline, + ACTIONS(29), 1, + aux_sym_comment_token1, + STATE(74), 1, + sym_eol, + STATE(81), 1, + sym_comment, + [4285] = 1, + ACTIONS(182), 4, + sym__string_start, + sym__raw_string_start, + anon_sym_COMMA, + anon_sym_RBRACK, + [4292] = 2, + ACTIONS(581), 1, anon_sym_PLUS, - anon_sym_else, - anon_sym_RBRACE, - [4601] = 3, - ACTIONS(648), 1, + ACTIONS(364), 3, + sym__newline, + anon_sym_SLASH, + aux_sym_comment_token1, + [4301] = 3, + ACTIONS(602), 1, sym__string_end, - STATE(229), 1, + STATE(211), 1, aux_sym_string_literal_repeat1, - ACTIONS(645), 2, + ACTIONS(599), 2, sym__string_body, sym_escape_sequence, - [4612] = 1, + [4312] = 1, ACTIONS(184), 4, sym__string_start, sym__raw_string_start, anon_sym_COMMA, anon_sym_RBRACK, - [4619] = 1, - ACTIONS(174), 4, - sym__string_start, - sym__raw_string_start, - anon_sym_COMMA, - anon_sym_RBRACK, - [4626] = 1, - ACTIONS(222), 4, + [4319] = 1, + ACTIONS(360), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4633] = 4, - ACTIONS(599), 1, - aux_sym_comment_token1, - ACTIONS(601), 1, - sym__newline, - STATE(250), 1, - sym_comment, - STATE(264), 1, - sym_eol, - [4646] = 2, - ACTIONS(650), 1, - anon_sym_LPAREN, - ACTIONS(176), 3, + [4326] = 3, + ACTIONS(579), 1, anon_sym_SLASH, + ACTIONS(581), 1, anon_sym_PLUS, - anon_sym_RBRACE, - [4655] = 4, - ACTIONS(25), 1, - sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(84), 1, - sym_eol, - [4668] = 4, - ACTIONS(25), 1, + ACTIONS(352), 2, sym__newline, - ACTIONS(29), 1, aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(93), 1, - sym_eol, - [4681] = 3, - ACTIONS(652), 1, + [4337] = 3, + ACTIONS(604), 1, sym__string_end, - STATE(229), 1, + STATE(211), 1, aux_sym_string_literal_repeat1, - ACTIONS(603), 2, + ACTIONS(569), 2, sym__string_body, sym_escape_sequence, - [4692] = 3, - ACTIONS(654), 1, - anon_sym_LBRACE, - ACTIONS(658), 1, - anon_sym_EQ_TILDE, - ACTIONS(656), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [4703] = 1, - ACTIONS(479), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - sym_identifier, - [4710] = 1, - ACTIONS(660), 4, + [4348] = 3, + ACTIONS(606), 1, + sym__string_end, + STATE(211), 1, + aux_sym_string_literal_repeat1, + ACTIONS(569), 2, + sym__string_body, + sym_escape_sequence, + [4359] = 3, + ACTIONS(610), 1, + sym__string_end, + STATE(203), 1, + aux_sym_string_literal_repeat1, + ACTIONS(608), 2, + sym__string_body, + sym_escape_sequence, + [4370] = 1, + ACTIONS(612), 4, sym__newline, anon_sym_LPAREN, anon_sym_AMP_AMP, sym_identifier, - [4717] = 1, - ACTIONS(398), 4, + [4377] = 1, + ACTIONS(190), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4724] = 2, - ACTIONS(613), 1, - anon_sym_PLUS, - ACTIONS(398), 3, - sym__newline, - anon_sym_SLASH, - aux_sym_comment_token1, - [4733] = 4, + [4384] = 4, ACTIONS(25), 1, sym__newline, ACTIONS(29), 1, aux_sym_comment_token1, STATE(76), 1, - sym_comment, - STATE(87), 1, sym_eol, - [4746] = 1, - ACTIONS(182), 4, + STATE(81), 1, + sym_comment, + [4397] = 1, + ACTIONS(174), 4, sym__string_start, sym__raw_string_start, anon_sym_COMMA, anon_sym_RBRACK, - [4753] = 1, - ACTIONS(180), 4, + [4404] = 1, + ACTIONS(176), 4, sym__string_start, sym__raw_string_start, anon_sym_COMMA, anon_sym_RBRACK, - [4760] = 4, - ACTIONS(25), 1, + [4411] = 1, + ACTIONS(614), 4, sym__newline, - ACTIONS(29), 1, - aux_sym_comment_token1, - STATE(76), 1, - sym_comment, - STATE(103), 1, - sym_eol, - [4773] = 1, - ACTIONS(206), 4, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + sym_identifier, + [4418] = 3, + ACTIONS(618), 1, + sym__string_end, + STATE(197), 1, + aux_sym_string_literal_repeat1, + ACTIONS(616), 2, + sym__string_body, + sym_escape_sequence, + [4429] = 1, + ACTIONS(216), 4, sym__newline, anon_sym_SLASH, anon_sym_PLUS, aux_sym_comment_token1, - [4780] = 3, - ACTIONS(611), 1, - anon_sym_SLASH, - ACTIONS(613), 1, - anon_sym_PLUS, - ACTIONS(430), 2, - sym__newline, - aux_sym_comment_token1, - [4791] = 1, - ACTIONS(222), 3, + [4436] = 3, + ACTIONS(620), 1, + anon_sym_if, + ACTIONS(622), 1, + anon_sym_LBRACE, + STATE(194), 1, + sym__braced_expr, + [4446] = 1, + ACTIONS(366), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [4797] = 1, - ACTIONS(257), 3, + [4452] = 1, + ACTIONS(624), 3, anon_sym_LBRACK, anon_sym_AT, sym_identifier, - [4803] = 3, - ACTIONS(662), 1, + [4458] = 2, + ACTIONS(628), 1, + sym__newline, + ACTIONS(626), 2, + anon_sym_LBRACE_LBRACE, + sym_text, + [4466] = 3, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(665), 1, + ACTIONS(632), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(241), 1, aux_sym_sequence_repeat1, - [4813] = 3, - ACTIONS(667), 1, - anon_sym_COMMA, - ACTIONS(669), 1, - anon_sym_RBRACK, - STATE(253), 1, - aux_sym_attribute_repeat1, - [4823] = 3, - ACTIONS(667), 1, - anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_RBRACK, - STATE(272), 1, - aux_sym_attribute_repeat1, - [4833] = 3, - ACTIONS(673), 1, + [4476] = 2, + ACTIONS(636), 1, + sym__newline, + ACTIONS(634), 2, + anon_sym_LBRACE_LBRACE, + sym_text, + [4484] = 3, + ACTIONS(638), 1, anon_sym_if, - ACTIONS(675), 1, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(289), 1, + STATE(247), 1, sym__braced_expr, - [4843] = 2, - ACTIONS(679), 1, - sym__newline, - ACTIONS(677), 2, - aux_sym_shebang_language_token1, - anon_sym_LBRACE_LBRACE, - [4851] = 3, - ACTIONS(673), 1, + [4494] = 3, + ACTIONS(638), 1, anon_sym_if, - ACTIONS(675), 1, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(290), 1, + STATE(227), 1, sym__braced_expr, - [4861] = 1, - ACTIONS(679), 3, + [4504] = 1, + ACTIONS(628), 3, sym__string_body, sym__command_end, anon_sym_LBRACE_LBRACE, - [4867] = 3, - ACTIONS(681), 1, + [4510] = 2, + ACTIONS(642), 1, + anon_sym_LBRACE, + ACTIONS(178), 2, + anon_sym_SLASH, + anon_sym_PLUS, + [4518] = 3, + ACTIONS(644), 1, anon_sym_COMMA, - ACTIONS(683), 1, - anon_sym_RPAREN, - STATE(262), 1, - aux_sym_sequence_repeat1, - [4877] = 1, - ACTIONS(336), 3, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - [4883] = 3, - ACTIONS(685), 1, + ACTIONS(646), 1, + anon_sym_RBRACK, + STATE(242), 1, + aux_sym_attribute_repeat1, + [4528] = 3, + ACTIONS(648), 1, anon_sym_if, - ACTIONS(687), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - STATE(132), 1, + STATE(126), 1, sym__braced_expr, - [4893] = 3, - ACTIONS(685), 1, + [4538] = 3, + ACTIONS(648), 1, anon_sym_if, - ACTIONS(687), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - STATE(111), 1, - sym__braced_expr, - [4903] = 3, - ACTIONS(681), 1, - anon_sym_COMMA, - ACTIONS(689), 1, - anon_sym_RPAREN, - STATE(251), 1, - aux_sym_sequence_repeat1, - [4913] = 3, - ACTIONS(691), 1, + STATE(124), 1, + sym__braced_expr, + [4548] = 3, + ACTIONS(620), 1, anon_sym_if, - ACTIONS(693), 1, + ACTIONS(622), 1, anon_sym_LBRACE, - STATE(119), 1, + STATE(189), 1, sym__braced_expr, - [4923] = 1, - ACTIONS(695), 3, + [4558] = 1, + ACTIONS(652), 3, anon_sym_LBRACK, anon_sym_AT, sym_identifier, - [4929] = 2, - ACTIONS(699), 1, - sym__newline, - ACTIONS(697), 2, - aux_sym_shebang_language_token1, - anon_sym_LBRACE_LBRACE, - [4937] = 2, - ACTIONS(703), 1, - sym__newline, - ACTIONS(701), 2, - aux_sym_shebang_language_token1, - anon_sym_LBRACE_LBRACE, - [4945] = 3, - ACTIONS(691), 1, + [4564] = 3, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(654), 1, + anon_sym_RPAREN, + STATE(248), 1, + aux_sym_sequence_repeat1, + [4574] = 3, + ACTIONS(656), 1, + anon_sym_COMMA, + ACTIONS(659), 1, + anon_sym_RBRACK, + STATE(242), 1, + aux_sym_attribute_repeat1, + [4584] = 3, + ACTIONS(661), 1, anon_sym_if, - ACTIONS(693), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - STATE(113), 1, + STATE(111), 1, sym__braced_expr, - [4955] = 3, - ACTIONS(705), 1, + [4594] = 3, + ACTIONS(661), 1, anon_sym_if, - ACTIONS(707), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - STATE(202), 1, + STATE(110), 1, sym__braced_expr, - [4965] = 3, - ACTIONS(376), 1, - sym_identifier, - ACTIONS(384), 1, - anon_sym_DOLLAR, - STATE(322), 1, - sym_parameter, - [4975] = 1, - ACTIONS(709), 3, + [4604] = 3, + ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(665), 1, + anon_sym_RBRACK, + STATE(236), 1, + aux_sym_attribute_repeat1, + [4614] = 1, + ACTIONS(667), 3, sym__string_body, sym__command_end, anon_sym_LBRACE_LBRACE, - [4981] = 1, - ACTIONS(174), 3, + [4620] = 1, + ACTIONS(368), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [4987] = 3, - ACTIONS(711), 1, + [4626] = 3, + ACTIONS(669), 1, anon_sym_COMMA, - ACTIONS(714), 1, - anon_sym_RBRACK, - STATE(272), 1, - aux_sym_attribute_repeat1, - [4997] = 3, - ACTIONS(406), 1, + ACTIONS(672), 1, + anon_sym_RPAREN, + STATE(248), 1, + aux_sym_sequence_repeat1, + [4636] = 3, + ACTIONS(352), 1, anon_sym_RBRACE, - ACTIONS(716), 1, + ACTIONS(674), 1, anon_sym_SLASH, - ACTIONS(718), 1, + ACTIONS(676), 1, anon_sym_PLUS, - [5007] = 1, - ACTIONS(422), 3, + [4646] = 1, + ACTIONS(360), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5013] = 1, - ACTIONS(176), 3, + [4652] = 1, + ACTIONS(178), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5019] = 1, - ACTIONS(720), 3, - anon_sym_LBRACK, - anon_sym_AT, - sym_identifier, - [5025] = 1, - ACTIONS(184), 3, + [4658] = 1, + ACTIONS(174), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5031] = 1, - ACTIONS(228), 3, + [4664] = 1, + ACTIONS(176), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5037] = 3, - ACTIONS(430), 1, - anon_sym_RBRACE, - ACTIONS(716), 1, + [4670] = 1, + ACTIONS(230), 3, anon_sym_SLASH, - ACTIONS(718), 1, anon_sym_PLUS, - [5047] = 1, - ACTIONS(180), 3, + anon_sym_RBRACE, + [4676] = 3, + ACTIONS(358), 1, + anon_sym_RBRACE, + ACTIONS(674), 1, anon_sym_SLASH, + ACTIONS(676), 1, anon_sym_PLUS, - anon_sym_RBRACE, - [5053] = 3, - ACTIONS(705), 1, - anon_sym_if, - ACTIONS(707), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym__braced_expr, - [5063] = 1, - ACTIONS(182), 3, + [4686] = 1, + ACTIONS(281), 3, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + [4692] = 3, + ACTIONS(340), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_DOLLAR, + STATE(319), 1, + sym_parameter, + [4702] = 1, + ACTIONS(218), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5069] = 1, - ACTIONS(204), 3, + [4708] = 1, + ACTIONS(273), 3, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + [4714] = 1, + ACTIONS(216), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5075] = 1, - ACTIONS(206), 3, + [4720] = 1, + ACTIONS(190), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5081] = 2, - ACTIONS(718), 1, + [4726] = 2, + ACTIONS(676), 1, anon_sym_PLUS, - ACTIONS(398), 2, + ACTIONS(364), 2, anon_sym_SLASH, anon_sym_RBRACE, - [5089] = 1, - ACTIONS(398), 3, + [4734] = 1, + ACTIONS(364), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5095] = 2, - ACTIONS(722), 1, - anon_sym_LBRACE, - ACTIONS(176), 2, - anon_sym_SLASH, - anon_sym_PLUS, - [5103] = 1, - ACTIONS(208), 3, + [4740] = 1, + ACTIONS(182), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5109] = 1, - ACTIONS(402), 3, + [4746] = 1, + ACTIONS(224), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5115] = 1, - ACTIONS(388), 3, + [4752] = 1, + ACTIONS(184), 3, anon_sym_SLASH, anon_sym_PLUS, anon_sym_RBRACE, - [5121] = 2, - ACTIONS(724), 1, + [4758] = 2, + ACTIONS(663), 1, + anon_sym_LBRACE, + STATE(92), 1, + sym__braced_expr, + [4765] = 2, + ACTIONS(678), 1, sym__string_body, - ACTIONS(726), 1, + ACTIONS(680), 1, sym__raw_string_end, - [5128] = 2, - ACTIONS(728), 1, + [4772] = 2, + ACTIONS(682), 1, sym_identifier, - STATE(85), 1, + STATE(82), 1, sym_assignment, - [5135] = 1, - ACTIONS(665), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [5140] = 1, - ACTIONS(730), 2, + [4779] = 2, + ACTIONS(622), 1, + anon_sym_LBRACE, + STATE(148), 1, + sym__braced_expr, + [4786] = 2, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(686), 1, + anon_sym_QMARK, + [4793] = 1, + ACTIONS(688), 2, sym__newline, aux_sym_comment_token1, - [5145] = 2, - ACTIONS(732), 1, + [4798] = 2, + ACTIONS(690), 1, sym__string_body, - ACTIONS(734), 1, + ACTIONS(692), 1, sym__raw_string_end, - [5152] = 1, - ACTIONS(736), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [5157] = 2, - ACTIONS(738), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_QMARK, - [5164] = 2, - ACTIONS(742), 1, - sym_identifier, - ACTIONS(744), 1, - anon_sym_shell, - [5171] = 2, - ACTIONS(707), 1, + [4805] = 2, + ACTIONS(622), 1, anon_sym_LBRACE, - STATE(156), 1, + STATE(180), 1, sym__braced_expr, - [5178] = 2, - ACTIONS(746), 1, - sym__string_body, - ACTIONS(748), 1, - sym__raw_string_end, - [5185] = 2, - ACTIONS(707), 1, + [4812] = 1, + ACTIONS(694), 2, + sym__newline, + aux_sym_comment_token1, + [4817] = 2, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(186), 1, + STATE(192), 1, sym__braced_expr, - [5192] = 2, - ACTIONS(750), 1, + [4824] = 1, + ACTIONS(672), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [4829] = 2, + ACTIONS(696), 1, sym__string_body, - ACTIONS(752), 1, + ACTIONS(698), 1, sym__raw_string_end, - [5199] = 2, - ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(227), 1, - sym__braced_expr, - [5206] = 2, - ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(188), 1, - sym__braced_expr, - [5213] = 2, - ACTIONS(754), 1, + [4836] = 2, + ACTIONS(700), 1, sym__string_body, - ACTIONS(756), 1, + ACTIONS(702), 1, sym__raw_string_end, - [5220] = 2, - ACTIONS(693), 1, + [4843] = 2, + ACTIONS(640), 1, anon_sym_LBRACE, - STATE(102), 1, + STATE(178), 1, sym__braced_expr, - [5227] = 2, - ACTIONS(687), 1, + [4850] = 1, + ACTIONS(704), 2, + sym__newline, + aux_sym_comment_token1, + [4855] = 1, + ACTIONS(706), 2, + sym__newline, + aux_sym_comment_token1, + [4860] = 1, + ACTIONS(708), 2, + sym__newline, + aux_sym_comment_token1, + [4865] = 2, + ACTIONS(710), 1, + sym__string_body, + ACTIONS(712), 1, + sym__raw_string_end, + [4872] = 1, + ACTIONS(714), 2, + sym__newline, + aux_sym_comment_token1, + [4877] = 1, + ACTIONS(716), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [4882] = 2, + ACTIONS(650), 1, anon_sym_LBRACE, - STATE(107), 1, + STATE(99), 1, sym__braced_expr, - [5234] = 2, - ACTIONS(693), 1, + [4889] = 2, + ACTIONS(663), 1, anon_sym_LBRACE, - STATE(106), 1, + STATE(101), 1, sym__braced_expr, - [5241] = 2, - ACTIONS(687), 1, + [4896] = 2, + ACTIONS(650), 1, anon_sym_LBRACE, - STATE(94), 1, + STATE(71), 1, sym__braced_expr, - [5248] = 1, - ACTIONS(758), 1, + [4903] = 1, + ACTIONS(718), 1, anon_sym_RBRACE_RBRACE, - [5252] = 1, - ACTIONS(760), 1, + [4907] = 1, + ACTIONS(720), 1, + sym__raw_string_end, + [4911] = 1, + ACTIONS(722), 1, + sym_identifier, + [4915] = 1, + ACTIONS(479), 1, + sym__newline, + [4919] = 1, + ACTIONS(724), 1, + sym__newline, + [4923] = 1, + ACTIONS(726), 1, + sym__newline, + [4927] = 1, + ACTIONS(728), 1, + sym__raw_string_end, + [4931] = 1, + ACTIONS(730), 1, + sym_identifier, + [4935] = 1, + ACTIONS(732), 1, + sym_identifier, + [4939] = 1, + ACTIONS(734), 1, + anon_sym_RBRACE, + [4943] = 1, + ACTIONS(736), 1, anon_sym_RPAREN, - [5256] = 1, - ACTIONS(580), 1, + [4947] = 1, + ACTIONS(738), 1, + anon_sym_RPAREN, + [4951] = 1, + ACTIONS(740), 1, + anon_sym_RBRACE, + [4955] = 1, + ACTIONS(742), 1, + sym__raw_string_end, + [4959] = 1, + ACTIONS(744), 1, + sym_identifier, + [4963] = 1, + ACTIONS(746), 1, + anon_sym_COLON, + [4967] = 1, + ACTIONS(748), 1, + anon_sym_RPAREN, + [4971] = 1, + ACTIONS(536), 1, anon_sym_COLON, - [5260] = 1, + [4975] = 1, + ACTIONS(750), 1, + anon_sym_LBRACE, + [4979] = 1, + ACTIONS(752), 1, + sym__raw_string_end, + [4983] = 1, + ACTIONS(754), 1, + anon_sym_RBRACE_RBRACE, + [4987] = 1, + ACTIONS(756), 1, + anon_sym_RBRACK, + [4991] = 1, + ACTIONS(758), 1, + anon_sym_RPAREN, + [4995] = 1, + ACTIONS(760), 1, + anon_sym_RBRACK, + [4999] = 1, ACTIONS(762), 1, anon_sym_RPAREN, - [5264] = 1, + [5003] = 1, ACTIONS(764), 1, anon_sym_RBRACE, - [5268] = 1, + [5007] = 1, ACTIONS(766), 1, - sym__newline, - [5272] = 1, + anon_sym_RPAREN, + [5011] = 1, ACTIONS(768), 1, - sym__newline, - [5276] = 1, + anon_sym_RBRACE, + [5015] = 1, ACTIONS(770), 1, - sym_identifier, - [5280] = 1, + anon_sym_COLON, + [5019] = 1, ACTIONS(772), 1, anon_sym_COLON, - [5284] = 1, + [5023] = 1, ACTIONS(774), 1, - sym__raw_string_end, - [5288] = 1, + sym__newline, + [5027] = 1, ACTIONS(776), 1, sym_identifier, - [5292] = 1, - ACTIONS(378), 1, - anon_sym_COLON_EQ, - [5296] = 1, + [5031] = 1, ACTIONS(778), 1, - anon_sym_COLON, - [5300] = 1, + sym__newline, + [5035] = 1, + ACTIONS(620), 1, + anon_sym_if, + [5039] = 1, ACTIONS(780), 1, - anon_sym_RPAREN, - [5304] = 1, + sym__raw_string_end, + [5043] = 1, ACTIONS(782), 1, anon_sym_RPAREN, - [5308] = 1, + [5047] = 1, + ACTIONS(342), 1, + anon_sym_COLON_EQ, + [5051] = 1, ACTIONS(784), 1, - anon_sym_RBRACE, - [5312] = 1, - ACTIONS(786), 1, - anon_sym_RBRACE_RBRACE, - [5316] = 1, - ACTIONS(788), 1, anon_sym_COLON_EQ, - [5320] = 1, - ACTIONS(790), 1, - anon_sym_LBRACE, - [5324] = 1, - ACTIONS(792), 1, + [5055] = 1, + ACTIONS(461), 1, sym__newline, - [5328] = 1, - ACTIONS(794), 1, - anon_sym_RPAREN, - [5332] = 1, - ACTIONS(575), 1, - anon_sym_COLON, - [5336] = 1, - ACTIONS(796), 1, - sym__raw_string_end, - [5340] = 1, - ACTIONS(798), 1, - anon_sym_LBRACK, - [5344] = 1, - ACTIONS(800), 1, - anon_sym_COLON_EQ, - [5348] = 1, - ACTIONS(802), 1, - anon_sym_RPAREN, - [5352] = 1, - ACTIONS(562), 1, + [5059] = 1, + ACTIONS(786), 1, sym__newline, - [5356] = 1, - ACTIONS(804), 1, - sym_identifier, - [5360] = 1, - ACTIONS(806), 1, - anon_sym_RBRACK, - [5364] = 1, - ACTIONS(808), 1, - anon_sym_RPAREN, - [5368] = 1, - ACTIONS(810), 1, - anon_sym_RBRACE, - [5372] = 1, - ACTIONS(812), 1, - sym__raw_string_end, - [5376] = 1, - ACTIONS(814), 1, - anon_sym_RBRACK, - [5380] = 1, - ACTIONS(816), 1, - sym_identifier, - [5384] = 1, - ACTIONS(705), 1, + [5063] = 1, + ACTIONS(661), 1, anon_sym_if, - [5388] = 1, - ACTIONS(818), 1, - anon_sym_RPAREN, - [5392] = 1, - ACTIONS(820), 1, - sym__raw_string_end, - [5396] = 1, - ACTIONS(822), 1, - sym__raw_string_end, - [5400] = 1, - ACTIONS(824), 1, - sym__newline, - [5404] = 1, - ACTIONS(826), 1, - anon_sym_RBRACK, - [5408] = 1, - ACTIONS(828), 1, + [5067] = 1, + ACTIONS(788), 1, ts_builtin_sym_end, - [5412] = 1, - ACTIONS(830), 1, - anon_sym_COLON, - [5416] = 1, - ACTIONS(832), 1, + [5071] = 1, + ACTIONS(790), 1, sym__newline, - [5420] = 1, - ACTIONS(691), 1, - anon_sym_if, - [5424] = 1, - ACTIONS(834), 1, - sym_identifier, - [5428] = 1, - ACTIONS(836), 1, + [5075] = 1, + ACTIONS(792), 1, sym_identifier, - [5432] = 1, - ACTIONS(838), 1, + [5079] = 1, + ACTIONS(794), 1, sym_identifier, - [5436] = 1, - ACTIONS(840), 1, - anon_sym_RBRACE, - [5440] = 1, - ACTIONS(685), 1, + [5083] = 1, + ACTIONS(648), 1, anon_sym_if, - [5444] = 1, - ACTIONS(842), 1, - sym__newline, - [5448] = 1, - ACTIONS(844), 1, - anon_sym_RBRACK, - [5452] = 1, - ACTIONS(531), 1, - sym__newline, - [5456] = 1, - ACTIONS(846), 1, + [5087] = 1, + ACTIONS(796), 1, + sym_identifier, + [5091] = 1, + ACTIONS(798), 1, sym_identifier, - [5460] = 1, - ACTIONS(673), 1, + [5095] = 1, + ACTIONS(517), 1, + anon_sym_COLON, + [5099] = 1, + ACTIONS(800), 1, + anon_sym_RPAREN, + [5103] = 1, + ACTIONS(638), 1, anon_sym_if, }; @@ -6624,754 +6233,708 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(21)] = 880, [SMALL_STATE(22)] = 919, [SMALL_STATE(23)] = 958, - [SMALL_STATE(24)] = 995, - [SMALL_STATE(25)] = 1034, - [SMALL_STATE(26)] = 1073, - [SMALL_STATE(27)] = 1112, - [SMALL_STATE(28)] = 1139, - [SMALL_STATE(29)] = 1166, - [SMALL_STATE(30)] = 1205, - [SMALL_STATE(31)] = 1244, - [SMALL_STATE(32)] = 1283, - [SMALL_STATE(33)] = 1322, - [SMALL_STATE(34)] = 1361, - [SMALL_STATE(35)] = 1400, - [SMALL_STATE(36)] = 1439, - [SMALL_STATE(37)] = 1478, - [SMALL_STATE(38)] = 1495, - [SMALL_STATE(39)] = 1528, - [SMALL_STATE(40)] = 1547, - [SMALL_STATE(41)] = 1564, - [SMALL_STATE(42)] = 1581, - [SMALL_STATE(43)] = 1614, - [SMALL_STATE(44)] = 1647, - [SMALL_STATE(45)] = 1664, - [SMALL_STATE(46)] = 1695, - [SMALL_STATE(47)] = 1728, - [SMALL_STATE(48)] = 1761, - [SMALL_STATE(49)] = 1792, - [SMALL_STATE(50)] = 1825, - [SMALL_STATE(51)] = 1856, - [SMALL_STATE(52)] = 1889, - [SMALL_STATE(53)] = 1922, - [SMALL_STATE(54)] = 1955, - [SMALL_STATE(55)] = 1986, - [SMALL_STATE(56)] = 2019, - [SMALL_STATE(57)] = 2052, - [SMALL_STATE(58)] = 2085, - [SMALL_STATE(59)] = 2101, - [SMALL_STATE(60)] = 2117, - [SMALL_STATE(61)] = 2133, - [SMALL_STATE(62)] = 2155, - [SMALL_STATE(63)] = 2177, - [SMALL_STATE(64)] = 2193, - [SMALL_STATE(65)] = 2211, - [SMALL_STATE(66)] = 2227, - [SMALL_STATE(67)] = 2245, - [SMALL_STATE(68)] = 2263, - [SMALL_STATE(69)] = 2279, - [SMALL_STATE(70)] = 2297, - [SMALL_STATE(71)] = 2313, - [SMALL_STATE(72)] = 2339, - [SMALL_STATE(73)] = 2355, - [SMALL_STATE(74)] = 2371, - [SMALL_STATE(75)] = 2387, - [SMALL_STATE(76)] = 2407, - [SMALL_STATE(77)] = 2423, - [SMALL_STATE(78)] = 2439, - [SMALL_STATE(79)] = 2455, - [SMALL_STATE(80)] = 2471, - [SMALL_STATE(81)] = 2487, - [SMALL_STATE(82)] = 2503, - [SMALL_STATE(83)] = 2519, - [SMALL_STATE(84)] = 2535, - [SMALL_STATE(85)] = 2551, - [SMALL_STATE(86)] = 2567, - [SMALL_STATE(87)] = 2583, - [SMALL_STATE(88)] = 2599, - [SMALL_STATE(89)] = 2617, - [SMALL_STATE(90)] = 2637, - [SMALL_STATE(91)] = 2653, - [SMALL_STATE(92)] = 2669, - [SMALL_STATE(93)] = 2685, - [SMALL_STATE(94)] = 2701, - [SMALL_STATE(95)] = 2721, - [SMALL_STATE(96)] = 2737, - [SMALL_STATE(97)] = 2753, - [SMALL_STATE(98)] = 2769, - [SMALL_STATE(99)] = 2785, - [SMALL_STATE(100)] = 2801, - [SMALL_STATE(101)] = 2819, - [SMALL_STATE(102)] = 2835, - [SMALL_STATE(103)] = 2853, - [SMALL_STATE(104)] = 2869, - [SMALL_STATE(105)] = 2895, - [SMALL_STATE(106)] = 2911, - [SMALL_STATE(107)] = 2924, - [SMALL_STATE(108)] = 2939, - [SMALL_STATE(109)] = 2954, - [SMALL_STATE(110)] = 2967, - [SMALL_STATE(111)] = 2996, - [SMALL_STATE(112)] = 3010, - [SMALL_STATE(113)] = 3024, - [SMALL_STATE(114)] = 3036, - [SMALL_STATE(115)] = 3050, - [SMALL_STATE(116)] = 3076, - [SMALL_STATE(117)] = 3090, - [SMALL_STATE(118)] = 3104, - [SMALL_STATE(119)] = 3118, - [SMALL_STATE(120)] = 3130, - [SMALL_STATE(121)] = 3144, - [SMALL_STATE(122)] = 3158, - [SMALL_STATE(123)] = 3174, - [SMALL_STATE(124)] = 3188, - [SMALL_STATE(125)] = 3204, + [SMALL_STATE(24)] = 997, + [SMALL_STATE(25)] = 1024, + [SMALL_STATE(26)] = 1063, + [SMALL_STATE(27)] = 1102, + [SMALL_STATE(28)] = 1129, + [SMALL_STATE(29)] = 1168, + [SMALL_STATE(30)] = 1207, + [SMALL_STATE(31)] = 1246, + [SMALL_STATE(32)] = 1285, + [SMALL_STATE(33)] = 1324, + [SMALL_STATE(34)] = 1363, + [SMALL_STATE(35)] = 1402, + [SMALL_STATE(36)] = 1441, + [SMALL_STATE(37)] = 1477, + [SMALL_STATE(38)] = 1510, + [SMALL_STATE(39)] = 1527, + [SMALL_STATE(40)] = 1544, + [SMALL_STATE(41)] = 1563, + [SMALL_STATE(42)] = 1596, + [SMALL_STATE(43)] = 1613, + [SMALL_STATE(44)] = 1630, + [SMALL_STATE(45)] = 1663, + [SMALL_STATE(46)] = 1696, + [SMALL_STATE(47)] = 1729, + [SMALL_STATE(48)] = 1762, + [SMALL_STATE(49)] = 1795, + [SMALL_STATE(50)] = 1828, + [SMALL_STATE(51)] = 1861, + [SMALL_STATE(52)] = 1894, + [SMALL_STATE(53)] = 1927, + [SMALL_STATE(54)] = 1960, + [SMALL_STATE(55)] = 1978, + [SMALL_STATE(56)] = 1996, + [SMALL_STATE(57)] = 2012, + [SMALL_STATE(58)] = 2030, + [SMALL_STATE(59)] = 2060, + [SMALL_STATE(60)] = 2090, + [SMALL_STATE(61)] = 2112, + [SMALL_STATE(62)] = 2128, + [SMALL_STATE(63)] = 2144, + [SMALL_STATE(64)] = 2162, + [SMALL_STATE(65)] = 2192, + [SMALL_STATE(66)] = 2208, + [SMALL_STATE(67)] = 2238, + [SMALL_STATE(68)] = 2260, + [SMALL_STATE(69)] = 2276, + [SMALL_STATE(70)] = 2292, + [SMALL_STATE(71)] = 2308, + [SMALL_STATE(72)] = 2328, + [SMALL_STATE(73)] = 2344, + [SMALL_STATE(74)] = 2360, + [SMALL_STATE(75)] = 2376, + [SMALL_STATE(76)] = 2394, + [SMALL_STATE(77)] = 2410, + [SMALL_STATE(78)] = 2426, + [SMALL_STATE(79)] = 2452, + [SMALL_STATE(80)] = 2478, + [SMALL_STATE(81)] = 2496, + [SMALL_STATE(82)] = 2512, + [SMALL_STATE(83)] = 2528, + [SMALL_STATE(84)] = 2544, + [SMALL_STATE(85)] = 2560, + [SMALL_STATE(86)] = 2576, + [SMALL_STATE(87)] = 2592, + [SMALL_STATE(88)] = 2608, + [SMALL_STATE(89)] = 2624, + [SMALL_STATE(90)] = 2644, + [SMALL_STATE(91)] = 2660, + [SMALL_STATE(92)] = 2676, + [SMALL_STATE(93)] = 2694, + [SMALL_STATE(94)] = 2710, + [SMALL_STATE(95)] = 2730, + [SMALL_STATE(96)] = 2746, + [SMALL_STATE(97)] = 2761, + [SMALL_STATE(98)] = 2782, + [SMALL_STATE(99)] = 2795, + [SMALL_STATE(100)] = 2810, + [SMALL_STATE(101)] = 2839, + [SMALL_STATE(102)] = 2852, + [SMALL_STATE(103)] = 2866, + [SMALL_STATE(104)] = 2882, + [SMALL_STATE(105)] = 2898, + [SMALL_STATE(106)] = 2910, + [SMALL_STATE(107)] = 2936, + [SMALL_STATE(108)] = 2950, + [SMALL_STATE(109)] = 2964, + [SMALL_STATE(110)] = 2976, + [SMALL_STATE(111)] = 2988, + [SMALL_STATE(112)] = 3000, + [SMALL_STATE(113)] = 3014, + [SMALL_STATE(114)] = 3032, + [SMALL_STATE(115)] = 3046, + [SMALL_STATE(116)] = 3060, + [SMALL_STATE(117)] = 3074, + [SMALL_STATE(118)] = 3092, + [SMALL_STATE(119)] = 3106, + [SMALL_STATE(120)] = 3120, + [SMALL_STATE(121)] = 3134, + [SMALL_STATE(122)] = 3150, + [SMALL_STATE(123)] = 3164, + [SMALL_STATE(124)] = 3178, + [SMALL_STATE(125)] = 3192, [SMALL_STATE(126)] = 3218, [SMALL_STATE(127)] = 3232, - [SMALL_STATE(128)] = 3244, - [SMALL_STATE(129)] = 3270, - [SMALL_STATE(130)] = 3284, - [SMALL_STATE(131)] = 3304, - [SMALL_STATE(132)] = 3316, - [SMALL_STATE(133)] = 3330, - [SMALL_STATE(134)] = 3348, - [SMALL_STATE(135)] = 3364, - [SMALL_STATE(136)] = 3378, - [SMALL_STATE(137)] = 3396, - [SMALL_STATE(138)] = 3410, - [SMALL_STATE(139)] = 3424, - [SMALL_STATE(140)] = 3441, - [SMALL_STATE(141)] = 3462, - [SMALL_STATE(142)] = 3483, - [SMALL_STATE(143)] = 3500, - [SMALL_STATE(144)] = 3521, - [SMALL_STATE(145)] = 3534, - [SMALL_STATE(146)] = 3557, - [SMALL_STATE(147)] = 3570, - [SMALL_STATE(148)] = 3591, - [SMALL_STATE(149)] = 3614, - [SMALL_STATE(150)] = 3627, - [SMALL_STATE(151)] = 3640, - [SMALL_STATE(152)] = 3663, - [SMALL_STATE(153)] = 3676, - [SMALL_STATE(154)] = 3696, - [SMALL_STATE(155)] = 3711, - [SMALL_STATE(156)] = 3726, - [SMALL_STATE(157)] = 3739, - [SMALL_STATE(158)] = 3754, - [SMALL_STATE(159)] = 3769, - [SMALL_STATE(160)] = 3784, - [SMALL_STATE(161)] = 3799, - [SMALL_STATE(162)] = 3814, - [SMALL_STATE(163)] = 3829, - [SMALL_STATE(164)] = 3848, - [SMALL_STATE(165)] = 3863, - [SMALL_STATE(166)] = 3880, - [SMALL_STATE(167)] = 3895, - [SMALL_STATE(168)] = 3910, - [SMALL_STATE(169)] = 3929, - [SMALL_STATE(170)] = 3944, - [SMALL_STATE(171)] = 3957, - [SMALL_STATE(172)] = 3972, - [SMALL_STATE(173)] = 3987, - [SMALL_STATE(174)] = 4002, - [SMALL_STATE(175)] = 4021, - [SMALL_STATE(176)] = 4032, - [SMALL_STATE(177)] = 4045, - [SMALL_STATE(178)] = 4060, - [SMALL_STATE(179)] = 4075, - [SMALL_STATE(180)] = 4094, - [SMALL_STATE(181)] = 4105, - [SMALL_STATE(182)] = 4117, - [SMALL_STATE(183)] = 4127, - [SMALL_STATE(184)] = 4139, - [SMALL_STATE(185)] = 4149, - [SMALL_STATE(186)] = 4157, - [SMALL_STATE(187)] = 4165, - [SMALL_STATE(188)] = 4177, - [SMALL_STATE(189)] = 4189, - [SMALL_STATE(190)] = 4201, - [SMALL_STATE(191)] = 4213, - [SMALL_STATE(192)] = 4229, - [SMALL_STATE(193)] = 4245, - [SMALL_STATE(194)] = 4255, - [SMALL_STATE(195)] = 4263, - [SMALL_STATE(196)] = 4271, - [SMALL_STATE(197)] = 4283, - [SMALL_STATE(198)] = 4290, - [SMALL_STATE(199)] = 4297, - [SMALL_STATE(200)] = 4310, - [SMALL_STATE(201)] = 4323, - [SMALL_STATE(202)] = 4336, - [SMALL_STATE(203)] = 4343, - [SMALL_STATE(204)] = 4356, - [SMALL_STATE(205)] = 4367, - [SMALL_STATE(206)] = 4380, - [SMALL_STATE(207)] = 4393, - [SMALL_STATE(208)] = 4404, - [SMALL_STATE(209)] = 4411, - [SMALL_STATE(210)] = 4422, - [SMALL_STATE(211)] = 4435, - [SMALL_STATE(212)] = 4442, - [SMALL_STATE(213)] = 4455, - [SMALL_STATE(214)] = 4462, - [SMALL_STATE(215)] = 4475, - [SMALL_STATE(216)] = 4486, - [SMALL_STATE(217)] = 4493, - [SMALL_STATE(218)] = 4504, - [SMALL_STATE(219)] = 4515, - [SMALL_STATE(220)] = 4522, - [SMALL_STATE(221)] = 4529, - [SMALL_STATE(222)] = 4540, - [SMALL_STATE(223)] = 4547, - [SMALL_STATE(224)] = 4558, - [SMALL_STATE(225)] = 4565, - [SMALL_STATE(226)] = 4576, - [SMALL_STATE(227)] = 4587, - [SMALL_STATE(228)] = 4594, - [SMALL_STATE(229)] = 4601, - [SMALL_STATE(230)] = 4612, - [SMALL_STATE(231)] = 4619, - [SMALL_STATE(232)] = 4626, - [SMALL_STATE(233)] = 4633, - [SMALL_STATE(234)] = 4646, - [SMALL_STATE(235)] = 4655, - [SMALL_STATE(236)] = 4668, - [SMALL_STATE(237)] = 4681, - [SMALL_STATE(238)] = 4692, - [SMALL_STATE(239)] = 4703, - [SMALL_STATE(240)] = 4710, - [SMALL_STATE(241)] = 4717, - [SMALL_STATE(242)] = 4724, - [SMALL_STATE(243)] = 4733, - [SMALL_STATE(244)] = 4746, - [SMALL_STATE(245)] = 4753, - [SMALL_STATE(246)] = 4760, - [SMALL_STATE(247)] = 4773, - [SMALL_STATE(248)] = 4780, - [SMALL_STATE(249)] = 4791, - [SMALL_STATE(250)] = 4797, - [SMALL_STATE(251)] = 4803, - [SMALL_STATE(252)] = 4813, - [SMALL_STATE(253)] = 4823, - [SMALL_STATE(254)] = 4833, - [SMALL_STATE(255)] = 4843, - [SMALL_STATE(256)] = 4851, - [SMALL_STATE(257)] = 4861, - [SMALL_STATE(258)] = 4867, - [SMALL_STATE(259)] = 4877, - [SMALL_STATE(260)] = 4883, - [SMALL_STATE(261)] = 4893, - [SMALL_STATE(262)] = 4903, - [SMALL_STATE(263)] = 4913, - [SMALL_STATE(264)] = 4923, - [SMALL_STATE(265)] = 4929, - [SMALL_STATE(266)] = 4937, - [SMALL_STATE(267)] = 4945, - [SMALL_STATE(268)] = 4955, - [SMALL_STATE(269)] = 4965, - [SMALL_STATE(270)] = 4975, - [SMALL_STATE(271)] = 4981, - [SMALL_STATE(272)] = 4987, - [SMALL_STATE(273)] = 4997, - [SMALL_STATE(274)] = 5007, - [SMALL_STATE(275)] = 5013, - [SMALL_STATE(276)] = 5019, - [SMALL_STATE(277)] = 5025, - [SMALL_STATE(278)] = 5031, - [SMALL_STATE(279)] = 5037, - [SMALL_STATE(280)] = 5047, - [SMALL_STATE(281)] = 5053, - [SMALL_STATE(282)] = 5063, - [SMALL_STATE(283)] = 5069, - [SMALL_STATE(284)] = 5075, - [SMALL_STATE(285)] = 5081, - [SMALL_STATE(286)] = 5089, - [SMALL_STATE(287)] = 5095, - [SMALL_STATE(288)] = 5103, - [SMALL_STATE(289)] = 5109, - [SMALL_STATE(290)] = 5115, - [SMALL_STATE(291)] = 5121, - [SMALL_STATE(292)] = 5128, - [SMALL_STATE(293)] = 5135, - [SMALL_STATE(294)] = 5140, - [SMALL_STATE(295)] = 5145, - [SMALL_STATE(296)] = 5152, - [SMALL_STATE(297)] = 5157, - [SMALL_STATE(298)] = 5164, - [SMALL_STATE(299)] = 5171, - [SMALL_STATE(300)] = 5178, - [SMALL_STATE(301)] = 5185, - [SMALL_STATE(302)] = 5192, - [SMALL_STATE(303)] = 5199, - [SMALL_STATE(304)] = 5206, - [SMALL_STATE(305)] = 5213, - [SMALL_STATE(306)] = 5220, - [SMALL_STATE(307)] = 5227, - [SMALL_STATE(308)] = 5234, - [SMALL_STATE(309)] = 5241, - [SMALL_STATE(310)] = 5248, - [SMALL_STATE(311)] = 5252, - [SMALL_STATE(312)] = 5256, - [SMALL_STATE(313)] = 5260, - [SMALL_STATE(314)] = 5264, - [SMALL_STATE(315)] = 5268, - [SMALL_STATE(316)] = 5272, - [SMALL_STATE(317)] = 5276, - [SMALL_STATE(318)] = 5280, - [SMALL_STATE(319)] = 5284, - [SMALL_STATE(320)] = 5288, - [SMALL_STATE(321)] = 5292, - [SMALL_STATE(322)] = 5296, - [SMALL_STATE(323)] = 5300, - [SMALL_STATE(324)] = 5304, - [SMALL_STATE(325)] = 5308, - [SMALL_STATE(326)] = 5312, - [SMALL_STATE(327)] = 5316, - [SMALL_STATE(328)] = 5320, - [SMALL_STATE(329)] = 5324, - [SMALL_STATE(330)] = 5328, - [SMALL_STATE(331)] = 5332, - [SMALL_STATE(332)] = 5336, - [SMALL_STATE(333)] = 5340, - [SMALL_STATE(334)] = 5344, - [SMALL_STATE(335)] = 5348, - [SMALL_STATE(336)] = 5352, - [SMALL_STATE(337)] = 5356, - [SMALL_STATE(338)] = 5360, - [SMALL_STATE(339)] = 5364, - [SMALL_STATE(340)] = 5368, - [SMALL_STATE(341)] = 5372, - [SMALL_STATE(342)] = 5376, - [SMALL_STATE(343)] = 5380, - [SMALL_STATE(344)] = 5384, - [SMALL_STATE(345)] = 5388, - [SMALL_STATE(346)] = 5392, - [SMALL_STATE(347)] = 5396, - [SMALL_STATE(348)] = 5400, - [SMALL_STATE(349)] = 5404, - [SMALL_STATE(350)] = 5408, - [SMALL_STATE(351)] = 5412, - [SMALL_STATE(352)] = 5416, - [SMALL_STATE(353)] = 5420, - [SMALL_STATE(354)] = 5424, - [SMALL_STATE(355)] = 5428, - [SMALL_STATE(356)] = 5432, - [SMALL_STATE(357)] = 5436, - [SMALL_STATE(358)] = 5440, - [SMALL_STATE(359)] = 5444, - [SMALL_STATE(360)] = 5448, - [SMALL_STATE(361)] = 5452, - [SMALL_STATE(362)] = 5456, - [SMALL_STATE(363)] = 5460, + [SMALL_STATE(128)] = 3246, + [SMALL_STATE(129)] = 3260, + [SMALL_STATE(130)] = 3273, + [SMALL_STATE(131)] = 3290, + [SMALL_STATE(132)] = 3311, + [SMALL_STATE(133)] = 3324, + [SMALL_STATE(134)] = 3337, + [SMALL_STATE(135)] = 3350, + [SMALL_STATE(136)] = 3373, + [SMALL_STATE(137)] = 3394, + [SMALL_STATE(138)] = 3411, + [SMALL_STATE(139)] = 3434, + [SMALL_STATE(140)] = 3457, + [SMALL_STATE(141)] = 3470, + [SMALL_STATE(142)] = 3490, + [SMALL_STATE(143)] = 3505, + [SMALL_STATE(144)] = 3516, + [SMALL_STATE(145)] = 3531, + [SMALL_STATE(146)] = 3546, + [SMALL_STATE(147)] = 3565, + [SMALL_STATE(148)] = 3584, + [SMALL_STATE(149)] = 3597, + [SMALL_STATE(150)] = 3612, + [SMALL_STATE(151)] = 3629, + [SMALL_STATE(152)] = 3640, + [SMALL_STATE(153)] = 3659, + [SMALL_STATE(154)] = 3678, + [SMALL_STATE(155)] = 3693, + [SMALL_STATE(156)] = 3706, + [SMALL_STATE(157)] = 3719, + [SMALL_STATE(158)] = 3734, + [SMALL_STATE(159)] = 3749, + [SMALL_STATE(160)] = 3764, + [SMALL_STATE(161)] = 3779, + [SMALL_STATE(162)] = 3794, + [SMALL_STATE(163)] = 3809, + [SMALL_STATE(164)] = 3824, + [SMALL_STATE(165)] = 3832, + [SMALL_STATE(166)] = 3844, + [SMALL_STATE(167)] = 3856, + [SMALL_STATE(168)] = 3866, + [SMALL_STATE(169)] = 3876, + [SMALL_STATE(170)] = 3888, + [SMALL_STATE(171)] = 3896, + [SMALL_STATE(172)] = 3910, + [SMALL_STATE(173)] = 3922, + [SMALL_STATE(174)] = 3938, + [SMALL_STATE(175)] = 3946, + [SMALL_STATE(176)] = 3958, + [SMALL_STATE(177)] = 3968, + [SMALL_STATE(178)] = 3980, + [SMALL_STATE(179)] = 3992, + [SMALL_STATE(180)] = 4008, + [SMALL_STATE(181)] = 4016, + [SMALL_STATE(182)] = 4030, + [SMALL_STATE(183)] = 4044, + [SMALL_STATE(184)] = 4058, + [SMALL_STATE(185)] = 4069, + [SMALL_STATE(186)] = 4082, + [SMALL_STATE(187)] = 4089, + [SMALL_STATE(188)] = 4100, + [SMALL_STATE(189)] = 4107, + [SMALL_STATE(190)] = 4114, + [SMALL_STATE(191)] = 4125, + [SMALL_STATE(192)] = 4132, + [SMALL_STATE(193)] = 4139, + [SMALL_STATE(194)] = 4146, + [SMALL_STATE(195)] = 4153, + [SMALL_STATE(196)] = 4162, + [SMALL_STATE(197)] = 4173, + [SMALL_STATE(198)] = 4184, + [SMALL_STATE(199)] = 4191, + [SMALL_STATE(200)] = 4198, + [SMALL_STATE(201)] = 4205, + [SMALL_STATE(202)] = 4216, + [SMALL_STATE(203)] = 4227, + [SMALL_STATE(204)] = 4238, + [SMALL_STATE(205)] = 4251, + [SMALL_STATE(206)] = 4258, + [SMALL_STATE(207)] = 4265, + [SMALL_STATE(208)] = 4272, + [SMALL_STATE(209)] = 4285, + [SMALL_STATE(210)] = 4292, + [SMALL_STATE(211)] = 4301, + [SMALL_STATE(212)] = 4312, + [SMALL_STATE(213)] = 4319, + [SMALL_STATE(214)] = 4326, + [SMALL_STATE(215)] = 4337, + [SMALL_STATE(216)] = 4348, + [SMALL_STATE(217)] = 4359, + [SMALL_STATE(218)] = 4370, + [SMALL_STATE(219)] = 4377, + [SMALL_STATE(220)] = 4384, + [SMALL_STATE(221)] = 4397, + [SMALL_STATE(222)] = 4404, + [SMALL_STATE(223)] = 4411, + [SMALL_STATE(224)] = 4418, + [SMALL_STATE(225)] = 4429, + [SMALL_STATE(226)] = 4436, + [SMALL_STATE(227)] = 4446, + [SMALL_STATE(228)] = 4452, + [SMALL_STATE(229)] = 4458, + [SMALL_STATE(230)] = 4466, + [SMALL_STATE(231)] = 4476, + [SMALL_STATE(232)] = 4484, + [SMALL_STATE(233)] = 4494, + [SMALL_STATE(234)] = 4504, + [SMALL_STATE(235)] = 4510, + [SMALL_STATE(236)] = 4518, + [SMALL_STATE(237)] = 4528, + [SMALL_STATE(238)] = 4538, + [SMALL_STATE(239)] = 4548, + [SMALL_STATE(240)] = 4558, + [SMALL_STATE(241)] = 4564, + [SMALL_STATE(242)] = 4574, + [SMALL_STATE(243)] = 4584, + [SMALL_STATE(244)] = 4594, + [SMALL_STATE(245)] = 4604, + [SMALL_STATE(246)] = 4614, + [SMALL_STATE(247)] = 4620, + [SMALL_STATE(248)] = 4626, + [SMALL_STATE(249)] = 4636, + [SMALL_STATE(250)] = 4646, + [SMALL_STATE(251)] = 4652, + [SMALL_STATE(252)] = 4658, + [SMALL_STATE(253)] = 4664, + [SMALL_STATE(254)] = 4670, + [SMALL_STATE(255)] = 4676, + [SMALL_STATE(256)] = 4686, + [SMALL_STATE(257)] = 4692, + [SMALL_STATE(258)] = 4702, + [SMALL_STATE(259)] = 4708, + [SMALL_STATE(260)] = 4714, + [SMALL_STATE(261)] = 4720, + [SMALL_STATE(262)] = 4726, + [SMALL_STATE(263)] = 4734, + [SMALL_STATE(264)] = 4740, + [SMALL_STATE(265)] = 4746, + [SMALL_STATE(266)] = 4752, + [SMALL_STATE(267)] = 4758, + [SMALL_STATE(268)] = 4765, + [SMALL_STATE(269)] = 4772, + [SMALL_STATE(270)] = 4779, + [SMALL_STATE(271)] = 4786, + [SMALL_STATE(272)] = 4793, + [SMALL_STATE(273)] = 4798, + [SMALL_STATE(274)] = 4805, + [SMALL_STATE(275)] = 4812, + [SMALL_STATE(276)] = 4817, + [SMALL_STATE(277)] = 4824, + [SMALL_STATE(278)] = 4829, + [SMALL_STATE(279)] = 4836, + [SMALL_STATE(280)] = 4843, + [SMALL_STATE(281)] = 4850, + [SMALL_STATE(282)] = 4855, + [SMALL_STATE(283)] = 4860, + [SMALL_STATE(284)] = 4865, + [SMALL_STATE(285)] = 4872, + [SMALL_STATE(286)] = 4877, + [SMALL_STATE(287)] = 4882, + [SMALL_STATE(288)] = 4889, + [SMALL_STATE(289)] = 4896, + [SMALL_STATE(290)] = 4903, + [SMALL_STATE(291)] = 4907, + [SMALL_STATE(292)] = 4911, + [SMALL_STATE(293)] = 4915, + [SMALL_STATE(294)] = 4919, + [SMALL_STATE(295)] = 4923, + [SMALL_STATE(296)] = 4927, + [SMALL_STATE(297)] = 4931, + [SMALL_STATE(298)] = 4935, + [SMALL_STATE(299)] = 4939, + [SMALL_STATE(300)] = 4943, + [SMALL_STATE(301)] = 4947, + [SMALL_STATE(302)] = 4951, + [SMALL_STATE(303)] = 4955, + [SMALL_STATE(304)] = 4959, + [SMALL_STATE(305)] = 4963, + [SMALL_STATE(306)] = 4967, + [SMALL_STATE(307)] = 4971, + [SMALL_STATE(308)] = 4975, + [SMALL_STATE(309)] = 4979, + [SMALL_STATE(310)] = 4983, + [SMALL_STATE(311)] = 4987, + [SMALL_STATE(312)] = 4991, + [SMALL_STATE(313)] = 4995, + [SMALL_STATE(314)] = 4999, + [SMALL_STATE(315)] = 5003, + [SMALL_STATE(316)] = 5007, + [SMALL_STATE(317)] = 5011, + [SMALL_STATE(318)] = 5015, + [SMALL_STATE(319)] = 5019, + [SMALL_STATE(320)] = 5023, + [SMALL_STATE(321)] = 5027, + [SMALL_STATE(322)] = 5031, + [SMALL_STATE(323)] = 5035, + [SMALL_STATE(324)] = 5039, + [SMALL_STATE(325)] = 5043, + [SMALL_STATE(326)] = 5047, + [SMALL_STATE(327)] = 5051, + [SMALL_STATE(328)] = 5055, + [SMALL_STATE(329)] = 5059, + [SMALL_STATE(330)] = 5063, + [SMALL_STATE(331)] = 5067, + [SMALL_STATE(332)] = 5071, + [SMALL_STATE(333)] = 5075, + [SMALL_STATE(334)] = 5079, + [SMALL_STATE(335)] = 5083, + [SMALL_STATE(336)] = 5087, + [SMALL_STATE(337)] = 5091, + [SMALL_STATE(338)] = 5095, + [SMALL_STATE(339)] = 5099, + [SMALL_STATE(340)] = 5103, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [31] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [33] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(110), - [36] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(362), - [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(292), - [42] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(159), - [45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(297), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(298), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(356), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(355), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(352), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(129), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(42), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(17), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(34), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(217), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(305), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 31), SHIFT_REPEAT(177), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [31] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), + [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(292), + [41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(269), + [44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(145), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(271), + [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(336), + [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(334), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(333), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(332), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(112), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(41), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(15), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(33), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(224), + [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(284), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 2, .production_id = 30), SHIFT_REPEAT(163), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 1), - [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 1), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, .production_id = 5), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, .production_id = 5), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, .production_id = 12), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, .production_id = 4), - [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, .production_id = 4), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 12), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(266), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(265), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(30), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_body_repeat1, 2), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(144), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 20), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 29), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 2), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 2), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 3), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 3), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 12), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_command, 3, .production_id = 12), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, .production_id = 4), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, .production_id = 4), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_command, 2, .production_id = 4), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, .production_id = 12), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 4, .production_id = 32), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 4, .production_id = 32), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 3, .production_id = 6), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 3, .production_id = 6), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 8, .production_id = 40), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 8, .production_id = 40), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, .production_id = 5), + [142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, .production_id = 5), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 1), + [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 1), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, .production_id = 4), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, .production_id = 4), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 12), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, .production_id = 12), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, .production_id = 4), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, .production_id = 12), + [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 20), + [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 12), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(231), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(21), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(183), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_body_repeat1, 2), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_body_repeat1, 2), SHIFT_REPEAT(132), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 3), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 3), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 3), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_command, 3, .production_id = 12), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, .production_id = 4), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 28), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 2), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 2), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_command, 2, .production_id = 4), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 4, .production_id = 31), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 4, .production_id = 31), [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 1), [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 1), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), SHIFT_REPEAT(358), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eol, 1), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eol, 1), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 8, .production_id = 41), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 8, .production_id = 41), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 8, .production_id = 42), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 8, .production_id = 42), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 8, .production_id = 43), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 8, .production_id = 43), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 7, .production_id = 36), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 7, .production_id = 36), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 9, .production_id = 45), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 9, .production_id = 45), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 9, .production_id = 46), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 9, .production_id = 46), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 7, .production_id = 34), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 7, .production_id = 34), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export, 2), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export, 2), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 6, .production_id = 27), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 6, .production_id = 27), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), SHIFT_REPEAT(353), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 28), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 28), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, .production_id = 1), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, .production_id = 1), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 3, .production_id = 25), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 3, .production_id = 25), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 5, .production_id = 17), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 5, .production_id = 17), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, .production_id = 11), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias, 4, .production_id = 11), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 4), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 4), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, .production_id = 5), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, .production_id = 5), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 2), - [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 2), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 6, .production_id = 26), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 6, .production_id = 26), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 15), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 15), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 4, .production_id = 47), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 4, .production_id = 47), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__braced_expr, 3, .production_id = 37), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__braced_expr, 3, .production_id = 37), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 38), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 38), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_command, 3, .production_id = 12), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 29), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_inner, 3, .production_id = 21), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_inner, 3, .production_id = 21), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 44), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 20), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 3), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_inner, 1), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, .production_id = 44), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_inner, 1), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 2), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_command, 2, .production_id = 4), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 1), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 2), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 1), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 1), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 3), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 3), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 1, .production_id = 23), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 1, .production_id = 23), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(222), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(320), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(191), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 2), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 2), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), SHIFT_REPEAT(21), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), SHIFT_REPEAT(270), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_line_repeat1, 2), SHIFT_REPEAT(265), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_line_repeat1, 2), SHIFT_REPEAT(30), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_line_repeat1, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 3, .production_id = 7), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 4, .production_id = 7), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), SHIFT_REPEAT(344), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(175), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(343), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 2, .production_id = 2), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 3), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 3, .production_id = 2), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 10), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(356), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 1), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 1), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 39), SHIFT_REPEAT(363), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 24), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_setting_repeat1, 2, .production_id = 35), SHIFT_REPEAT(196), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_setting_repeat1, 2, .production_id = 35), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 16), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_setting_repeat1, 2, .production_id = 33), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency_expression, 4, .production_id = 30), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency, 1, .production_id = 9), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency, 1), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(229), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 1), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency_expression, 3, .production_id = 22), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_repeat1, 2), SHIFT_REPEAT(31), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_repeat1, 2), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence, 1), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence, 2), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 18), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line_prefix, 1), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line_prefix, 1), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_body, 1), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 14), SHIFT_REPEAT(354), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 14), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 13), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_literal, 1), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 13), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 4, .production_id = 2), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 5, .production_id = 7), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 8), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 3), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [828] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 5, .production_id = 11), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 5, .production_id = 11), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), SHIFT_REPEAT(330), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 15), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 15), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 4), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe, 4), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 27), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eol, 1), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eol, 1), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export, 2), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export, 2), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, .production_id = 11), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias, 4, .production_id = 11), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 2), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 2), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setting, 3, .production_id = 6), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setting, 3, .production_id = 6), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), SHIFT_REPEAT(335), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, .production_id = 5), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, .production_id = 5), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, .production_id = 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, .production_id = 1), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_body, 3, .production_id = 25), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_body, 3, .production_id = 25), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 27), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__braced_expr, 3, .production_id = 36), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__braced_expr, 3, .production_id = 36), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 4, .production_id = 41), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 4, .production_id = 41), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 20), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_inner, 1), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_inner, 3, .production_id = 21), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 37), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 40), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_inner, 1), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_command, 2, .production_id = 4), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 2), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_command, 3, .production_id = 12), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 3), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_inner, 3, .production_id = 21), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 28), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 37), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, .production_id = 40), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 3), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 3), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 2), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 1), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 1), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line, 2), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line, 2), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(223), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(321), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), SHIFT_REPEAT(179), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependencies_repeat1, 2), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 1), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dependency_expression_repeat1, 1, .production_id = 23), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dependency_expression_repeat1, 1, .production_id = 23), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(151), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(337), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 10), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 3, .production_id = 2), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 2, .production_id = 2), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 3), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 4, .production_id = 7), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 3, .production_id = 7), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), SHIFT_REPEAT(323), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), SHIFT_REPEAT(29), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), SHIFT_REPEAT(246), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_command_repeat1, 2), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, .production_id = 38), SHIFT_REPEAT(340), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 1), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(334), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 24), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 16), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 1), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 35), SHIFT_REPEAT(172), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 35), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_line_repeat1, 2), SHIFT_REPEAT(21), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_line_repeat1, 2), SHIFT_REPEAT(181), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_line_repeat1, 2), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 32), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency_expression, 4, .production_id = 29), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency_expression, 3, .production_id = 22), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(211), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency, 1), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependency, 1, .production_id = 9), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 18), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence, 1), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recipe_line_prefix, 1), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_line_prefix, 1), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_literal, 1), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 13), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence, 2), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 14), SHIFT_REPEAT(304), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 14), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_body, 1), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_repeat1, 2), SHIFT_REPEAT(26), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_repeat1, 2), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, .production_id = 17), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, .production_id = 39), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 26), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, .production_id = 34), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, .production_id = 33), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, .production_id = 13), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 4, .production_id = 2), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 3), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 8), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe_header, 5, .production_id = 7), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [788] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), }; #ifdef __cplusplus diff --git a/submodules/tree-sitter-PowerShell b/submodules/tree-sitter-PowerShell new file mode 160000 index 0000000..9564531 --- /dev/null +++ b/submodules/tree-sitter-PowerShell @@ -0,0 +1 @@ +Subproject commit 956453126b634be53a1dadba70449000fc7a609b diff --git a/submodules/tree-sitter-bash b/submodules/tree-sitter-bash new file mode 160000 index 0000000..c00f3ae --- /dev/null +++ b/submodules/tree-sitter-bash @@ -0,0 +1 @@ +Subproject commit c00f3ae828e6a99b1090b11eabdec8c6089ee246 diff --git a/submodules/tree-sitter-perl b/submodules/tree-sitter-perl new file mode 160000 index 0000000..0096cbf --- /dev/null +++ b/submodules/tree-sitter-perl @@ -0,0 +1 @@ +Subproject commit 0096cbf34d2e44e2a1b4140b386e9492684cb115 diff --git a/submodules/tree-sitter-python b/submodules/tree-sitter-python new file mode 160000 index 0000000..4bfdd90 --- /dev/null +++ b/submodules/tree-sitter-python @@ -0,0 +1 @@ +Subproject commit 4bfdd9033a2225cc95032ce77066b7aeca9e2efc diff --git a/submodules/tree-sitter-regex b/submodules/tree-sitter-regex new file mode 160000 index 0000000..2354482 --- /dev/null +++ b/submodules/tree-sitter-regex @@ -0,0 +1 @@ +Subproject commit 2354482d7e2e8f8ff33c1ef6c8aa5690410fbc96 diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 8ad5933..f316fe4 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -578,8 +578,10 @@ set shell := ["powershell.exe", "-c"] (eol))) (item (setting - (string_literal) - (string_literal) + (identifier) + (array + (string_literal) + (string_literal)) (eol))) (item (eol))) diff --git a/test/highlight/injections-global-pwsh.just b/test/highlight/injections-global-pwsh.just new file mode 100644 index 0000000..f9ee5da --- /dev/null +++ b/test/highlight/injections-global-pwsh.just @@ -0,0 +1,7 @@ +set shell := ["pwsh", "-c"] +set dotenv-filename := ".env-local" +set dotenv-load + +recipe: + Write-Host "Hello, world!" + Get-ChildItem -Path C:\ diff --git a/test/highlight/injections-global-py.just b/test/highlight/injections-global-py.just new file mode 100644 index 0000000..f77e112 --- /dev/null +++ b/test/highlight/injections-global-py.just @@ -0,0 +1,11 @@ +set shell := ["python", "-c"] +set dotenv-filename := ".env-local" +set dotenv-load + +recipe: + print("foo") + if bar: + a += b + if (baz) { + abcd() + }