From e3dfc2cdca2eb68ed48056e20ba1db7620b8d2fd Mon Sep 17 00:00:00 2001 From: Uy Ha Date: Sun, 27 Jun 2021 21:20:09 +0200 Subject: [PATCH] Stop treating command argument as special: - Planning to move the highlight responsibility to the highlight query - Stop trying to parse frequently used commands - One test is failing because of `unquoted_argument`, planning to fix --- corpus/bracket_argument.txt | 24 +- corpus/comment.txt | 28 +- corpus/condition.txt | 17 +- corpus/message.txt | 30 +- corpus/quoted_argument.txt | 24 +- corpus/unquoted_argument.txt | 33 +- grammar.js | 89 +- src/grammar.json | 1173 -- src/node-types.json | 295 - src/parser.c | 23008 +++++++++++++-------------------- 10 files changed, 8828 insertions(+), 15893 deletions(-) diff --git a/corpus/bracket_argument.txt b/corpus/bracket_argument.txt index 83b0601..ad24c5b 100644 --- a/corpus/bracket_argument.txt +++ b/corpus/bracket_argument.txt @@ -6,8 +6,8 @@ message([[]]) --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) ) ) @@ -20,8 +20,8 @@ message([[an argument]]) --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) ) ) @@ -34,8 +34,8 @@ message([[first argument]] [[second argument]]) --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) (argument (bracket_argument)) ) @@ -52,8 +52,8 @@ message( --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) (argument (bracket_argument)) ) @@ -69,8 +69,8 @@ with line break --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) ) ) @@ -85,8 +85,8 @@ with line break ]==] --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (bracket_argument)) ) ) diff --git a/corpus/comment.txt b/corpus/comment.txt index 7ac72d7..3b3af74 100644 --- a/corpus/comment.txt +++ b/corpus/comment.txt @@ -17,12 +17,13 @@ message(STATUS #[[Some comment]] "comment is next" #[[Some comment]]) --- (source_file - (message_command - (message) - (bracket_comment) - (argument (quoted_argument (quoted_element))) - (bracket_comment) - ) + (normal_command + (identifier) + (argument (unquoted_argument)) + (bracket_comment) + (argument (quoted_argument (quoted_element))) + (bracket_comment) + ) ) ====================== @@ -39,17 +40,18 @@ Line comment [comment] =================================== Message with Line comment [comment] =================================== -message(STATUS # Some line comment +message(STATUS #Some line comment message #Some other line comment ) --- (source_file - (message_command - (message) - (line_comment) - (argument (unquoted_argument)) - (line_comment) - ) + (normal_command + (identifier) + (argument (unquoted_argument)) + (line_comment) + (argument (unquoted_argument)) + (line_comment) + ) ) diff --git a/corpus/condition.txt b/corpus/condition.txt index 9962a0d..4b8b313 100644 --- a/corpus/condition.txt +++ b/corpus/condition.txt @@ -74,12 +74,15 @@ endif() --- (source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - ) - (message_command (message)) - (endif_command (endif)) + (if_condition + (if_command + (if) + (argument (unquoted_argument)) ) + (normal_command + (identifier) + (argument (unquoted_argument)) + ) + (endif_command (endif)) + ) ) diff --git a/corpus/message.txt b/corpus/message.txt index 17ac9b8..88e8ad6 100644 --- a/corpus/message.txt +++ b/corpus/message.txt @@ -7,8 +7,8 @@ message() --- (source_file - (message_command - (message) + (normal_command + (identifier) ) ) @@ -21,8 +21,8 @@ message( ) --- (source_file - (message_command - (message) + (normal_command + (identifier) ) ) @@ -37,8 +37,8 @@ message( --- (source_file - (message_command - (message) + (normal_command + (identifier) ) ) @@ -51,25 +51,27 @@ message(STATUS [=[Some argument ]==] ]=] ) --- (source_file - (message_command - (message) + (normal_command + (identifier) + (argument (unquoted_argument)) (argument (bracket_argument)) ) ) -============================================================= +============================================================== Message with STATUS and bracket argument and newline [message] -============================================================= +============================================================== -message(STATUS -[=[Some argument +message(STATUS +[=[Some argument ]==] ]=] ) --- (source_file - (message_command - (message) + (normal_command + (identifier) + (argument (unquoted_argument)) (argument (bracket_argument)) ) ) diff --git a/corpus/quoted_argument.txt b/corpus/quoted_argument.txt index 76f7562..c42e829 100644 --- a/corpus/quoted_argument.txt +++ b/corpus/quoted_argument.txt @@ -6,8 +6,8 @@ message("") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument)) ) ) @@ -20,8 +20,8 @@ message("An argument") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument (quoted_element))) ) ) @@ -34,8 +34,8 @@ message("First argument" "Second argument") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument (quoted_element))) (argument (quoted_argument (quoted_element))) ) @@ -50,8 +50,8 @@ with line break") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument (quoted_element))) ) ) @@ -64,8 +64,8 @@ message("${var}") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument (quoted_element @@ -84,8 +84,8 @@ message("${var} ${var}") --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (quoted_argument (quoted_element diff --git a/corpus/unquoted_argument.txt b/corpus/unquoted_argument.txt index b7f0acc..172f381 100644 --- a/corpus/unquoted_argument.txt +++ b/corpus/unquoted_argument.txt @@ -7,8 +7,9 @@ message(STATUS) --- (source_file - (message_command - (message) + (normal_command + (identifier) + (argument (unquoted_argument)) ) ) @@ -21,8 +22,8 @@ message(STATUS Hello) --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (unquoted_argument)) ) ) @@ -37,9 +38,15 @@ STATUS) --- (source_file - (message_command (message)) - (message_command (message)) + (normal_command + (identifier) + (argument (unquoted_argument)) ) + (normal_command + (identifier) + (argument (unquoted_argument)) + ) +) ============================================================ Command invocations with escape sequence [unquoted_argument] ============================================================ @@ -50,8 +57,14 @@ STATUS) --- (source_file - (message_command (message)) - (message_command (message)) + (normal_command + (identifier) + (argument (unquoted_argument)) + ) + (normal_command + (identifier) + (argument (unquoted_argument)) + ) ) ======================================== @@ -61,8 +74,8 @@ message(${var_ref}) --- (source_file - (message_command - (message) + (normal_command + (identifier) (argument (unquoted_argument (variable_ref (normal_var (variable))) diff --git a/grammar.js b/grammar.js index 1f0bf8c..b3a007c 100644 --- a/grammar.js +++ b/grammar.js @@ -11,69 +11,6 @@ commands = [ "endfunction", "macro", "endmacro", - "message", -]; -if_args = [ - "1", - "ON", - "YES", - "TRUE", - "Y", - "0", - "OFF", - "NO", - "FALSE", - "N", - "IGNORE", - "NOTFOUND", - "NOT", - "AND", - "OR", - "COMMAND", - "POLICY", - "TARGET", - "TEST", - "DEFINED", - "CACHE", - "ENV", - "IN_LIST", - "EXISTS", - "IS_NEWER_THAN", - "IS_DIRECTORY", - "IS_SYMLINK", - "IS_ABSOLUTE", - "MATCHES", - "LESS", - "GREATER", - "EQUAL", - "LESS_EQUAL", - "GREATER_EQUAL", - "STRLESS", - "STRGREATER", - "STREQUAL", - "STRLESS_EQUAL", - "STRGREATER_EQUAL", - "VERSION_LESS", - "VERSION_GREATER", - "VERSION_EQUAL", - "VERSION_LESS_EQUAL", - "VERSION_GREATER_EQUAL", -]; -foreach_args = ["IN", "RANGE", "ZIP_LISTS", "LISTS", "ITEMS"]; -message_args = [ - "FATAL_ERROR", - "SEND_ERROR", - "WARNING", - "AUTHOR_WARNING", - "DEPRECATION", - "NOTICE", - "STATUS", - "VERBOSE", - "DEBUG", - "TRACE", - "CHECK_START", - "CHECK_PASS", - "CHECK_FAIL", ]; module.exports = grammar({ @@ -103,19 +40,19 @@ module.exports = grammar({ unquoted_argument: ($) => prec.right(repeat1(choice($.variable_ref, /[^\s\n\r()#\"\\]/, $.escape_sequence))), - if_command: ($) => command($.if, repeat(choice($.argument, ...if_args))), - elseif_command: ($) => command($.elseif, repeat(choice($.argument, ...if_args))), - else_command: ($) => command($.else, optional(choice($.argument, ...if_args))), - endif_command: ($) => command($.endif, optional(choice($.argument, ...if_args))), + if_command: ($) => command($.if, repeat(choice($.argument))), + elseif_command: ($) => command($.elseif, repeat(choice($.argument))), + else_command: ($) => command($.else, optional(choice($.argument))), + endif_command: ($) => command($.endif, optional(choice($.argument))), if_condition: ($) => seq($.if_command, repeat(choice($._command_invocation, $.elseif_command, $.else_command)), $.endif_command), - foreach_command: ($) => command($.foreach, repeat(choice($.argument, ...foreach_args))), + foreach_command: ($) => command($.foreach, repeat(choice($.argument))), endforeach_command: ($) => command($.endforeach, optional($.argument)), foreach_loop: ($) => seq($.foreach_command, repeat($._command_invocation), $.endforeach_command), - while_command: ($) => command($.while, repeat(choice($.argument, ...if_args))), - endwhile_command: ($) => command($.endwhile, optional(choice($.argument, ...if_args))), + while_command: ($) => command($.while, repeat(choice($.argument))), + endwhile_command: ($) => command($.endwhile, optional(choice($.argument))), while_loop: ($) => seq($.while_command, repeat($._command_invocation), $.endwhile_command), function_command: ($) => command($.function, repeat($.argument)), @@ -126,20 +63,10 @@ module.exports = grammar({ endmacro_command: ($) => command($.endmacro, repeat($.argument)), macro_def: ($) => seq($.macro_command, repeat($._command_invocation), $.endmacro_command), - message_command: ($) => command($.message, optional(repeat(choice($.argument, ...message_args)))), - normal_command: ($) => command($.identifier, repeat($.argument)), _command_invocation: ($) => - choice( - $.normal_command, - $.if_condition, - $.foreach_loop, - $.while_loop, - $.function_def, - $.macro_def, - $.message_command - ), + choice($.normal_command, $.if_condition, $.foreach_loop, $.while_loop, $.function_def, $.macro_def), ...commandNames(...commands), identifier: (_) => /[A-Za-z_][A-Za-z0-9_]*/, diff --git a/src/grammar.json b/src/grammar.json index b282bff..93f6351 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -251,182 +251,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] } @@ -456,182 +280,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] } @@ -662,182 +310,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] }, @@ -872,182 +344,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] }, @@ -1114,26 +410,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "IN" - }, - { - "type": "STRING", - "value": "RANGE" - }, - { - "type": "STRING", - "value": "ZIP_LISTS" - }, - { - "type": "STRING", - "value": "LISTS" - }, - { - "type": "STRING", - "value": "ITEMS" } ] } @@ -1212,182 +488,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] } @@ -1418,182 +518,6 @@ { "type": "SYMBOL", "name": "argument" - }, - { - "type": "STRING", - "value": "1" - }, - { - "type": "STRING", - "value": "ON" - }, - { - "type": "STRING", - "value": "YES" - }, - { - "type": "STRING", - "value": "TRUE" - }, - { - "type": "STRING", - "value": "Y" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "OFF" - }, - { - "type": "STRING", - "value": "NO" - }, - { - "type": "STRING", - "value": "FALSE" - }, - { - "type": "STRING", - "value": "N" - }, - { - "type": "STRING", - "value": "IGNORE" - }, - { - "type": "STRING", - "value": "NOTFOUND" - }, - { - "type": "STRING", - "value": "NOT" - }, - { - "type": "STRING", - "value": "AND" - }, - { - "type": "STRING", - "value": "OR" - }, - { - "type": "STRING", - "value": "COMMAND" - }, - { - "type": "STRING", - "value": "POLICY" - }, - { - "type": "STRING", - "value": "TARGET" - }, - { - "type": "STRING", - "value": "TEST" - }, - { - "type": "STRING", - "value": "DEFINED" - }, - { - "type": "STRING", - "value": "CACHE" - }, - { - "type": "STRING", - "value": "ENV" - }, - { - "type": "STRING", - "value": "IN_LIST" - }, - { - "type": "STRING", - "value": "EXISTS" - }, - { - "type": "STRING", - "value": "IS_NEWER_THAN" - }, - { - "type": "STRING", - "value": "IS_DIRECTORY" - }, - { - "type": "STRING", - "value": "IS_SYMLINK" - }, - { - "type": "STRING", - "value": "IS_ABSOLUTE" - }, - { - "type": "STRING", - "value": "MATCHES" - }, - { - "type": "STRING", - "value": "LESS" - }, - { - "type": "STRING", - "value": "GREATER" - }, - { - "type": "STRING", - "value": "EQUAL" - }, - { - "type": "STRING", - "value": "LESS_EQUAL" - }, - { - "type": "STRING", - "value": "GREATER_EQUAL" - }, - { - "type": "STRING", - "value": "STRLESS" - }, - { - "type": "STRING", - "value": "STRGREATER" - }, - { - "type": "STRING", - "value": "STREQUAL" - }, - { - "type": "STRING", - "value": "STRLESS_EQUAL" - }, - { - "type": "STRING", - "value": "STRGREATER_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS" - }, - { - "type": "STRING", - "value": "VERSION_GREATER" - }, - { - "type": "STRING", - "value": "VERSION_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_LESS_EQUAL" - }, - { - "type": "STRING", - "value": "VERSION_GREATER_EQUAL" } ] }, @@ -1764,95 +688,6 @@ } ] }, - "message_command": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "message" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - }, - { - "type": "STRING", - "value": "FATAL_ERROR" - }, - { - "type": "STRING", - "value": "SEND_ERROR" - }, - { - "type": "STRING", - "value": "WARNING" - }, - { - "type": "STRING", - "value": "AUTHOR_WARNING" - }, - { - "type": "STRING", - "value": "DEPRECATION" - }, - { - "type": "STRING", - "value": "NOTICE" - }, - { - "type": "STRING", - "value": "STATUS" - }, - { - "type": "STRING", - "value": "VERBOSE" - }, - { - "type": "STRING", - "value": "DEBUG" - }, - { - "type": "STRING", - "value": "TRACE" - }, - { - "type": "STRING", - "value": "CHECK_START" - }, - { - "type": "STRING", - "value": "CHECK_PASS" - }, - { - "type": "STRING", - "value": "CHECK_FAIL" - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, "normal_command": { "type": "SEQ", "members": [ @@ -1903,10 +738,6 @@ { "type": "SYMBOL", "name": "macro_def" - }, - { - "type": "SYMBOL", - "name": "message_command" } ] }, @@ -1958,10 +789,6 @@ "type": "PATTERN", "value": "[eE][nN][dD][mM][aA][cC][rR][oO]" }, - "message": { - "type": "PATTERN", - "value": "[mM][eE][sS][sS][aA][gG][eE]" - }, "identifier": { "type": "PATTERN", "value": "[A-Za-z_][A-Za-z0-9_]*" diff --git a/src/node-types.json b/src/node-types.json index 9b86eee..5682513 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -241,10 +241,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -307,10 +303,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -381,10 +373,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -447,10 +435,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -462,25 +446,6 @@ ] } }, - { - "type": "message_command", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "argument", - "named": true - }, - { - "type": "message", - "named": true - } - ] - } - }, { "type": "normal_command", "named": true, @@ -573,10 +538,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -692,10 +653,6 @@ "type": "macro_def", "named": true }, - { - "type": "message_command", - "named": true - }, { "type": "normal_command", "named": true @@ -735,254 +692,6 @@ "type": ")", "named": false }, - { - "type": "0", - "named": false - }, - { - "type": "1", - "named": false - }, - { - "type": "AND", - "named": false - }, - { - "type": "AUTHOR_WARNING", - "named": false - }, - { - "type": "CACHE", - "named": false - }, - { - "type": "CHECK_FAIL", - "named": false - }, - { - "type": "CHECK_PASS", - "named": false - }, - { - "type": "CHECK_START", - "named": false - }, - { - "type": "COMMAND", - "named": false - }, - { - "type": "DEBUG", - "named": false - }, - { - "type": "DEFINED", - "named": false - }, - { - "type": "DEPRECATION", - "named": false - }, - { - "type": "ENV", - "named": false - }, - { - "type": "EQUAL", - "named": false - }, - { - "type": "EXISTS", - "named": false - }, - { - "type": "FALSE", - "named": false - }, - { - "type": "FATAL_ERROR", - "named": false - }, - { - "type": "GREATER", - "named": false - }, - { - "type": "GREATER_EQUAL", - "named": false - }, - { - "type": "IGNORE", - "named": false - }, - { - "type": "IN", - "named": false - }, - { - "type": "IN_LIST", - "named": false - }, - { - "type": "IS_ABSOLUTE", - "named": false - }, - { - "type": "IS_DIRECTORY", - "named": false - }, - { - "type": "IS_NEWER_THAN", - "named": false - }, - { - "type": "IS_SYMLINK", - "named": false - }, - { - "type": "ITEMS", - "named": false - }, - { - "type": "LESS", - "named": false - }, - { - "type": "LESS_EQUAL", - "named": false - }, - { - "type": "LISTS", - "named": false - }, - { - "type": "MATCHES", - "named": false - }, - { - "type": "N", - "named": false - }, - { - "type": "NO", - "named": false - }, - { - "type": "NOT", - "named": false - }, - { - "type": "NOTFOUND", - "named": false - }, - { - "type": "NOTICE", - "named": false - }, - { - "type": "OFF", - "named": false - }, - { - "type": "ON", - "named": false - }, - { - "type": "OR", - "named": false - }, - { - "type": "POLICY", - "named": false - }, - { - "type": "RANGE", - "named": false - }, - { - "type": "SEND_ERROR", - "named": false - }, - { - "type": "STATUS", - "named": false - }, - { - "type": "STREQUAL", - "named": false - }, - { - "type": "STRGREATER", - "named": false - }, - { - "type": "STRGREATER_EQUAL", - "named": false - }, - { - "type": "STRLESS", - "named": false - }, - { - "type": "STRLESS_EQUAL", - "named": false - }, - { - "type": "TARGET", - "named": false - }, - { - "type": "TEST", - "named": false - }, - { - "type": "TRACE", - "named": false - }, - { - "type": "TRUE", - "named": false - }, - { - "type": "VERBOSE", - "named": false - }, - { - "type": "VERSION_EQUAL", - "named": false - }, - { - "type": "VERSION_GREATER", - "named": false - }, - { - "type": "VERSION_GREATER_EQUAL", - "named": false - }, - { - "type": "VERSION_LESS", - "named": false - }, - { - "type": "VERSION_LESS_EQUAL", - "named": false - }, - { - "type": "WARNING", - "named": false - }, - { - "type": "Y", - "named": false - }, - { - "type": "YES", - "named": false - }, - { - "type": "ZIP_LISTS", - "named": false - }, { "type": "\\n", "named": false @@ -1055,10 +764,6 @@ "type": "macro", "named": true }, - { - "type": "message", - "named": true - }, { "type": "while", "named": true diff --git a/src/parser.c b/src/parser.c index 29b0653..e532c68 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,20 +5,12 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 13 -#define STATE_COUNT 497 -#define LARGE_STATE_COUNT 24 -#define SYMBOL_COUNT 137 +#define STATE_COUNT 405 +#define LARGE_STATE_COUNT 2 +#define SYMBOL_COUNT 71 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 96 +#define TOKEN_COUNT 33 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 4 @@ -40,127 +32,61 @@ enum { aux_sym_quoted_element_token1 = 13, aux_sym_unquoted_argument_token1 = 14, anon_sym_LPAREN = 15, - anon_sym_1 = 16, - anon_sym_ON = 17, - anon_sym_YES = 18, - anon_sym_TRUE = 19, - anon_sym_Y = 20, - anon_sym_0 = 21, - anon_sym_OFF = 22, - anon_sym_NO = 23, - anon_sym_FALSE = 24, - anon_sym_N = 25, - anon_sym_IGNORE = 26, - anon_sym_NOTFOUND = 27, - anon_sym_NOT = 28, - anon_sym_AND = 29, - anon_sym_OR = 30, - anon_sym_COMMAND = 31, - anon_sym_POLICY = 32, - anon_sym_TARGET = 33, - anon_sym_TEST = 34, - anon_sym_DEFINED = 35, - anon_sym_CACHE = 36, - anon_sym_ENV = 37, - anon_sym_IN_LIST = 38, - anon_sym_EXISTS = 39, - anon_sym_IS_NEWER_THAN = 40, - anon_sym_IS_DIRECTORY = 41, - anon_sym_IS_SYMLINK = 42, - anon_sym_IS_ABSOLUTE = 43, - anon_sym_MATCHES = 44, - anon_sym_LESS = 45, - anon_sym_GREATER = 46, - anon_sym_EQUAL = 47, - anon_sym_LESS_EQUAL = 48, - anon_sym_GREATER_EQUAL = 49, - anon_sym_STRLESS = 50, - anon_sym_STRGREATER = 51, - anon_sym_STREQUAL = 52, - anon_sym_STRLESS_EQUAL = 53, - anon_sym_STRGREATER_EQUAL = 54, - anon_sym_VERSION_LESS = 55, - anon_sym_VERSION_GREATER = 56, - anon_sym_VERSION_EQUAL = 57, - anon_sym_VERSION_LESS_EQUAL = 58, - anon_sym_VERSION_GREATER_EQUAL = 59, - anon_sym_RPAREN = 60, - anon_sym_IN = 61, - anon_sym_RANGE = 62, - anon_sym_ZIP_LISTS = 63, - anon_sym_LISTS = 64, - anon_sym_ITEMS = 65, - anon_sym_FATAL_ERROR = 66, - anon_sym_SEND_ERROR = 67, - anon_sym_WARNING = 68, - anon_sym_AUTHOR_WARNING = 69, - anon_sym_DEPRECATION = 70, - anon_sym_NOTICE = 71, - anon_sym_STATUS = 72, - anon_sym_VERBOSE = 73, - anon_sym_DEBUG = 74, - anon_sym_TRACE = 75, - anon_sym_CHECK_START = 76, - anon_sym_CHECK_PASS = 77, - anon_sym_CHECK_FAIL = 78, - sym_if = 79, - sym_elseif = 80, - sym_else = 81, - sym_endif = 82, - sym_foreach = 83, - sym_endforeach = 84, - sym_while = 85, - sym_endwhile = 86, - sym_function = 87, - sym_endfunction = 88, - sym_macro = 89, - sym_endmacro = 90, - sym_message = 91, - sym_identifier = 92, - sym_bracket_argument = 93, - sym_bracket_comment = 94, - sym_line_comment = 95, - sym_source_file = 96, - sym_escape_sequence = 97, - sym__escape_encoded = 98, - sym_variable = 99, - sym_variable_ref = 100, - sym_normal_var = 101, - sym_env_var = 102, - sym_cache_var = 103, - sym_argument = 104, - sym_quoted_argument = 105, - sym_quoted_element = 106, - sym_unquoted_argument = 107, - sym_if_command = 108, - sym_elseif_command = 109, - sym_else_command = 110, - sym_endif_command = 111, - sym_if_condition = 112, - sym_foreach_command = 113, - sym_endforeach_command = 114, - sym_foreach_loop = 115, - sym_while_command = 116, - sym_endwhile_command = 117, - sym_while_loop = 118, - sym_function_command = 119, - sym_endfunction_command = 120, - sym_function_def = 121, - sym_macro_command = 122, - sym_endmacro_command = 123, - sym_macro_def = 124, - sym_message_command = 125, - sym_normal_command = 126, - sym__command_invocation = 127, - aux_sym_source_file_repeat1 = 128, - aux_sym_variable_repeat1 = 129, - aux_sym_quoted_element_repeat1 = 130, - aux_sym_unquoted_argument_repeat1 = 131, - aux_sym_if_command_repeat1 = 132, - aux_sym_if_condition_repeat1 = 133, - aux_sym_foreach_command_repeat1 = 134, - aux_sym_function_command_repeat1 = 135, - aux_sym_message_command_repeat1 = 136, + anon_sym_RPAREN = 16, + sym_if = 17, + sym_elseif = 18, + sym_else = 19, + sym_endif = 20, + sym_foreach = 21, + sym_endforeach = 22, + sym_while = 23, + sym_endwhile = 24, + sym_function = 25, + sym_endfunction = 26, + sym_macro = 27, + sym_endmacro = 28, + sym_identifier = 29, + sym_bracket_argument = 30, + sym_bracket_comment = 31, + sym_line_comment = 32, + sym_source_file = 33, + sym_escape_sequence = 34, + sym__escape_encoded = 35, + sym_variable = 36, + sym_variable_ref = 37, + sym_normal_var = 38, + sym_env_var = 39, + sym_cache_var = 40, + sym_argument = 41, + sym_quoted_argument = 42, + sym_quoted_element = 43, + sym_unquoted_argument = 44, + sym_if_command = 45, + sym_elseif_command = 46, + sym_else_command = 47, + sym_endif_command = 48, + sym_if_condition = 49, + sym_foreach_command = 50, + sym_endforeach_command = 51, + sym_foreach_loop = 52, + sym_while_command = 53, + sym_endwhile_command = 54, + sym_while_loop = 55, + sym_function_command = 56, + sym_endfunction_command = 57, + sym_function_def = 58, + sym_macro_command = 59, + sym_endmacro_command = 60, + sym_macro_def = 61, + sym_normal_command = 62, + sym__command_invocation = 63, + aux_sym_source_file_repeat1 = 64, + aux_sym_variable_repeat1 = 65, + aux_sym_quoted_element_repeat1 = 66, + aux_sym_unquoted_argument_repeat1 = 67, + aux_sym_if_command_repeat1 = 68, + aux_sym_if_condition_repeat1 = 69, + aux_sym_function_command_repeat1 = 70, }; static const char * const ts_symbol_names[] = { @@ -180,69 +106,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_quoted_element_token1] = "quoted_element_token1", [aux_sym_unquoted_argument_token1] = "unquoted_argument_token1", [anon_sym_LPAREN] = "(", - [anon_sym_1] = "1", - [anon_sym_ON] = "ON", - [anon_sym_YES] = "YES", - [anon_sym_TRUE] = "TRUE", - [anon_sym_Y] = "Y", - [anon_sym_0] = "0", - [anon_sym_OFF] = "OFF", - [anon_sym_NO] = "NO", - [anon_sym_FALSE] = "FALSE", - [anon_sym_N] = "N", - [anon_sym_IGNORE] = "IGNORE", - [anon_sym_NOTFOUND] = "NOTFOUND", - [anon_sym_NOT] = "NOT", - [anon_sym_AND] = "AND", - [anon_sym_OR] = "OR", - [anon_sym_COMMAND] = "COMMAND", - [anon_sym_POLICY] = "POLICY", - [anon_sym_TARGET] = "TARGET", - [anon_sym_TEST] = "TEST", - [anon_sym_DEFINED] = "DEFINED", - [anon_sym_CACHE] = "CACHE", - [anon_sym_ENV] = "ENV", - [anon_sym_IN_LIST] = "IN_LIST", - [anon_sym_EXISTS] = "EXISTS", - [anon_sym_IS_NEWER_THAN] = "IS_NEWER_THAN", - [anon_sym_IS_DIRECTORY] = "IS_DIRECTORY", - [anon_sym_IS_SYMLINK] = "IS_SYMLINK", - [anon_sym_IS_ABSOLUTE] = "IS_ABSOLUTE", - [anon_sym_MATCHES] = "MATCHES", - [anon_sym_LESS] = "LESS", - [anon_sym_GREATER] = "GREATER", - [anon_sym_EQUAL] = "EQUAL", - [anon_sym_LESS_EQUAL] = "LESS_EQUAL", - [anon_sym_GREATER_EQUAL] = "GREATER_EQUAL", - [anon_sym_STRLESS] = "STRLESS", - [anon_sym_STRGREATER] = "STRGREATER", - [anon_sym_STREQUAL] = "STREQUAL", - [anon_sym_STRLESS_EQUAL] = "STRLESS_EQUAL", - [anon_sym_STRGREATER_EQUAL] = "STRGREATER_EQUAL", - [anon_sym_VERSION_LESS] = "VERSION_LESS", - [anon_sym_VERSION_GREATER] = "VERSION_GREATER", - [anon_sym_VERSION_EQUAL] = "VERSION_EQUAL", - [anon_sym_VERSION_LESS_EQUAL] = "VERSION_LESS_EQUAL", - [anon_sym_VERSION_GREATER_EQUAL] = "VERSION_GREATER_EQUAL", [anon_sym_RPAREN] = ")", - [anon_sym_IN] = "IN", - [anon_sym_RANGE] = "RANGE", - [anon_sym_ZIP_LISTS] = "ZIP_LISTS", - [anon_sym_LISTS] = "LISTS", - [anon_sym_ITEMS] = "ITEMS", - [anon_sym_FATAL_ERROR] = "FATAL_ERROR", - [anon_sym_SEND_ERROR] = "SEND_ERROR", - [anon_sym_WARNING] = "WARNING", - [anon_sym_AUTHOR_WARNING] = "AUTHOR_WARNING", - [anon_sym_DEPRECATION] = "DEPRECATION", - [anon_sym_NOTICE] = "NOTICE", - [anon_sym_STATUS] = "STATUS", - [anon_sym_VERBOSE] = "VERBOSE", - [anon_sym_DEBUG] = "DEBUG", - [anon_sym_TRACE] = "TRACE", - [anon_sym_CHECK_START] = "CHECK_START", - [anon_sym_CHECK_PASS] = "CHECK_PASS", - [anon_sym_CHECK_FAIL] = "CHECK_FAIL", [sym_if] = "if", [sym_elseif] = "elseif", [sym_else] = "else", @@ -255,7 +119,6 @@ static const char * const ts_symbol_names[] = { [sym_endfunction] = "endfunction", [sym_macro] = "macro", [sym_endmacro] = "endmacro", - [sym_message] = "message", [sym_identifier] = "identifier", [sym_bracket_argument] = "bracket_argument", [sym_bracket_comment] = "bracket_comment", @@ -289,7 +152,6 @@ static const char * const ts_symbol_names[] = { [sym_macro_command] = "macro_command", [sym_endmacro_command] = "endmacro_command", [sym_macro_def] = "macro_def", - [sym_message_command] = "message_command", [sym_normal_command] = "normal_command", [sym__command_invocation] = "_command_invocation", [aux_sym_source_file_repeat1] = "source_file_repeat1", @@ -298,9 +160,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_unquoted_argument_repeat1] = "unquoted_argument_repeat1", [aux_sym_if_command_repeat1] = "if_command_repeat1", [aux_sym_if_condition_repeat1] = "if_condition_repeat1", - [aux_sym_foreach_command_repeat1] = "foreach_command_repeat1", [aux_sym_function_command_repeat1] = "function_command_repeat1", - [aux_sym_message_command_repeat1] = "message_command_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -320,69 +180,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_quoted_element_token1] = aux_sym_quoted_element_token1, [aux_sym_unquoted_argument_token1] = aux_sym_unquoted_argument_token1, [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_1] = anon_sym_1, - [anon_sym_ON] = anon_sym_ON, - [anon_sym_YES] = anon_sym_YES, - [anon_sym_TRUE] = anon_sym_TRUE, - [anon_sym_Y] = anon_sym_Y, - [anon_sym_0] = anon_sym_0, - [anon_sym_OFF] = anon_sym_OFF, - [anon_sym_NO] = anon_sym_NO, - [anon_sym_FALSE] = anon_sym_FALSE, - [anon_sym_N] = anon_sym_N, - [anon_sym_IGNORE] = anon_sym_IGNORE, - [anon_sym_NOTFOUND] = anon_sym_NOTFOUND, - [anon_sym_NOT] = anon_sym_NOT, - [anon_sym_AND] = anon_sym_AND, - [anon_sym_OR] = anon_sym_OR, - [anon_sym_COMMAND] = anon_sym_COMMAND, - [anon_sym_POLICY] = anon_sym_POLICY, - [anon_sym_TARGET] = anon_sym_TARGET, - [anon_sym_TEST] = anon_sym_TEST, - [anon_sym_DEFINED] = anon_sym_DEFINED, - [anon_sym_CACHE] = anon_sym_CACHE, - [anon_sym_ENV] = anon_sym_ENV, - [anon_sym_IN_LIST] = anon_sym_IN_LIST, - [anon_sym_EXISTS] = anon_sym_EXISTS, - [anon_sym_IS_NEWER_THAN] = anon_sym_IS_NEWER_THAN, - [anon_sym_IS_DIRECTORY] = anon_sym_IS_DIRECTORY, - [anon_sym_IS_SYMLINK] = anon_sym_IS_SYMLINK, - [anon_sym_IS_ABSOLUTE] = anon_sym_IS_ABSOLUTE, - [anon_sym_MATCHES] = anon_sym_MATCHES, - [anon_sym_LESS] = anon_sym_LESS, - [anon_sym_GREATER] = anon_sym_GREATER, - [anon_sym_EQUAL] = anon_sym_EQUAL, - [anon_sym_LESS_EQUAL] = anon_sym_LESS_EQUAL, - [anon_sym_GREATER_EQUAL] = anon_sym_GREATER_EQUAL, - [anon_sym_STRLESS] = anon_sym_STRLESS, - [anon_sym_STRGREATER] = anon_sym_STRGREATER, - [anon_sym_STREQUAL] = anon_sym_STREQUAL, - [anon_sym_STRLESS_EQUAL] = anon_sym_STRLESS_EQUAL, - [anon_sym_STRGREATER_EQUAL] = anon_sym_STRGREATER_EQUAL, - [anon_sym_VERSION_LESS] = anon_sym_VERSION_LESS, - [anon_sym_VERSION_GREATER] = anon_sym_VERSION_GREATER, - [anon_sym_VERSION_EQUAL] = anon_sym_VERSION_EQUAL, - [anon_sym_VERSION_LESS_EQUAL] = anon_sym_VERSION_LESS_EQUAL, - [anon_sym_VERSION_GREATER_EQUAL] = anon_sym_VERSION_GREATER_EQUAL, [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_IN] = anon_sym_IN, - [anon_sym_RANGE] = anon_sym_RANGE, - [anon_sym_ZIP_LISTS] = anon_sym_ZIP_LISTS, - [anon_sym_LISTS] = anon_sym_LISTS, - [anon_sym_ITEMS] = anon_sym_ITEMS, - [anon_sym_FATAL_ERROR] = anon_sym_FATAL_ERROR, - [anon_sym_SEND_ERROR] = anon_sym_SEND_ERROR, - [anon_sym_WARNING] = anon_sym_WARNING, - [anon_sym_AUTHOR_WARNING] = anon_sym_AUTHOR_WARNING, - [anon_sym_DEPRECATION] = anon_sym_DEPRECATION, - [anon_sym_NOTICE] = anon_sym_NOTICE, - [anon_sym_STATUS] = anon_sym_STATUS, - [anon_sym_VERBOSE] = anon_sym_VERBOSE, - [anon_sym_DEBUG] = anon_sym_DEBUG, - [anon_sym_TRACE] = anon_sym_TRACE, - [anon_sym_CHECK_START] = anon_sym_CHECK_START, - [anon_sym_CHECK_PASS] = anon_sym_CHECK_PASS, - [anon_sym_CHECK_FAIL] = anon_sym_CHECK_FAIL, [sym_if] = sym_if, [sym_elseif] = sym_elseif, [sym_else] = sym_else, @@ -395,7 +193,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_endfunction] = sym_endfunction, [sym_macro] = sym_macro, [sym_endmacro] = sym_endmacro, - [sym_message] = sym_message, [sym_identifier] = sym_identifier, [sym_bracket_argument] = sym_bracket_argument, [sym_bracket_comment] = sym_bracket_comment, @@ -429,7 +226,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_macro_command] = sym_macro_command, [sym_endmacro_command] = sym_endmacro_command, [sym_macro_def] = sym_macro_def, - [sym_message_command] = sym_message_command, [sym_normal_command] = sym_normal_command, [sym__command_invocation] = sym__command_invocation, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, @@ -438,9 +234,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_unquoted_argument_repeat1] = aux_sym_unquoted_argument_repeat1, [aux_sym_if_command_repeat1] = aux_sym_if_command_repeat1, [aux_sym_if_condition_repeat1] = aux_sym_if_condition_repeat1, - [aux_sym_foreach_command_repeat1] = aux_sym_foreach_command_repeat1, [aux_sym_function_command_repeat1] = aux_sym_function_command_repeat1, - [aux_sym_message_command_repeat1] = aux_sym_message_command_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -508,258 +302,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_1] = { - .visible = true, - .named = false, - }, - [anon_sym_ON] = { - .visible = true, - .named = false, - }, - [anon_sym_YES] = { - .visible = true, - .named = false, - }, - [anon_sym_TRUE] = { - .visible = true, - .named = false, - }, - [anon_sym_Y] = { - .visible = true, - .named = false, - }, - [anon_sym_0] = { - .visible = true, - .named = false, - }, - [anon_sym_OFF] = { - .visible = true, - .named = false, - }, - [anon_sym_NO] = { - .visible = true, - .named = false, - }, - [anon_sym_FALSE] = { - .visible = true, - .named = false, - }, - [anon_sym_N] = { - .visible = true, - .named = false, - }, - [anon_sym_IGNORE] = { - .visible = true, - .named = false, - }, - [anon_sym_NOTFOUND] = { - .visible = true, - .named = false, - }, - [anon_sym_NOT] = { - .visible = true, - .named = false, - }, - [anon_sym_AND] = { - .visible = true, - .named = false, - }, - [anon_sym_OR] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMAND] = { - .visible = true, - .named = false, - }, - [anon_sym_POLICY] = { - .visible = true, - .named = false, - }, - [anon_sym_TARGET] = { - .visible = true, - .named = false, - }, - [anon_sym_TEST] = { - .visible = true, - .named = false, - }, - [anon_sym_DEFINED] = { - .visible = true, - .named = false, - }, - [anon_sym_CACHE] = { - .visible = true, - .named = false, - }, - [anon_sym_ENV] = { - .visible = true, - .named = false, - }, - [anon_sym_IN_LIST] = { - .visible = true, - .named = false, - }, - [anon_sym_EXISTS] = { - .visible = true, - .named = false, - }, - [anon_sym_IS_NEWER_THAN] = { - .visible = true, - .named = false, - }, - [anon_sym_IS_DIRECTORY] = { - .visible = true, - .named = false, - }, - [anon_sym_IS_SYMLINK] = { - .visible = true, - .named = false, - }, - [anon_sym_IS_ABSOLUTE] = { - .visible = true, - .named = false, - }, - [anon_sym_MATCHES] = { - .visible = true, - .named = false, - }, - [anon_sym_LESS] = { - .visible = true, - .named = false, - }, - [anon_sym_GREATER] = { - .visible = true, - .named = false, - }, - [anon_sym_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_LESS_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_GREATER_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_STRLESS] = { - .visible = true, - .named = false, - }, - [anon_sym_STRGREATER] = { - .visible = true, - .named = false, - }, - [anon_sym_STREQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_STRLESS_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_STRGREATER_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_VERSION_LESS] = { - .visible = true, - .named = false, - }, - [anon_sym_VERSION_GREATER] = { - .visible = true, - .named = false, - }, - [anon_sym_VERSION_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_VERSION_LESS_EQUAL] = { - .visible = true, - .named = false, - }, - [anon_sym_VERSION_GREATER_EQUAL] = { - .visible = true, - .named = false, - }, [anon_sym_RPAREN] = { .visible = true, .named = false, }, - [anon_sym_IN] = { - .visible = true, - .named = false, - }, - [anon_sym_RANGE] = { - .visible = true, - .named = false, - }, - [anon_sym_ZIP_LISTS] = { - .visible = true, - .named = false, - }, - [anon_sym_LISTS] = { - .visible = true, - .named = false, - }, - [anon_sym_ITEMS] = { - .visible = true, - .named = false, - }, - [anon_sym_FATAL_ERROR] = { - .visible = true, - .named = false, - }, - [anon_sym_SEND_ERROR] = { - .visible = true, - .named = false, - }, - [anon_sym_WARNING] = { - .visible = true, - .named = false, - }, - [anon_sym_AUTHOR_WARNING] = { - .visible = true, - .named = false, - }, - [anon_sym_DEPRECATION] = { - .visible = true, - .named = false, - }, - [anon_sym_NOTICE] = { - .visible = true, - .named = false, - }, - [anon_sym_STATUS] = { - .visible = true, - .named = false, - }, - [anon_sym_VERBOSE] = { - .visible = true, - .named = false, - }, - [anon_sym_DEBUG] = { - .visible = true, - .named = false, - }, - [anon_sym_TRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_CHECK_START] = { - .visible = true, - .named = false, - }, - [anon_sym_CHECK_PASS] = { - .visible = true, - .named = false, - }, - [anon_sym_CHECK_FAIL] = { - .visible = true, - .named = false, - }, [sym_if] = { .visible = true, .named = true, @@ -808,10 +354,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_message] = { - .visible = true, - .named = true, - }, [sym_identifier] = { .visible = true, .named = true, @@ -944,10 +486,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_message_command] = { - .visible = true, - .named = true, - }, [sym_normal_command] = { .visible = true, .named = true, @@ -980,18 +518,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_foreach_command_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_function_command_repeat1] = { .visible = false, .named = false, }, - [aux_sym_message_command_repeat1] = { - .visible = false, - .named = false, - }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -1007,19 +537,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(273); - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(297); - if (lookahead == '(') ADVANCE(318); - if (lookahead == ')') ADVANCE(365); - if (lookahead == '0') ADVANCE(325); - if (lookahead == '1') ADVANCE(319); - if (lookahead == ';') ADVANCE(278); - if (lookahead == 'N') ADVANCE(329); - if (lookahead == 'Y') ADVANCE(323); - if (lookahead == '\\') ADVANCE(266); - if (lookahead == '{') ADVANCE(283); - if (lookahead == '}') ADVANCE(281); + if (eof) ADVANCE(17); + if (lookahead == '"') ADVANCE(29); + if (lookahead == '$') ADVANCE(34); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == ';') ADVANCE(22); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '{') ADVANCE(27); + if (lookahead == '}') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1028,2129 +554,912 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(279); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); if (lookahead != 0 && - lookahead != '#') ADVANCE(289); + lookahead != '#') ADVANCE(33); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(297); - if (lookahead == ')') ADVANCE(365); - if (lookahead == '0') ADVANCE(325); - if (lookahead == '1') ADVANCE(319); - if (lookahead == ';') ADVANCE(278); - if (lookahead == 'A') ADVANCE(309); - if (lookahead == 'C') ADVANCE(296); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'E') ADVANCE(311); - if (lookahead == 'F') ADVANCE(290); - if (lookahead == 'G') ADVANCE(314); - if (lookahead == 'I') ADVANCE(305); - if (lookahead == 'L') ADVANCE(299); - if (lookahead == 'M') ADVANCE(291); - if (lookahead == 'N') ADVANCE(330); - if (lookahead == 'O') ADVANCE(304); - if (lookahead == 'P') ADVANCE(312); - if (lookahead == 'S') ADVANCE(316); - if (lookahead == 'T') ADVANCE(292); - if (lookahead == 'V') ADVANCE(301); - if (lookahead == 'Y') ADVANCE(324); - if (lookahead == '\\') ADVANCE(266); + if (lookahead == '"') ADVANCE(29); + if (lookahead == '$') ADVANCE(34); + if (lookahead == ')') ADVANCE(36); + if (lookahead == ';') ADVANCE(22); + if (lookahead == '\\') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (lookahead != 0 && lookahead != '#' && - lookahead != '(') ADVANCE(289); + lookahead != '(') ADVANCE(33); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(297); - if (lookahead == ')') ADVANCE(365); - if (lookahead == ';') ADVANCE(278); - if (lookahead == 'A') ADVANCE(317); - if (lookahead == 'C') ADVANCE(306); - if (lookahead == 'D') ADVANCE(300); - if (lookahead == 'F') ADVANCE(293); - if (lookahead == 'N') ADVANCE(313); - if (lookahead == 'S') ADVANCE(302); - if (lookahead == 'T') ADVANCE(315); - if (lookahead == 'V') ADVANCE(303); - if (lookahead == 'W') ADVANCE(294); - if (lookahead == '\\') ADVANCE(266); + if (lookahead == '"') ADVANCE(29); + if (lookahead == '$') ADVANCE(32); + if (lookahead == ';') ADVANCE(22); + if (lookahead == '\\') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (lookahead != 0 && - lookahead != '#' && - lookahead != '(') ADVANCE(289); + lookahead == ' ') ADVANCE(31); + if (lookahead != 0) ADVANCE(30); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(297); - if (lookahead == ')') ADVANCE(365); - if (lookahead == ';') ADVANCE(278); - if (lookahead == 'I') ADVANCE(310); - if (lookahead == 'L') ADVANCE(308); - if (lookahead == 'R') ADVANCE(295); - if (lookahead == 'Z') ADVANCE(307); - if (lookahead == '\\') ADVANCE(266); + if (lookahead == ';') ADVANCE(22); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '}') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (lookahead != 0 && - lookahead != '#' && - lookahead != '(') ADVANCE(289); - END_STATE(); - case 4: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(297); - if (lookahead == ')') ADVANCE(365); - if (lookahead == ';') ADVANCE(278); - if (lookahead == '\\') ADVANCE(266); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) - if (lookahead != 0 && - lookahead != '#' && - lookahead != '(') ADVANCE(289); - END_STATE(); - case 5: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '$') ADVANCE(288); - if (lookahead == ';') ADVANCE(278); - if (lookahead == '\\') ADVANCE(266); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(287); - if (lookahead != 0) ADVANCE(286); - END_STATE(); - case 6: - if (lookahead == ';') ADVANCE(278); - if (lookahead == '\\') ADVANCE(266); - if (lookahead == '}') ADVANCE(281); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) if (lookahead == '+' || ('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(279); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + END_STATE(); + case 4: + if (lookahead == 'A') ADVANCE(5); + END_STATE(); + case 5: + if (lookahead == 'C') ADVANCE(7); + END_STATE(); + case 6: + if (lookahead == 'E') ADVANCE(28); END_STATE(); case 7: - if (lookahead == 'A') ADVANCE(34); + if (lookahead == 'H') ADVANCE(6); END_STATE(); case 8: - if (lookahead == 'A') ADVANCE(33); - if (lookahead == 'D') ADVANCE(107); - if (lookahead == 'N') ADVANCE(53); - if (lookahead == 'S') ADVANCE(256); + if (lookahead == 'N') ADVANCE(9); END_STATE(); case 9: - if (lookahead == 'A') ADVANCE(139); + if (lookahead == 'V') ADVANCE(26); END_STATE(); case 10: - if (lookahead == 'A') ADVANCE(113); - END_STATE(); - case 11: - if (lookahead == 'A') ADVANCE(225); - END_STATE(); - case 12: - if (lookahead == 'A') ADVANCE(38); - END_STATE(); - case 13: - if (lookahead == 'A') ADVANCE(104); - END_STATE(); - case 14: - if (lookahead == 'A') ADVANCE(114); - END_STATE(); - case 15: - if (lookahead == 'A') ADVANCE(137); - END_STATE(); - case 16: - if (lookahead == 'A') ADVANCE(115); - END_STATE(); - case 17: - if (lookahead == 'A') ADVANCE(116); - END_STATE(); - case 18: - if (lookahead == 'A') ADVANCE(117); - END_STATE(); - case 19: - if (lookahead == 'A') ADVANCE(118); - END_STATE(); - case 20: - if (lookahead == 'A') ADVANCE(119); - END_STATE(); - case 21: - if (lookahead == 'A') ADVANCE(222); - END_STATE(); - case 22: - if (lookahead == 'A') ADVANCE(120); - END_STATE(); - case 23: - if (lookahead == 'A') ADVANCE(121); - END_STATE(); - case 24: - if (lookahead == 'A') ADVANCE(232); - END_STATE(); - case 25: - if (lookahead == 'A') ADVANCE(129); - END_STATE(); - case 26: - if (lookahead == 'A') ADVANCE(183); - END_STATE(); - case 27: - if (lookahead == 'A') ADVANCE(227); - END_STATE(); - case 28: - if (lookahead == 'A') ADVANCE(212); - END_STATE(); - case 29: - if (lookahead == 'A') ADVANCE(230); - END_STATE(); - case 30: - if (lookahead == 'A') ADVANCE(188); - END_STATE(); - case 31: - if (lookahead == 'B') ADVANCE(237); - if (lookahead == 'P') ADVANCE(185); - END_STATE(); - case 32: - if (lookahead == 'B') ADVANCE(158); - END_STATE(); - case 33: - if (lookahead == 'B') ADVANCE(205); - END_STATE(); - case 34: - if (lookahead == 'C') ADVANCE(93); - END_STATE(); - case 35: - if (lookahead == 'C') ADVANCE(254); - END_STATE(); - case 36: - if (lookahead == 'C') ADVANCE(112); - END_STATE(); - case 37: - if (lookahead == 'C') ADVANCE(231); - END_STATE(); - case 38: - if (lookahead == 'C') ADVANCE(56); - END_STATE(); - case 39: - if (lookahead == 'C') ADVANCE(57); - END_STATE(); - case 40: - if (lookahead == 'C') ADVANCE(94); - END_STATE(); - case 41: - if (lookahead == 'C') ADVANCE(95); - END_STATE(); - case 42: - if (lookahead == 'C') ADVANCE(24); - END_STATE(); - case 43: - if (lookahead == 'D') ADVANCE(334); - END_STATE(); - case 44: - if (lookahead == 'D') ADVANCE(336); - END_STATE(); - case 45: - if (lookahead == 'D') ADVANCE(340); - END_STATE(); - case 46: - if (lookahead == 'D') ADVANCE(332); - END_STATE(); - case 47: - if (lookahead == 'D') ADVANCE(262); - END_STATE(); - case 48: - if (lookahead == 'E') ADVANCE(284); - END_STATE(); - case 49: - if (lookahead == 'E') ADVANCE(160); - if (lookahead == 'G') ADVANCE(190); - if (lookahead == 'L') ADVANCE(73); - END_STATE(); - case 50: - if (lookahead == 'E') ADVANCE(322); - END_STATE(); - case 51: - if (lookahead == 'E') ADVANCE(341); - END_STATE(); - case 52: - if (lookahead == 'E') ADVANCE(328); - END_STATE(); - case 53: - if (lookahead == 'E') ADVANCE(253); - END_STATE(); - case 54: - if (lookahead == 'E') ADVANCE(331); - END_STATE(); - case 55: - if (lookahead == 'E') ADVANCE(348); - END_STATE(); - case 56: - if (lookahead == 'E') ADVANCE(380); - END_STATE(); - case 57: - if (lookahead == 'E') ADVANCE(376); - END_STATE(); - case 58: - if (lookahead == 'E') ADVANCE(378); - END_STATE(); - case 59: - if (lookahead == 'E') ADVANCE(367); - END_STATE(); - case 60: - if (lookahead == 'E') ADVANCE(11); - END_STATE(); - case 61: - if (lookahead == 'E') ADVANCE(37); - END_STATE(); - case 62: - if (lookahead == 'E') ADVANCE(45); - END_STATE(); - case 63: - if (lookahead == 'E') ADVANCE(36); - END_STATE(); - case 64: - if (lookahead == 'E') ADVANCE(133); - END_STATE(); - case 65: - if (lookahead == 'E') ADVANCE(217); - END_STATE(); - case 66: - if (lookahead == 'E') ADVANCE(42); - END_STATE(); - case 67: - if (lookahead == 'E') ADVANCE(170); - END_STATE(); - case 68: - if (lookahead == 'E') ADVANCE(177); - END_STATE(); - case 69: - if (lookahead == 'E') ADVANCE(171); - END_STATE(); - case 70: - if (lookahead == 'E') ADVANCE(195); - END_STATE(); - case 71: - if (lookahead == 'E') ADVANCE(172); - END_STATE(); - case 72: - if (lookahead == 'E') ADVANCE(184); - END_STATE(); - case 73: - if (lookahead == 'E') ADVANCE(210); - END_STATE(); - case 74: - if (lookahead == 'E') ADVANCE(211); - END_STATE(); - case 75: - if (lookahead == 'E') ADVANCE(27); - END_STATE(); - case 76: - if (lookahead == 'E') ADVANCE(29); - END_STATE(); - case 77: - if (lookahead == 'E') ADVANCE(161); - END_STATE(); - case 78: - if (lookahead == 'E') ADVANCE(189); - END_STATE(); - case 79: - if (lookahead == 'E') ADVANCE(162); - END_STATE(); - case 80: - if (lookahead == 'E') ADVANCE(163); - END_STATE(); - case 81: - if (lookahead == 'E') ADVANCE(164); - if (lookahead == 'G') ADVANCE(191); - if (lookahead == 'L') ADVANCE(74); - END_STATE(); - case 82: - if (lookahead == 'E') ADVANCE(165); - END_STATE(); - case 83: - if (lookahead == 'E') ADVANCE(166); - END_STATE(); - case 84: - if (lookahead == 'E') ADVANCE(167); - END_STATE(); - case 85: - if (lookahead == 'F') ADVANCE(326); - END_STATE(); - case 86: - if (lookahead == 'F') ADVANCE(99); - END_STATE(); - case 87: - if (lookahead == 'F') ADVANCE(13); - if (lookahead == 'P') ADVANCE(28); - if (lookahead == 'S') ADVANCE(233); - END_STATE(); - case 88: - if (lookahead == 'G') ADVANCE(379); - END_STATE(); - case 89: - if (lookahead == 'G') ADVANCE(373); - END_STATE(); - case 90: - if (lookahead == 'G') ADVANCE(374); - END_STATE(); - case 91: - if (lookahead == 'G') ADVANCE(65); - END_STATE(); - case 92: - if (lookahead == 'G') ADVANCE(59); - END_STATE(); - case 93: - if (lookahead == 'H') ADVANCE(48); - END_STATE(); - case 94: - if (lookahead == 'H') ADVANCE(51); - END_STATE(); - case 95: - if (lookahead == 'H') ADVANCE(70); - END_STATE(); - case 96: - if (lookahead == 'H') ADVANCE(15); - END_STATE(); - case 97: - if (lookahead == 'H') ADVANCE(155); - END_STATE(); - case 98: - if (lookahead == 'I') ADVANCE(35); - END_STATE(); - case 99: - if (lookahead == 'I') ADVANCE(145); - END_STATE(); - case 100: - if (lookahead == 'I') ADVANCE(151); - END_STATE(); - case 101: - if (lookahead == 'I') ADVANCE(136); - END_STATE(); - case 102: - if (lookahead == 'I') ADVANCE(141); - END_STATE(); - case 103: - if (lookahead == 'I') ADVANCE(143); - END_STATE(); - case 104: - if (lookahead == 'I') ADVANCE(122); - END_STATE(); - case 105: - if (lookahead == 'I') ADVANCE(204); - END_STATE(); - case 106: - if (lookahead == 'I') ADVANCE(154); - END_STATE(); - case 107: - if (lookahead == 'I') ADVANCE(182); - END_STATE(); - case 108: - if (lookahead == 'I') ADVANCE(39); - END_STATE(); - case 109: - if (lookahead == 'I') ADVANCE(209); - END_STATE(); - case 110: - if (lookahead == 'I') ADVANCE(215); - END_STATE(); - case 111: - if (lookahead == 'K') ADVANCE(347); - END_STATE(); - case 112: - if (lookahead == 'K') ADVANCE(258); - END_STATE(); - case 113: - if (lookahead == 'L') ADVANCE(352); - END_STATE(); - case 114: - if (lookahead == 'L') ADVANCE(357); - END_STATE(); - case 115: - if (lookahead == 'L') ADVANCE(353); - END_STATE(); - case 116: - if (lookahead == 'L') ADVANCE(354); - END_STATE(); - case 117: - if (lookahead == 'L') ADVANCE(358); - END_STATE(); - case 118: - if (lookahead == 'L') ADVANCE(362); - END_STATE(); - case 119: - if (lookahead == 'L') ADVANCE(359); - END_STATE(); - case 120: - if (lookahead == 'L') ADVANCE(363); - END_STATE(); - case 121: - if (lookahead == 'L') ADVANCE(364); - END_STATE(); - case 122: - if (lookahead == 'L') ADVANCE(383); - END_STATE(); - case 123: - if (lookahead == 'L') ADVANCE(98); - END_STATE(); - case 124: - if (lookahead == 'L') ADVANCE(243); - END_STATE(); - case 125: - if (lookahead == 'L') ADVANCE(206); - END_STATE(); - case 126: - if (lookahead == 'L') ADVANCE(101); - END_STATE(); - case 127: - if (lookahead == 'L') ADVANCE(109); - END_STATE(); - case 128: - if (lookahead == 'L') ADVANCE(110); - END_STATE(); - case 129: - if (lookahead == 'L') ADVANCE(265); - END_STATE(); - case 130: - if (lookahead == 'M') ADVANCE(131); - END_STATE(); - case 131: - if (lookahead == 'M') ADVANCE(9); - END_STATE(); - case 132: - if (lookahead == 'M') ADVANCE(126); - END_STATE(); - case 133: - if (lookahead == 'M') ADVANCE(200); - END_STATE(); - case 134: - if (lookahead == 'N') ADVANCE(250); - END_STATE(); - case 135: - if (lookahead == 'N') ADVANCE(150); - END_STATE(); - case 136: - if (lookahead == 'N') ADVANCE(111); - END_STATE(); - case 137: - if (lookahead == 'N') ADVANCE(345); - END_STATE(); - case 138: - if (lookahead == 'N') ADVANCE(375); - END_STATE(); - case 139: - if (lookahead == 'N') ADVANCE(44); - END_STATE(); - case 140: - if (lookahead == 'N') ADVANCE(263); - END_STATE(); - case 141: - if (lookahead == 'N') ADVANCE(89); - END_STATE(); - case 142: - if (lookahead == 'N') ADVANCE(46); - END_STATE(); - case 143: - if (lookahead == 'N') ADVANCE(90); - END_STATE(); - case 144: - if (lookahead == 'N') ADVANCE(47); - END_STATE(); - case 145: - if (lookahead == 'N') ADVANCE(62); - END_STATE(); - case 146: - if (lookahead == 'N') ADVANCE(92); - END_STATE(); - case 147: - if (lookahead == 'N') ADVANCE(102); - END_STATE(); - case 148: - if (lookahead == 'N') ADVANCE(103); - END_STATE(); - case 149: - if (lookahead == 'O') ADVANCE(239); - END_STATE(); - case 150: - if (lookahead == 'O') ADVANCE(181); - END_STATE(); - case 151: - if (lookahead == 'O') ADVANCE(140); - END_STATE(); - case 152: - if (lookahead == 'O') ADVANCE(124); - END_STATE(); - case 153: - if (lookahead == 'O') ADVANCE(176); - END_STATE(); - case 154: - if (lookahead == 'O') ADVANCE(138); - END_STATE(); - case 155: - if (lookahead == 'O') ADVANCE(179); - END_STATE(); - case 156: - if (lookahead == 'O') ADVANCE(173); - END_STATE(); - case 157: - if (lookahead == 'O') ADVANCE(174); - END_STATE(); - case 158: - if (lookahead == 'O') ADVANCE(213); - END_STATE(); - case 159: - if (lookahead == 'P') ADVANCE(264); - END_STATE(); - case 160: - if (lookahead == 'Q') ADVANCE(241); - END_STATE(); - case 161: - if (lookahead == 'Q') ADVANCE(242); - END_STATE(); - case 162: - if (lookahead == 'Q') ADVANCE(244); - END_STATE(); - case 163: - if (lookahead == 'Q') ADVANCE(245); - END_STATE(); - case 164: - if (lookahead == 'Q') ADVANCE(246); - END_STATE(); - case 165: - if (lookahead == 'Q') ADVANCE(247); - END_STATE(); - case 166: - if (lookahead == 'Q') ADVANCE(248); - END_STATE(); - case 167: - if (lookahead == 'Q') ADVANCE(249); - END_STATE(); - case 168: - if (lookahead == 'R') ADVANCE(49); - END_STATE(); - case 169: - if (lookahead == 'R') ADVANCE(91); - END_STATE(); - case 170: - if (lookahead == 'R') ADVANCE(351); - END_STATE(); - case 171: - if (lookahead == 'R') ADVANCE(356); - END_STATE(); - case 172: - if (lookahead == 'R') ADVANCE(361); - END_STATE(); - case 173: - if (lookahead == 'R') ADVANCE(372); - END_STATE(); - case 174: - if (lookahead == 'R') ADVANCE(371); - END_STATE(); - case 175: - if (lookahead == 'R') ADVANCE(32); - END_STATE(); - case 176: - if (lookahead == 'R') ADVANCE(255); - END_STATE(); - case 177: - if (lookahead == 'R') ADVANCE(261); - END_STATE(); - case 178: - if (lookahead == 'R') ADVANCE(207); - END_STATE(); - case 179: - if (lookahead == 'R') ADVANCE(259); - END_STATE(); - case 180: - if (lookahead == 'R') ADVANCE(147); - END_STATE(); - case 181: - if (lookahead == 'R') ADVANCE(54); - END_STATE(); - case 182: - if (lookahead == 'R') ADVANCE(61); - END_STATE(); - case 183: - if (lookahead == 'R') ADVANCE(219); - END_STATE(); - case 184: - if (lookahead == 'R') ADVANCE(186); - END_STATE(); - case 185: - if (lookahead == 'R') ADVANCE(66); - END_STATE(); - case 186: - if (lookahead == 'R') ADVANCE(156); - END_STATE(); - case 187: - if (lookahead == 'R') ADVANCE(157); - END_STATE(); - case 188: - if (lookahead == 'R') ADVANCE(148); - END_STATE(); - case 189: - if (lookahead == 'R') ADVANCE(187); - END_STATE(); - case 190: - if (lookahead == 'R') ADVANCE(75); - END_STATE(); - case 191: - if (lookahead == 'R') ADVANCE(76); - END_STATE(); - case 192: - if (lookahead == 'S') ADVANCE(321); - END_STATE(); - case 193: - if (lookahead == 'S') ADVANCE(350); - END_STATE(); - case 194: - if (lookahead == 'S') ADVANCE(344); - END_STATE(); - case 195: - if (lookahead == 'S') ADVANCE(349); - END_STATE(); - case 196: - if (lookahead == 'S') ADVANCE(355); - END_STATE(); - case 197: - if (lookahead == 'S') ADVANCE(360); - END_STATE(); - case 198: - if (lookahead == 'S') ADVANCE(377); - END_STATE(); - case 199: - if (lookahead == 'S') ADVANCE(382); - END_STATE(); - case 200: - if (lookahead == 'S') ADVANCE(370); - END_STATE(); - case 201: - if (lookahead == 'S') ADVANCE(369); - END_STATE(); - case 202: - if (lookahead == 'S') ADVANCE(368); - END_STATE(); - case 203: - if (lookahead == 'S') ADVANCE(216); - END_STATE(); - case 204: - if (lookahead == 'S') ADVANCE(224); - END_STATE(); - case 205: - if (lookahead == 'S') ADVANCE(152); - END_STATE(); - case 206: - if (lookahead == 'S') ADVANCE(52); - END_STATE(); - case 207: - if (lookahead == 'S') ADVANCE(100); - END_STATE(); - case 208: - if (lookahead == 'S') ADVANCE(193); - END_STATE(); - case 209: - if (lookahead == 'S') ADVANCE(218); - END_STATE(); - case 210: - if (lookahead == 'S') ADVANCE(196); - END_STATE(); - case 211: - if (lookahead == 'S') ADVANCE(197); - END_STATE(); - case 212: - if (lookahead == 'S') ADVANCE(199); - END_STATE(); - case 213: - if (lookahead == 'S') ADVANCE(58); - END_STATE(); - case 214: - if (lookahead == 'S') ADVANCE(226); - END_STATE(); - case 215: - if (lookahead == 'S') ADVANCE(228); - END_STATE(); - case 216: - if (lookahead == 'T') ADVANCE(339); - END_STATE(); - case 217: - if (lookahead == 'T') ADVANCE(338); - END_STATE(); - case 218: - if (lookahead == 'T') ADVANCE(343); - END_STATE(); - case 219: - if (lookahead == 'T') ADVANCE(381); - END_STATE(); - case 220: - if (lookahead == 'T') ADVANCE(96); - END_STATE(); - case 221: - if (lookahead == 'T') ADVANCE(97); - END_STATE(); - case 222: - if (lookahead == 'T') ADVANCE(240); - END_STATE(); - case 223: - if (lookahead == 'T') ADVANCE(108); - END_STATE(); - case 224: - if (lookahead == 'T') ADVANCE(194); - END_STATE(); - case 225: - if (lookahead == 'T') ADVANCE(67); - END_STATE(); - case 226: - if (lookahead == 'T') ADVANCE(201); - END_STATE(); - case 227: - if (lookahead == 'T') ADVANCE(69); - END_STATE(); - case 228: - if (lookahead == 'T') ADVANCE(202); - END_STATE(); - case 229: - if (lookahead == 'T') ADVANCE(55); - END_STATE(); - case 230: - if (lookahead == 'T') ADVANCE(71); - END_STATE(); - case 231: - if (lookahead == 'T') ADVANCE(153); - END_STATE(); - case 232: - if (lookahead == 'T') ADVANCE(106); - END_STATE(); - case 233: - if (lookahead == 'T') ADVANCE(26); - END_STATE(); - case 234: - if (lookahead == 'T') ADVANCE(25); - END_STATE(); - case 235: - if (lookahead == 'T') ADVANCE(41); - END_STATE(); - case 236: - if (lookahead == 'U') ADVANCE(10); - END_STATE(); - case 237: - if (lookahead == 'U') ADVANCE(88); - END_STATE(); - case 238: - if (lookahead == 'U') ADVANCE(50); - END_STATE(); - case 239: - if (lookahead == 'U') ADVANCE(142); - END_STATE(); - case 240: - if (lookahead == 'U') ADVANCE(198); - END_STATE(); - case 241: - if (lookahead == 'U') ADVANCE(14); - END_STATE(); - case 242: - if (lookahead == 'U') ADVANCE(16); - END_STATE(); - case 243: - if (lookahead == 'U') ADVANCE(229); - END_STATE(); - case 244: - if (lookahead == 'U') ADVANCE(17); - END_STATE(); - case 245: - if (lookahead == 'U') ADVANCE(18); - END_STATE(); - case 246: - if (lookahead == 'U') ADVANCE(19); - END_STATE(); - case 247: - if (lookahead == 'U') ADVANCE(20); - END_STATE(); - case 248: - if (lookahead == 'U') ADVANCE(22); - END_STATE(); - case 249: - if (lookahead == 'U') ADVANCE(23); - END_STATE(); - case 250: - if (lookahead == 'V') ADVANCE(282); - END_STATE(); - case 251: - if (lookahead == 'V') ADVANCE(342); - END_STATE(); - case 252: - if (lookahead == 'W') ADVANCE(30); - END_STATE(); - case 253: - if (lookahead == 'W') ADVANCE(68); - END_STATE(); - case 254: - if (lookahead == 'Y') ADVANCE(337); - END_STATE(); - case 255: - if (lookahead == 'Y') ADVANCE(346); - END_STATE(); - case 256: - if (lookahead == 'Y') ADVANCE(132); - END_STATE(); - case 257: - if (lookahead == '_') ADVANCE(8); - END_STATE(); - case 258: - if (lookahead == '_') ADVANCE(87); - END_STATE(); - case 259: - if (lookahead == '_') ADVANCE(252); - END_STATE(); - case 260: - if (lookahead == '_') ADVANCE(127); - END_STATE(); - case 261: - if (lookahead == '_') ADVANCE(220); - END_STATE(); - case 262: - if (lookahead == '_') ADVANCE(72); - END_STATE(); - case 263: - if (lookahead == '_') ADVANCE(81); - END_STATE(); - case 264: - if (lookahead == '_') ADVANCE(128); - END_STATE(); - case 265: - if (lookahead == '_') ADVANCE(78); - END_STATE(); - case 266: - if (lookahead == 'n') ADVANCE(277); - if (lookahead == 'r') ADVANCE(276); - if (lookahead == 't') ADVANCE(275); + if (lookahead == 'n') ADVANCE(21); + if (lookahead == 'r') ADVANCE(20); + if (lookahead == 't') ADVANCE(19); if (lookahead != 0 && (lookahead < '0' || '9' < lookahead) && lookahead != ';' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(274); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(18); END_STATE(); - case 267: + case 11: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(435); + lookahead == 'e') ADVANCE(83); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(267) + lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 268: + case 12: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(441); + lookahead == 'e') ADVANCE(90); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(268) + lookahead == ' ') SKIP(12) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 269: + case 13: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(442); + lookahead == 'e') ADVANCE(91); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(269) + lookahead == ' ') SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 270: + case 14: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(443); + lookahead == 'e') ADVANCE(92); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(270) + lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 271: + case 15: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(444); + lookahead == 'e') ADVANCE(93); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(271) + lookahead == ' ') SKIP(15) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 272: - if (eof) ADVANCE(273); - if (lookahead == '{') ADVANCE(283); - if (lookahead == '}') ADVANCE(281); + case 16: + if (eof) ADVANCE(17); + if (lookahead == '{') ADVANCE(27); + if (lookahead == '}') ADVANCE(25); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(446); + lookahead == 'f') ADVANCE(95); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(69); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(397); + lookahead == 'm') ADVANCE(49); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(425); + lookahead == 'w') ADVANCE(74); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(272) + lookahead == ' ') SKIP(16) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 273: + case 17: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 274: + case 18: ACCEPT_TOKEN(sym__escape_identity); END_STATE(); - case 275: + case 19: ACCEPT_TOKEN(anon_sym_BSLASHt); END_STATE(); - case 276: + case 20: ACCEPT_TOKEN(anon_sym_BSLASHr); END_STATE(); - case 277: + case 21: ACCEPT_TOKEN(anon_sym_BSLASHn); END_STATE(); - case 278: + case 22: ACCEPT_TOKEN(sym__escape_semicolon); END_STATE(); - case 279: + case 23: ACCEPT_TOKEN(aux_sym_variable_token1); END_STATE(); - case 280: + case 24: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 281: + case 25: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 282: + case 26: ACCEPT_TOKEN(anon_sym_DOLLARENV); END_STATE(); - case 283: + case 27: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 284: + case 28: ACCEPT_TOKEN(anon_sym_DOLLARCACHE); END_STATE(); - case 285: + case 29: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 286: + case 30: ACCEPT_TOKEN(aux_sym_quoted_element_token1); END_STATE(); - case 287: + case 31: ACCEPT_TOKEN(aux_sym_quoted_element_token1); - if (lookahead == '$') ADVANCE(288); - if (lookahead == ';') ADVANCE(278); + if (lookahead == '$') ADVANCE(32); + if (lookahead == ';') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(287); + lookahead == ' ') ADVANCE(31); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(286); + lookahead != '\\') ADVANCE(30); END_STATE(); - case 288: + case 32: ACCEPT_TOKEN(aux_sym_quoted_element_token1); - if (lookahead == 'C') ADVANCE(7); - if (lookahead == 'E') ADVANCE(134); - if (lookahead == '{') ADVANCE(280); + if (lookahead == 'C') ADVANCE(4); + if (lookahead == 'E') ADVANCE(8); + if (lookahead == '{') ADVANCE(24); END_STATE(); - case 289: + case 33: ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); END_STATE(); - case 290: + case 34: ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(125); + if (lookahead == 'C') ADVANCE(4); + if (lookahead == 'E') ADVANCE(8); + if (lookahead == '{') ADVANCE(24); END_STATE(); - case 291: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(235); - END_STATE(); - case 292: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(169); - if (lookahead == 'E') ADVANCE(203); - if (lookahead == 'R') ADVANCE(238); - END_STATE(); - case 293: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(234); - END_STATE(); - case 294: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(180); - END_STATE(); - case 295: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(146); - END_STATE(); - case 296: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'A') ADVANCE(40); - if (lookahead == 'O') ADVANCE(130); - END_STATE(); - case 297: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'C') ADVANCE(7); - if (lookahead == 'E') ADVANCE(134); - if (lookahead == '{') ADVANCE(280); - END_STATE(); - case 298: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(86); - END_STATE(); - case 299: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(208); - END_STATE(); - case 300: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(31); - END_STATE(); - case 301: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(178); - END_STATE(); - case 302: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(144); - if (lookahead == 'T') ADVANCE(21); - END_STATE(); - case 303: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'E') ADVANCE(175); - END_STATE(); - case 304: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'F') ADVANCE(85); - if (lookahead == 'N') ADVANCE(320); - if (lookahead == 'R') ADVANCE(335); - END_STATE(); - case 305: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'G') ADVANCE(135); - if (lookahead == 'N') ADVANCE(260); - if (lookahead == 'S') ADVANCE(257); - END_STATE(); - case 306: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'H') ADVANCE(63); - END_STATE(); - case 307: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'I') ADVANCE(159); - END_STATE(); - case 308: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'I') ADVANCE(214); - END_STATE(); - case 309: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'N') ADVANCE(43); - END_STATE(); - case 310: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'N') ADVANCE(366); - if (lookahead == 'T') ADVANCE(64); - END_STATE(); - case 311: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'N') ADVANCE(251); - if (lookahead == 'Q') ADVANCE(236); - if (lookahead == 'X') ADVANCE(105); - END_STATE(); - case 312: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'O') ADVANCE(123); - END_STATE(); - case 313: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'O') ADVANCE(223); - END_STATE(); - case 314: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'R') ADVANCE(60); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'R') ADVANCE(12); - END_STATE(); - case 316: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'T') ADVANCE(168); - END_STATE(); - case 317: - ACCEPT_TOKEN(aux_sym_unquoted_argument_token1); - if (lookahead == 'U') ADVANCE(221); - END_STATE(); - case 318: + case 35: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 319: - ACCEPT_TOKEN(anon_sym_1); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym_ON); - END_STATE(); - case 321: - ACCEPT_TOKEN(anon_sym_YES); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym_TRUE); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym_Y); - END_STATE(); - case 324: - ACCEPT_TOKEN(anon_sym_Y); - if (lookahead == 'E') ADVANCE(192); - END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_0); - END_STATE(); - case 326: - ACCEPT_TOKEN(anon_sym_OFF); - END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym_NO); - if (lookahead == 'T') ADVANCE(333); - END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_FALSE); - END_STATE(); - case 329: - ACCEPT_TOKEN(anon_sym_N); - END_STATE(); - case 330: - ACCEPT_TOKEN(anon_sym_N); - if (lookahead == 'O') ADVANCE(327); - END_STATE(); - case 331: - ACCEPT_TOKEN(anon_sym_IGNORE); - END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_NOTFOUND); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_NOT); - if (lookahead == 'F') ADVANCE(149); - END_STATE(); - case 334: - ACCEPT_TOKEN(anon_sym_AND); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_OR); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_COMMAND); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_POLICY); - END_STATE(); - case 338: - ACCEPT_TOKEN(anon_sym_TARGET); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_TEST); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_DEFINED); - END_STATE(); - case 341: - ACCEPT_TOKEN(anon_sym_CACHE); - END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_ENV); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_IN_LIST); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_EXISTS); - END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_IS_NEWER_THAN); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_IS_DIRECTORY); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_IS_SYMLINK); - END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym_IS_ABSOLUTE); - END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_MATCHES); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_LESS); - if (lookahead == '_') ADVANCE(77); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym_GREATER); - if (lookahead == '_') ADVANCE(79); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_EQUAL); - END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_LESS_EQUAL); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_GREATER_EQUAL); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_STRLESS); - if (lookahead == '_') ADVANCE(80); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_STRGREATER); - if (lookahead == '_') ADVANCE(82); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_STREQUAL); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_STRLESS_EQUAL); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_STRGREATER_EQUAL); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_VERSION_LESS); - if (lookahead == '_') ADVANCE(83); - END_STATE(); - case 361: - ACCEPT_TOKEN(anon_sym_VERSION_GREATER); - if (lookahead == '_') ADVANCE(84); - END_STATE(); - case 362: - ACCEPT_TOKEN(anon_sym_VERSION_EQUAL); - END_STATE(); - case 363: - ACCEPT_TOKEN(anon_sym_VERSION_LESS_EQUAL); - END_STATE(); - case 364: - ACCEPT_TOKEN(anon_sym_VERSION_GREATER_EQUAL); - END_STATE(); - case 365: + case 36: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_IN); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_RANGE); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_ZIP_LISTS); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym_LISTS); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_ITEMS); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_FATAL_ERROR); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_SEND_ERROR); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_WARNING); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_AUTHOR_WARNING); - END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_DEPRECATION); - END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_NOTICE); - END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_STATUS); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_VERBOSE); - END_STATE(); - case 379: - ACCEPT_TOKEN(anon_sym_DEBUG); - END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_TRACE); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_CHECK_START); - END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_CHECK_PASS); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_CHECK_FAIL); - END_STATE(); - case 384: + case 37: ACCEPT_TOKEN(sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 385: + case 38: ACCEPT_TOKEN(sym_elseif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 386: + case 39: ACCEPT_TOKEN(sym_else); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(421); + lookahead == 'i') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 387: + case 40: ACCEPT_TOKEN(sym_endif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 388: + case 41: ACCEPT_TOKEN(sym_foreach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 389: + case 42: ACCEPT_TOKEN(sym_endforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 390: + case 43: ACCEPT_TOKEN(sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 391: + case 44: ACCEPT_TOKEN(sym_endwhile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 392: + case 45: ACCEPT_TOKEN(sym_function); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 393: + case 46: ACCEPT_TOKEN(sym_endfunction); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 394: + case 47: ACCEPT_TOKEN(sym_macro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 395: + case 48: ACCEPT_TOKEN(sym_endmacro); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 396: - ACCEPT_TOKEN(sym_message); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 397: + case 49: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(404); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(456); + lookahead == 'a') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 398: + case 50: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(424); + lookahead == 'a') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 399: + case 51: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(403); + lookahead == 'a') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 400: + case 52: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(405); + lookahead == 'a') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 401: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(406); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 402: + case 53: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(459); + lookahead == 'c') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 403: + case 54: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(426); + lookahead == 'c') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 404: + case 55: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + lookahead == 'c') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 405: + case 56: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(427); + lookahead == 'c') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 406: + case 57: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(454); + lookahead == 'c') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 407: + case 58: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(460); + lookahead == 'c') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 408: + case 59: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(462); + lookahead == 'd') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 409: + case 60: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(437); + lookahead == 'd') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 410: + case 61: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(430); + lookahead == 'd') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 411: + case 62: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(423); + lookahead == 'd') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 412: + case 63: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(422); + lookahead == 'd') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 413: + case 64: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 414: + case 65: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(390); + lookahead == 'e') ADVANCE(39); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 415: + case 66: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(396); + lookahead == 'e') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 416: + case 67: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(386); + lookahead == 'e') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 417: + case 68: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(391); + lookahead == 'e') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 418: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 419: + case 69: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(384); + lookahead == 'f') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 420: + case 70: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(387); + lookahead == 'f') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 421: + case 71: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); + lookahead == 'f') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 422: + case 72: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(461); + lookahead == 'f') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 423: + case 73: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(451); + lookahead == 'f') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(415); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 425: + case 74: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(429); + lookahead == 'h') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 426: + case 75: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(388); + lookahead == 'h') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 427: + case 76: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(389); + lookahead == 'h') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 428: + case 77: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(433); + lookahead == 'h') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 429: + case 78: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(434); + lookahead == 'i') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 430: + case 79: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(420); + lookahead == 'i') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 431: + case 80: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(449); + lookahead == 'i') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 432: + case 81: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(450); + lookahead == 'i') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 433: + case 82: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(436); + lookahead == 'i') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 434: + case 83: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 435: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(458); + lookahead == 'l') ADVANCE(105); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(410); + lookahead == 'n') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 436: + case 84: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(417); + lookahead == 'l') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 437: + case 85: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + END_STATE(); + case 86: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(401); + lookahead == 'm') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 438: + case 87: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(392); + lookahead == 'n') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 439: + case 88: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(393); + lookahead == 'n') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 440: + case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(402); + lookahead == 'n') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 441: + case 90: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(411); + lookahead == 'n') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 442: + case 91: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(408); + lookahead == 'n') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 443: + case 92: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(409); + lookahead == 'n') ADVANCE(60); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 444: + case 93: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(412); + lookahead == 'n') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 445: + case 94: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(407); + lookahead == 'n') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 446: + case 95: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(452); + lookahead == 'o') ADVANCE(101); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(440); + lookahead == 'u') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 447: + case 96: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(394); + lookahead == 'o') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 448: + case 97: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(395); + lookahead == 'o') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 449: + case 98: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(438); + lookahead == 'o') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 450: + case 99: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(439); + lookahead == 'o') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 451: + case 100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(455); + lookahead == 'o') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 452: + case 101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(413); + lookahead == 'r') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 453: + case 102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(447); + lookahead == 'r') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 454: + case 103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(448); + lookahead == 'r') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 455: + case 104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(418); + lookahead == 'r') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 456: + case 105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(457); + lookahead == 's') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 457: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 458: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(416); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); - END_STATE(); - case 459: + case 106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(431); + lookahead == 't') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 460: + case 107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(432); + lookahead == 't') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 461: + case 108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(445); + lookahead == 'u') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 462: + case 109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(428); + lookahead == 'w') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); - case 463: + case 110: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); END_STATE(); default: return false; @@ -3159,20 +1468,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 272, .external_lex_state = 2}, - [2] = {.lex_state = 1, .external_lex_state = 1}, - [3] = {.lex_state = 1, .external_lex_state = 1}, - [4] = {.lex_state = 1, .external_lex_state = 1}, - [5] = {.lex_state = 1, .external_lex_state = 1}, - [6] = {.lex_state = 1, .external_lex_state = 1}, - [7] = {.lex_state = 1, .external_lex_state = 1}, - [8] = {.lex_state = 1, .external_lex_state = 1}, - [9] = {.lex_state = 1, .external_lex_state = 1}, - [10] = {.lex_state = 1, .external_lex_state = 1}, - [11] = {.lex_state = 1, .external_lex_state = 1}, - [12] = {.lex_state = 1, .external_lex_state = 1}, - [13] = {.lex_state = 1, .external_lex_state = 1}, - [14] = {.lex_state = 1, .external_lex_state = 1}, + [1] = {.lex_state = 16, .external_lex_state = 2}, + [2] = {.lex_state = 11, .external_lex_state = 2}, + [3] = {.lex_state = 11, .external_lex_state = 2}, + [4] = {.lex_state = 11, .external_lex_state = 2}, + [5] = {.lex_state = 11, .external_lex_state = 2}, + [6] = {.lex_state = 11, .external_lex_state = 2}, + [7] = {.lex_state = 11, .external_lex_state = 2}, + [8] = {.lex_state = 11, .external_lex_state = 2}, + [9] = {.lex_state = 11, .external_lex_state = 2}, + [10] = {.lex_state = 11, .external_lex_state = 2}, + [11] = {.lex_state = 11, .external_lex_state = 2}, + [12] = {.lex_state = 11, .external_lex_state = 2}, + [13] = {.lex_state = 11, .external_lex_state = 2}, + [14] = {.lex_state = 11, .external_lex_state = 2}, [15] = {.lex_state = 1, .external_lex_state = 1}, [16] = {.lex_state = 1, .external_lex_state = 1}, [17] = {.lex_state = 1, .external_lex_state = 1}, @@ -3190,471 +1499,379 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [29] = {.lex_state = 1, .external_lex_state = 1}, [30] = {.lex_state = 1, .external_lex_state = 1}, [31] = {.lex_state = 1, .external_lex_state = 1}, - [32] = {.lex_state = 2, .external_lex_state = 1}, - [33] = {.lex_state = 2, .external_lex_state = 1}, - [34] = {.lex_state = 2, .external_lex_state = 1}, - [35] = {.lex_state = 2, .external_lex_state = 1}, - [36] = {.lex_state = 2, .external_lex_state = 1}, - [37] = {.lex_state = 2, .external_lex_state = 1}, - [38] = {.lex_state = 2, .external_lex_state = 1}, - [39] = {.lex_state = 2, .external_lex_state = 1}, - [40] = {.lex_state = 2, .external_lex_state = 1}, - [41] = {.lex_state = 2, .external_lex_state = 1}, - [42] = {.lex_state = 2, .external_lex_state = 1}, - [43] = {.lex_state = 2, .external_lex_state = 1}, - [44] = {.lex_state = 2, .external_lex_state = 1}, - [45] = {.lex_state = 2, .external_lex_state = 1}, - [46] = {.lex_state = 2, .external_lex_state = 1}, - [47] = {.lex_state = 3, .external_lex_state = 1}, - [48] = {.lex_state = 3, .external_lex_state = 1}, - [49] = {.lex_state = 3, .external_lex_state = 1}, - [50] = {.lex_state = 267, .external_lex_state = 2}, - [51] = {.lex_state = 267, .external_lex_state = 2}, - [52] = {.lex_state = 267, .external_lex_state = 2}, - [53] = {.lex_state = 267, .external_lex_state = 2}, - [54] = {.lex_state = 267, .external_lex_state = 2}, - [55] = {.lex_state = 267, .external_lex_state = 2}, - [56] = {.lex_state = 267, .external_lex_state = 2}, - [57] = {.lex_state = 267, .external_lex_state = 2}, - [58] = {.lex_state = 267, .external_lex_state = 2}, - [59] = {.lex_state = 267, .external_lex_state = 2}, - [60] = {.lex_state = 267, .external_lex_state = 2}, - [61] = {.lex_state = 267, .external_lex_state = 2}, - [62] = {.lex_state = 267, .external_lex_state = 2}, - [63] = {.lex_state = 2, .external_lex_state = 1}, - [64] = {.lex_state = 2, .external_lex_state = 1}, - [65] = {.lex_state = 2, .external_lex_state = 1}, - [66] = {.lex_state = 2, .external_lex_state = 1}, - [67] = {.lex_state = 2, .external_lex_state = 1}, - [68] = {.lex_state = 2, .external_lex_state = 1}, - [69] = {.lex_state = 2, .external_lex_state = 1}, - [70] = {.lex_state = 2, .external_lex_state = 1}, - [71] = {.lex_state = 3, .external_lex_state = 1}, - [72] = {.lex_state = 3, .external_lex_state = 1}, - [73] = {.lex_state = 4, .external_lex_state = 1}, - [74] = {.lex_state = 4, .external_lex_state = 1}, - [75] = {.lex_state = 4, .external_lex_state = 1}, - [76] = {.lex_state = 268, .external_lex_state = 2}, - [77] = {.lex_state = 269, .external_lex_state = 2}, - [78] = {.lex_state = 4, .external_lex_state = 1}, - [79] = {.lex_state = 270, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 1}, - [81] = {.lex_state = 271, .external_lex_state = 2}, - [82] = {.lex_state = 4, .external_lex_state = 1}, - [83] = {.lex_state = 269, .external_lex_state = 2}, - [84] = {.lex_state = 268, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 1}, - [86] = {.lex_state = 4, .external_lex_state = 1}, - [87] = {.lex_state = 4, .external_lex_state = 1}, - [88] = {.lex_state = 4, .external_lex_state = 1}, - [89] = {.lex_state = 270, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 1}, - [91] = {.lex_state = 271, .external_lex_state = 2}, - [92] = {.lex_state = 269, .external_lex_state = 2}, - [93] = {.lex_state = 268, .external_lex_state = 2}, - [94] = {.lex_state = 269, .external_lex_state = 2}, - [95] = {.lex_state = 271, .external_lex_state = 2}, - [96] = {.lex_state = 268, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 1}, - [98] = {.lex_state = 271, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 1}, - [100] = {.lex_state = 4, .external_lex_state = 1}, - [101] = {.lex_state = 4, .external_lex_state = 1}, - [102] = {.lex_state = 4, .external_lex_state = 1}, - [103] = {.lex_state = 4, .external_lex_state = 1}, - [104] = {.lex_state = 4, .external_lex_state = 1}, - [105] = {.lex_state = 4, .external_lex_state = 1}, - [106] = {.lex_state = 270, .external_lex_state = 2}, - [107] = {.lex_state = 4, .external_lex_state = 1}, - [108] = {.lex_state = 268, .external_lex_state = 2}, - [109] = {.lex_state = 270, .external_lex_state = 2}, - [110] = {.lex_state = 271, .external_lex_state = 2}, - [111] = {.lex_state = 269, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 1}, - [113] = {.lex_state = 268, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 1}, - [115] = {.lex_state = 270, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 1}, - [117] = {.lex_state = 269, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 1}, - [119] = {.lex_state = 268, .external_lex_state = 2}, - [120] = {.lex_state = 270, .external_lex_state = 2}, - [121] = {.lex_state = 271, .external_lex_state = 2}, - [122] = {.lex_state = 269, .external_lex_state = 2}, - [123] = {.lex_state = 268, .external_lex_state = 2}, - [124] = {.lex_state = 269, .external_lex_state = 2}, - [125] = {.lex_state = 271, .external_lex_state = 2}, - [126] = {.lex_state = 270, .external_lex_state = 2}, - [127] = {.lex_state = 271, .external_lex_state = 2}, - [128] = {.lex_state = 270, .external_lex_state = 2}, - [129] = {.lex_state = 269, .external_lex_state = 2}, - [130] = {.lex_state = 4, .external_lex_state = 1}, - [131] = {.lex_state = 4, .external_lex_state = 1}, - [132] = {.lex_state = 268, .external_lex_state = 2}, - [133] = {.lex_state = 268, .external_lex_state = 2}, - [134] = {.lex_state = 269, .external_lex_state = 2}, - [135] = {.lex_state = 4, .external_lex_state = 1}, - [136] = {.lex_state = 271, .external_lex_state = 2}, - [137] = {.lex_state = 270, .external_lex_state = 2}, - [138] = {.lex_state = 4, .external_lex_state = 1}, - [139] = {.lex_state = 4, .external_lex_state = 1}, - [140] = {.lex_state = 4, .external_lex_state = 1}, - [141] = {.lex_state = 4, .external_lex_state = 1}, - [142] = {.lex_state = 4, .external_lex_state = 1}, - [143] = {.lex_state = 4, .external_lex_state = 1}, - [144] = {.lex_state = 4, .external_lex_state = 1}, - [145] = {.lex_state = 4, .external_lex_state = 1}, - [146] = {.lex_state = 4, .external_lex_state = 1}, - [147] = {.lex_state = 268, .external_lex_state = 2}, - [148] = {.lex_state = 269, .external_lex_state = 2}, - [149] = {.lex_state = 271, .external_lex_state = 2}, - [150] = {.lex_state = 271, .external_lex_state = 2}, - [151] = {.lex_state = 4, .external_lex_state = 1}, - [152] = {.lex_state = 270, .external_lex_state = 2}, - [153] = {.lex_state = 4, .external_lex_state = 1}, - [154] = {.lex_state = 268, .external_lex_state = 2}, - [155] = {.lex_state = 269, .external_lex_state = 2}, - [156] = {.lex_state = 271, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 1}, - [158] = {.lex_state = 4, .external_lex_state = 1}, - [159] = {.lex_state = 270, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 1}, - [161] = {.lex_state = 270, .external_lex_state = 2}, - [162] = {.lex_state = 268, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 1}, - [164] = {.lex_state = 269, .external_lex_state = 2}, - [165] = {.lex_state = 271, .external_lex_state = 2}, - [166] = {.lex_state = 4, .external_lex_state = 1}, - [167] = {.lex_state = 4, .external_lex_state = 1}, - [168] = {.lex_state = 272, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 1}, - [170] = {.lex_state = 4, .external_lex_state = 1}, - [171] = {.lex_state = 272, .external_lex_state = 2}, - [172] = {.lex_state = 4, .external_lex_state = 1}, - [173] = {.lex_state = 270, .external_lex_state = 2}, - [174] = {.lex_state = 4, .external_lex_state = 1}, - [175] = {.lex_state = 4, .external_lex_state = 1}, - [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 2}, - [181] = {.lex_state = 3, .external_lex_state = 1}, - [182] = {.lex_state = 3, .external_lex_state = 1}, - [183] = {.lex_state = 3, .external_lex_state = 1}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 5, .external_lex_state = 2}, - [186] = {.lex_state = 3, .external_lex_state = 1}, - [187] = {.lex_state = 3, .external_lex_state = 1}, - [188] = {.lex_state = 4, .external_lex_state = 2}, - [189] = {.lex_state = 5, .external_lex_state = 2}, - [190] = {.lex_state = 3, .external_lex_state = 1}, - [191] = {.lex_state = 3, .external_lex_state = 1}, - [192] = {.lex_state = 3, .external_lex_state = 1}, - [193] = {.lex_state = 4, .external_lex_state = 1}, - [194] = {.lex_state = 4, .external_lex_state = 1}, - [195] = {.lex_state = 4, .external_lex_state = 1}, - [196] = {.lex_state = 4, .external_lex_state = 1}, - [197] = {.lex_state = 4, .external_lex_state = 1}, - [198] = {.lex_state = 4, .external_lex_state = 1}, - [199] = {.lex_state = 4, .external_lex_state = 1}, - [200] = {.lex_state = 4, .external_lex_state = 1}, - [201] = {.lex_state = 267, .external_lex_state = 2}, - [202] = {.lex_state = 267, .external_lex_state = 2}, - [203] = {.lex_state = 6, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 267, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 6, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, - [209] = {.lex_state = 267, .external_lex_state = 2}, - [210] = {.lex_state = 267, .external_lex_state = 2}, - [211] = {.lex_state = 6, .external_lex_state = 2}, - [212] = {.lex_state = 6, .external_lex_state = 2}, - [213] = {.lex_state = 267, .external_lex_state = 2}, - [214] = {.lex_state = 6, .external_lex_state = 2}, - [215] = {.lex_state = 267, .external_lex_state = 2}, - [216] = {.lex_state = 6, .external_lex_state = 2}, - [217] = {.lex_state = 267, .external_lex_state = 2}, - [218] = {.lex_state = 267, .external_lex_state = 2}, - [219] = {.lex_state = 267, .external_lex_state = 2}, - [220] = {.lex_state = 6, .external_lex_state = 2}, - [221] = {.lex_state = 6, .external_lex_state = 2}, - [222] = {.lex_state = 267, .external_lex_state = 2}, - [223] = {.lex_state = 267, .external_lex_state = 2}, - [224] = {.lex_state = 267, .external_lex_state = 2}, - [225] = {.lex_state = 267, .external_lex_state = 2}, - [226] = {.lex_state = 5, .external_lex_state = 2}, - [227] = {.lex_state = 267, .external_lex_state = 2}, - [228] = {.lex_state = 267, .external_lex_state = 2}, - [229] = {.lex_state = 6, .external_lex_state = 2}, - [230] = {.lex_state = 6, .external_lex_state = 2}, - [231] = {.lex_state = 267, .external_lex_state = 2}, - [232] = {.lex_state = 6, .external_lex_state = 2}, - [233] = {.lex_state = 267, .external_lex_state = 2}, - [234] = {.lex_state = 267, .external_lex_state = 2}, - [235] = {.lex_state = 6, .external_lex_state = 2}, - [236] = {.lex_state = 267, .external_lex_state = 2}, - [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 267, .external_lex_state = 2}, - [239] = {.lex_state = 267, .external_lex_state = 2}, - [240] = {.lex_state = 267, .external_lex_state = 2}, - [241] = {.lex_state = 267, .external_lex_state = 2}, - [242] = {.lex_state = 267, .external_lex_state = 2}, - [243] = {.lex_state = 6, .external_lex_state = 2}, - [244] = {.lex_state = 267, .external_lex_state = 2}, - [245] = {.lex_state = 267, .external_lex_state = 2}, - [246] = {.lex_state = 6, .external_lex_state = 2}, - [247] = {.lex_state = 267, .external_lex_state = 2}, - [248] = {.lex_state = 267, .external_lex_state = 2}, - [249] = {.lex_state = 267, .external_lex_state = 2}, - [250] = {.lex_state = 6, .external_lex_state = 2}, - [251] = {.lex_state = 6, .external_lex_state = 2}, - [252] = {.lex_state = 6, .external_lex_state = 2}, - [253] = {.lex_state = 4, .external_lex_state = 2}, - [254] = {.lex_state = 4, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, - [256] = {.lex_state = 4, .external_lex_state = 2}, - [257] = {.lex_state = 4, .external_lex_state = 2}, - [258] = {.lex_state = 4, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 5, .external_lex_state = 2}, - [261] = {.lex_state = 271, .external_lex_state = 2}, - [262] = {.lex_state = 268, .external_lex_state = 2}, - [263] = {.lex_state = 268, .external_lex_state = 2}, - [264] = {.lex_state = 270, .external_lex_state = 2}, - [265] = {.lex_state = 270, .external_lex_state = 2}, - [266] = {.lex_state = 270, .external_lex_state = 2}, - [267] = {.lex_state = 270, .external_lex_state = 2}, - [268] = {.lex_state = 270, .external_lex_state = 2}, - [269] = {.lex_state = 271, .external_lex_state = 2}, - [270] = {.lex_state = 271, .external_lex_state = 2}, - [271] = {.lex_state = 270, .external_lex_state = 2}, - [272] = {.lex_state = 270, .external_lex_state = 2}, - [273] = {.lex_state = 270, .external_lex_state = 2}, - [274] = {.lex_state = 270, .external_lex_state = 2}, - [275] = {.lex_state = 270, .external_lex_state = 2}, - [276] = {.lex_state = 270, .external_lex_state = 2}, - [277] = {.lex_state = 270, .external_lex_state = 2}, - [278] = {.lex_state = 270, .external_lex_state = 2}, - [279] = {.lex_state = 270, .external_lex_state = 2}, - [280] = {.lex_state = 270, .external_lex_state = 2}, - [281] = {.lex_state = 270, .external_lex_state = 2}, - [282] = {.lex_state = 270, .external_lex_state = 2}, - [283] = {.lex_state = 270, .external_lex_state = 2}, - [284] = {.lex_state = 270, .external_lex_state = 2}, - [285] = {.lex_state = 271, .external_lex_state = 2}, - [286] = {.lex_state = 270, .external_lex_state = 2}, - [287] = {.lex_state = 270, .external_lex_state = 2}, - [288] = {.lex_state = 270, .external_lex_state = 2}, - [289] = {.lex_state = 270, .external_lex_state = 2}, - [290] = {.lex_state = 270, .external_lex_state = 2}, - [291] = {.lex_state = 271, .external_lex_state = 2}, - [292] = {.lex_state = 271, .external_lex_state = 2}, - [293] = {.lex_state = 271, .external_lex_state = 2}, - [294] = {.lex_state = 271, .external_lex_state = 2}, - [295] = {.lex_state = 271, .external_lex_state = 2}, - [296] = {.lex_state = 271, .external_lex_state = 2}, - [297] = {.lex_state = 271, .external_lex_state = 2}, - [298] = {.lex_state = 271, .external_lex_state = 2}, - [299] = {.lex_state = 271, .external_lex_state = 2}, - [300] = {.lex_state = 271, .external_lex_state = 2}, - [301] = {.lex_state = 271, .external_lex_state = 2}, - [302] = {.lex_state = 271, .external_lex_state = 2}, - [303] = {.lex_state = 271, .external_lex_state = 2}, - [304] = {.lex_state = 271, .external_lex_state = 2}, - [305] = {.lex_state = 271, .external_lex_state = 2}, - [306] = {.lex_state = 271, .external_lex_state = 2}, - [307] = {.lex_state = 272, .external_lex_state = 2}, - [308] = {.lex_state = 272, .external_lex_state = 2}, - [309] = {.lex_state = 271, .external_lex_state = 2}, - [310] = {.lex_state = 271, .external_lex_state = 2}, - [311] = {.lex_state = 271, .external_lex_state = 2}, - [312] = {.lex_state = 272, .external_lex_state = 2}, - [313] = {.lex_state = 272, .external_lex_state = 2}, - [314] = {.lex_state = 272, .external_lex_state = 2}, - [315] = {.lex_state = 268, .external_lex_state = 2}, - [316] = {.lex_state = 269, .external_lex_state = 2}, - [317] = {.lex_state = 271, .external_lex_state = 2}, - [318] = {.lex_state = 270, .external_lex_state = 2}, - [319] = {.lex_state = 269, .external_lex_state = 2}, - [320] = {.lex_state = 269, .external_lex_state = 2}, - [321] = {.lex_state = 272, .external_lex_state = 2}, - [322] = {.lex_state = 272, .external_lex_state = 2}, - [323] = {.lex_state = 269, .external_lex_state = 2}, - [324] = {.lex_state = 269, .external_lex_state = 2}, - [325] = {.lex_state = 269, .external_lex_state = 2}, - [326] = {.lex_state = 269, .external_lex_state = 2}, - [327] = {.lex_state = 269, .external_lex_state = 2}, - [328] = {.lex_state = 269, .external_lex_state = 2}, - [329] = {.lex_state = 269, .external_lex_state = 2}, - [330] = {.lex_state = 269, .external_lex_state = 2}, - [331] = {.lex_state = 269, .external_lex_state = 2}, - [332] = {.lex_state = 269, .external_lex_state = 2}, - [333] = {.lex_state = 269, .external_lex_state = 2}, - [334] = {.lex_state = 269, .external_lex_state = 2}, - [335] = {.lex_state = 269, .external_lex_state = 2}, - [336] = {.lex_state = 269, .external_lex_state = 2}, - [337] = {.lex_state = 269, .external_lex_state = 2}, - [338] = {.lex_state = 269, .external_lex_state = 2}, - [339] = {.lex_state = 269, .external_lex_state = 2}, - [340] = {.lex_state = 269, .external_lex_state = 2}, - [341] = {.lex_state = 269, .external_lex_state = 2}, - [342] = {.lex_state = 269, .external_lex_state = 2}, - [343] = {.lex_state = 272, .external_lex_state = 2}, - [344] = {.lex_state = 272, .external_lex_state = 2}, - [345] = {.lex_state = 272, .external_lex_state = 2}, - [346] = {.lex_state = 272, .external_lex_state = 2}, - [347] = {.lex_state = 272, .external_lex_state = 2}, - [348] = {.lex_state = 269, .external_lex_state = 2}, - [349] = {.lex_state = 269, .external_lex_state = 2}, - [350] = {.lex_state = 268, .external_lex_state = 2}, - [351] = {.lex_state = 269, .external_lex_state = 2}, - [352] = {.lex_state = 268, .external_lex_state = 2}, - [353] = {.lex_state = 268, .external_lex_state = 2}, - [354] = {.lex_state = 268, .external_lex_state = 2}, - [355] = {.lex_state = 268, .external_lex_state = 2}, - [356] = {.lex_state = 268, .external_lex_state = 2}, - [357] = {.lex_state = 268, .external_lex_state = 2}, - [358] = {.lex_state = 268, .external_lex_state = 2}, - [359] = {.lex_state = 268, .external_lex_state = 2}, - [360] = {.lex_state = 268, .external_lex_state = 2}, - [361] = {.lex_state = 268, .external_lex_state = 2}, - [362] = {.lex_state = 268, .external_lex_state = 2}, - [363] = {.lex_state = 268, .external_lex_state = 2}, - [364] = {.lex_state = 268, .external_lex_state = 2}, - [365] = {.lex_state = 268, .external_lex_state = 2}, - [366] = {.lex_state = 268, .external_lex_state = 2}, - [367] = {.lex_state = 268, .external_lex_state = 2}, - [368] = {.lex_state = 268, .external_lex_state = 2}, - [369] = {.lex_state = 268, .external_lex_state = 2}, - [370] = {.lex_state = 268, .external_lex_state = 2}, - [371] = {.lex_state = 268, .external_lex_state = 2}, - [372] = {.lex_state = 271, .external_lex_state = 2}, - [373] = {.lex_state = 270, .external_lex_state = 2}, - [374] = {.lex_state = 272, .external_lex_state = 2}, - [375] = {.lex_state = 272, .external_lex_state = 2}, - [376] = {.lex_state = 272, .external_lex_state = 2}, - [377] = {.lex_state = 268, .external_lex_state = 2}, - [378] = {.lex_state = 271, .external_lex_state = 2}, - [379] = {.lex_state = 272, .external_lex_state = 2}, - [380] = {.lex_state = 272, .external_lex_state = 2}, - [381] = {.lex_state = 268, .external_lex_state = 2}, - [382] = {.lex_state = 272, .external_lex_state = 2}, - [383] = {.lex_state = 272, .external_lex_state = 2}, - [384] = {.lex_state = 272, .external_lex_state = 2}, - [385] = {.lex_state = 272, .external_lex_state = 2}, - [386] = {.lex_state = 272, .external_lex_state = 2}, - [387] = {.lex_state = 272, .external_lex_state = 2}, - [388] = {.lex_state = 272, .external_lex_state = 2}, - [389] = {.lex_state = 6, .external_lex_state = 2}, - [390] = {.lex_state = 272, .external_lex_state = 2}, - [391] = {.lex_state = 272, .external_lex_state = 2}, + [32] = {.lex_state = 1, .external_lex_state = 1}, + [33] = {.lex_state = 1, .external_lex_state = 1}, + [34] = {.lex_state = 1, .external_lex_state = 1}, + [35] = {.lex_state = 1, .external_lex_state = 1}, + [36] = {.lex_state = 1, .external_lex_state = 1}, + [37] = {.lex_state = 1, .external_lex_state = 1}, + [38] = {.lex_state = 1, .external_lex_state = 1}, + [39] = {.lex_state = 1, .external_lex_state = 1}, + [40] = {.lex_state = 1, .external_lex_state = 1}, + [41] = {.lex_state = 1, .external_lex_state = 1}, + [42] = {.lex_state = 1, .external_lex_state = 1}, + [43] = {.lex_state = 1, .external_lex_state = 1}, + [44] = {.lex_state = 1, .external_lex_state = 1}, + [45] = {.lex_state = 1, .external_lex_state = 1}, + [46] = {.lex_state = 1, .external_lex_state = 1}, + [47] = {.lex_state = 1, .external_lex_state = 1}, + [48] = {.lex_state = 1, .external_lex_state = 1}, + [49] = {.lex_state = 1, .external_lex_state = 1}, + [50] = {.lex_state = 1, .external_lex_state = 1}, + [51] = {.lex_state = 1, .external_lex_state = 1}, + [52] = {.lex_state = 1, .external_lex_state = 1}, + [53] = {.lex_state = 1, .external_lex_state = 1}, + [54] = {.lex_state = 1, .external_lex_state = 1}, + [55] = {.lex_state = 1, .external_lex_state = 1}, + [56] = {.lex_state = 1, .external_lex_state = 1}, + [57] = {.lex_state = 1, .external_lex_state = 1}, + [58] = {.lex_state = 1, .external_lex_state = 1}, + [59] = {.lex_state = 1, .external_lex_state = 1}, + [60] = {.lex_state = 1, .external_lex_state = 1}, + [61] = {.lex_state = 1, .external_lex_state = 1}, + [62] = {.lex_state = 1, .external_lex_state = 1}, + [63] = {.lex_state = 1, .external_lex_state = 1}, + [64] = {.lex_state = 1, .external_lex_state = 1}, + [65] = {.lex_state = 1, .external_lex_state = 1}, + [66] = {.lex_state = 1, .external_lex_state = 1}, + [67] = {.lex_state = 1, .external_lex_state = 1}, + [68] = {.lex_state = 1, .external_lex_state = 1}, + [69] = {.lex_state = 1, .external_lex_state = 1}, + [70] = {.lex_state = 1, .external_lex_state = 1}, + [71] = {.lex_state = 1, .external_lex_state = 1}, + [72] = {.lex_state = 1, .external_lex_state = 1}, + [73] = {.lex_state = 1, .external_lex_state = 1}, + [74] = {.lex_state = 1, .external_lex_state = 1}, + [75] = {.lex_state = 1, .external_lex_state = 1}, + [76] = {.lex_state = 1, .external_lex_state = 1}, + [77] = {.lex_state = 1, .external_lex_state = 1}, + [78] = {.lex_state = 1, .external_lex_state = 1}, + [79] = {.lex_state = 1, .external_lex_state = 1}, + [80] = {.lex_state = 1, .external_lex_state = 1}, + [81] = {.lex_state = 1, .external_lex_state = 1}, + [82] = {.lex_state = 1, .external_lex_state = 1}, + [83] = {.lex_state = 1, .external_lex_state = 1}, + [84] = {.lex_state = 12, .external_lex_state = 2}, + [85] = {.lex_state = 13, .external_lex_state = 2}, + [86] = {.lex_state = 15, .external_lex_state = 2}, + [87] = {.lex_state = 14, .external_lex_state = 2}, + [88] = {.lex_state = 12, .external_lex_state = 2}, + [89] = {.lex_state = 12, .external_lex_state = 2}, + [90] = {.lex_state = 12, .external_lex_state = 2}, + [91] = {.lex_state = 13, .external_lex_state = 2}, + [92] = {.lex_state = 15, .external_lex_state = 2}, + [93] = {.lex_state = 14, .external_lex_state = 2}, + [94] = {.lex_state = 12, .external_lex_state = 2}, + [95] = {.lex_state = 14, .external_lex_state = 2}, + [96] = {.lex_state = 15, .external_lex_state = 2}, + [97] = {.lex_state = 13, .external_lex_state = 2}, + [98] = {.lex_state = 12, .external_lex_state = 2}, + [99] = {.lex_state = 14, .external_lex_state = 2}, + [100] = {.lex_state = 15, .external_lex_state = 2}, + [101] = {.lex_state = 13, .external_lex_state = 2}, + [102] = {.lex_state = 13, .external_lex_state = 2}, + [103] = {.lex_state = 14, .external_lex_state = 2}, + [104] = {.lex_state = 12, .external_lex_state = 2}, + [105] = {.lex_state = 14, .external_lex_state = 2}, + [106] = {.lex_state = 15, .external_lex_state = 2}, + [107] = {.lex_state = 13, .external_lex_state = 2}, + [108] = {.lex_state = 15, .external_lex_state = 2}, + [109] = {.lex_state = 13, .external_lex_state = 2}, + [110] = {.lex_state = 15, .external_lex_state = 2}, + [111] = {.lex_state = 14, .external_lex_state = 2}, + [112] = {.lex_state = 12, .external_lex_state = 2}, + [113] = {.lex_state = 15, .external_lex_state = 2}, + [114] = {.lex_state = 14, .external_lex_state = 2}, + [115] = {.lex_state = 13, .external_lex_state = 2}, + [116] = {.lex_state = 15, .external_lex_state = 2}, + [117] = {.lex_state = 14, .external_lex_state = 2}, + [118] = {.lex_state = 12, .external_lex_state = 2}, + [119] = {.lex_state = 15, .external_lex_state = 2}, + [120] = {.lex_state = 14, .external_lex_state = 2}, + [121] = {.lex_state = 13, .external_lex_state = 2}, + [122] = {.lex_state = 13, .external_lex_state = 2}, + [123] = {.lex_state = 12, .external_lex_state = 2}, + [124] = {.lex_state = 12, .external_lex_state = 2}, + [125] = {.lex_state = 12, .external_lex_state = 2}, + [126] = {.lex_state = 14, .external_lex_state = 2}, + [127] = {.lex_state = 14, .external_lex_state = 2}, + [128] = {.lex_state = 15, .external_lex_state = 2}, + [129] = {.lex_state = 13, .external_lex_state = 2}, + [130] = {.lex_state = 15, .external_lex_state = 2}, + [131] = {.lex_state = 13, .external_lex_state = 2}, + [132] = {.lex_state = 16, .external_lex_state = 2}, + [133] = {.lex_state = 12, .external_lex_state = 2}, + [134] = {.lex_state = 14, .external_lex_state = 2}, + [135] = {.lex_state = 16, .external_lex_state = 2}, + [136] = {.lex_state = 13, .external_lex_state = 2}, + [137] = {.lex_state = 15, .external_lex_state = 2}, + [138] = {.lex_state = 1, .external_lex_state = 1}, + [139] = {.lex_state = 1, .external_lex_state = 1}, + [140] = {.lex_state = 2, .external_lex_state = 2}, + [141] = {.lex_state = 2, .external_lex_state = 2}, + [142] = {.lex_state = 1, .external_lex_state = 2}, + [143] = {.lex_state = 1, .external_lex_state = 2}, + [144] = {.lex_state = 2, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, + [146] = {.lex_state = 1, .external_lex_state = 1}, + [147] = {.lex_state = 1, .external_lex_state = 1}, + [148] = {.lex_state = 1, .external_lex_state = 1}, + [149] = {.lex_state = 1, .external_lex_state = 1}, + [150] = {.lex_state = 1, .external_lex_state = 1}, + [151] = {.lex_state = 1, .external_lex_state = 1}, + [152] = {.lex_state = 1, .external_lex_state = 1}, + [153] = {.lex_state = 1, .external_lex_state = 1}, + [154] = {.lex_state = 3, .external_lex_state = 2}, + [155] = {.lex_state = 1, .external_lex_state = 2}, + [156] = {.lex_state = 3, .external_lex_state = 2}, + [157] = {.lex_state = 3, .external_lex_state = 2}, + [158] = {.lex_state = 3, .external_lex_state = 2}, + [159] = {.lex_state = 3, .external_lex_state = 2}, + [160] = {.lex_state = 2, .external_lex_state = 2}, + [161] = {.lex_state = 1, .external_lex_state = 2}, + [162] = {.lex_state = 3, .external_lex_state = 2}, + [163] = {.lex_state = 3, .external_lex_state = 2}, + [164] = {.lex_state = 2, .external_lex_state = 2}, + [165] = {.lex_state = 2, .external_lex_state = 2}, + [166] = {.lex_state = 3, .external_lex_state = 2}, + [167] = {.lex_state = 3, .external_lex_state = 2}, + [168] = {.lex_state = 3, .external_lex_state = 2}, + [169] = {.lex_state = 2, .external_lex_state = 2}, + [170] = {.lex_state = 1, .external_lex_state = 2}, + [171] = {.lex_state = 3, .external_lex_state = 2}, + [172] = {.lex_state = 1, .external_lex_state = 2}, + [173] = {.lex_state = 1, .external_lex_state = 2}, + [174] = {.lex_state = 2, .external_lex_state = 2}, + [175] = {.lex_state = 11, .external_lex_state = 2}, + [176] = {.lex_state = 11, .external_lex_state = 2}, + [177] = {.lex_state = 11, .external_lex_state = 2}, + [178] = {.lex_state = 11, .external_lex_state = 2}, + [179] = {.lex_state = 11, .external_lex_state = 2}, + [180] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 11, .external_lex_state = 2}, + [182] = {.lex_state = 11, .external_lex_state = 2}, + [183] = {.lex_state = 11, .external_lex_state = 2}, + [184] = {.lex_state = 11, .external_lex_state = 2}, + [185] = {.lex_state = 11, .external_lex_state = 2}, + [186] = {.lex_state = 11, .external_lex_state = 2}, + [187] = {.lex_state = 11, .external_lex_state = 2}, + [188] = {.lex_state = 11, .external_lex_state = 2}, + [189] = {.lex_state = 11, .external_lex_state = 2}, + [190] = {.lex_state = 11, .external_lex_state = 2}, + [191] = {.lex_state = 11, .external_lex_state = 2}, + [192] = {.lex_state = 11, .external_lex_state = 2}, + [193] = {.lex_state = 11, .external_lex_state = 2}, + [194] = {.lex_state = 11, .external_lex_state = 2}, + [195] = {.lex_state = 11, .external_lex_state = 2}, + [196] = {.lex_state = 11, .external_lex_state = 2}, + [197] = {.lex_state = 11, .external_lex_state = 2}, + [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 = 15, .external_lex_state = 2}, + [204] = {.lex_state = 16, .external_lex_state = 2}, + [205] = {.lex_state = 14, .external_lex_state = 2}, + [206] = {.lex_state = 14, .external_lex_state = 2}, + [207] = {.lex_state = 14, .external_lex_state = 2}, + [208] = {.lex_state = 14, .external_lex_state = 2}, + [209] = {.lex_state = 14, .external_lex_state = 2}, + [210] = {.lex_state = 14, .external_lex_state = 2}, + [211] = {.lex_state = 14, .external_lex_state = 2}, + [212] = {.lex_state = 14, .external_lex_state = 2}, + [213] = {.lex_state = 14, .external_lex_state = 2}, + [214] = {.lex_state = 14, .external_lex_state = 2}, + [215] = {.lex_state = 14, .external_lex_state = 2}, + [216] = {.lex_state = 14, .external_lex_state = 2}, + [217] = {.lex_state = 14, .external_lex_state = 2}, + [218] = {.lex_state = 14, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 15, .external_lex_state = 2}, + [223] = {.lex_state = 15, .external_lex_state = 2}, + [224] = {.lex_state = 15, .external_lex_state = 2}, + [225] = {.lex_state = 15, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 15, .external_lex_state = 2}, + [228] = {.lex_state = 15, .external_lex_state = 2}, + [229] = {.lex_state = 15, .external_lex_state = 2}, + [230] = {.lex_state = 15, .external_lex_state = 2}, + [231] = {.lex_state = 15, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 15, .external_lex_state = 2}, + [235] = {.lex_state = 15, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, + [238] = {.lex_state = 15, .external_lex_state = 2}, + [239] = {.lex_state = 15, .external_lex_state = 2}, + [240] = {.lex_state = 13, .external_lex_state = 2}, + [241] = {.lex_state = 13, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, + [243] = {.lex_state = 13, .external_lex_state = 2}, + [244] = {.lex_state = 13, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, + [247] = {.lex_state = 13, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, + [249] = {.lex_state = 13, .external_lex_state = 2}, + [250] = {.lex_state = 13, .external_lex_state = 2}, + [251] = {.lex_state = 13, .external_lex_state = 2}, + [252] = {.lex_state = 13, .external_lex_state = 2}, + [253] = {.lex_state = 13, .external_lex_state = 2}, + [254] = {.lex_state = 13, .external_lex_state = 2}, + [255] = {.lex_state = 13, .external_lex_state = 2}, + [256] = {.lex_state = 13, .external_lex_state = 2}, + [257] = {.lex_state = 13, .external_lex_state = 2}, + [258] = {.lex_state = 13, .external_lex_state = 2}, + [259] = {.lex_state = 13, .external_lex_state = 2}, + [260] = {.lex_state = 13, .external_lex_state = 2}, + [261] = {.lex_state = 13, .external_lex_state = 2}, + [262] = {.lex_state = 12, .external_lex_state = 2}, + [263] = {.lex_state = 12, .external_lex_state = 2}, + [264] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 12, .external_lex_state = 2}, + [266] = {.lex_state = 12, .external_lex_state = 2}, + [267] = {.lex_state = 12, .external_lex_state = 2}, + [268] = {.lex_state = 16, .external_lex_state = 2}, + [269] = {.lex_state = 16, .external_lex_state = 2}, + [270] = {.lex_state = 3, .external_lex_state = 2}, + [271] = {.lex_state = 16, .external_lex_state = 2}, + [272] = {.lex_state = 16, .external_lex_state = 2}, + [273] = {.lex_state = 16, .external_lex_state = 2}, + [274] = {.lex_state = 12, .external_lex_state = 2}, + [275] = {.lex_state = 14, .external_lex_state = 2}, + [276] = {.lex_state = 14, .external_lex_state = 2}, + [277] = {.lex_state = 14, .external_lex_state = 2}, + [278] = {.lex_state = 14, .external_lex_state = 2}, + [279] = {.lex_state = 14, .external_lex_state = 2}, + [280] = {.lex_state = 14, .external_lex_state = 2}, + [281] = {.lex_state = 16, .external_lex_state = 2}, + [282] = {.lex_state = 16, .external_lex_state = 2}, + [283] = {.lex_state = 16, .external_lex_state = 2}, + [284] = {.lex_state = 16, .external_lex_state = 2}, + [285] = {.lex_state = 16, .external_lex_state = 2}, + [286] = {.lex_state = 14, .external_lex_state = 2}, + [287] = {.lex_state = 12, .external_lex_state = 2}, + [288] = {.lex_state = 12, .external_lex_state = 2}, + [289] = {.lex_state = 12, .external_lex_state = 2}, + [290] = {.lex_state = 12, .external_lex_state = 2}, + [291] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 12, .external_lex_state = 2}, + [293] = {.lex_state = 12, .external_lex_state = 2}, + [294] = {.lex_state = 12, .external_lex_state = 2}, + [295] = {.lex_state = 12, .external_lex_state = 2}, + [296] = {.lex_state = 16, .external_lex_state = 2}, + [297] = {.lex_state = 14, .external_lex_state = 2}, + [298] = {.lex_state = 15, .external_lex_state = 2}, + [299] = {.lex_state = 16, .external_lex_state = 2}, + [300] = {.lex_state = 13, .external_lex_state = 2}, + [301] = {.lex_state = 16, .external_lex_state = 2}, + [302] = {.lex_state = 16, .external_lex_state = 2}, + [303] = {.lex_state = 16, .external_lex_state = 2}, + [304] = {.lex_state = 16, .external_lex_state = 2}, + [305] = {.lex_state = 14, .external_lex_state = 2}, + [306] = {.lex_state = 16, .external_lex_state = 2}, + [307] = {.lex_state = 12, .external_lex_state = 2}, + [308] = {.lex_state = 12, .external_lex_state = 2}, + [309] = {.lex_state = 16, .external_lex_state = 2}, + [310] = {.lex_state = 13, .external_lex_state = 2}, + [311] = {.lex_state = 15, .external_lex_state = 2}, + [312] = {.lex_state = 14, .external_lex_state = 2}, + [313] = {.lex_state = 12, .external_lex_state = 2}, + [314] = {.lex_state = 12, .external_lex_state = 2}, + [315] = {.lex_state = 16, .external_lex_state = 2}, + [316] = {.lex_state = 16, .external_lex_state = 2}, + [317] = {.lex_state = 16, .external_lex_state = 2}, + [318] = {.lex_state = 12, .external_lex_state = 2}, + [319] = {.lex_state = 12, .external_lex_state = 2}, + [320] = {.lex_state = 12, .external_lex_state = 2}, + [321] = {.lex_state = 12, .external_lex_state = 2}, + [322] = {.lex_state = 0, .external_lex_state = 2}, + [323] = {.lex_state = 16, .external_lex_state = 2}, + [324] = {.lex_state = 0, .external_lex_state = 2}, + [325] = {.lex_state = 0, .external_lex_state = 2}, + [326] = {.lex_state = 0, .external_lex_state = 2}, + [327] = {.lex_state = 0, .external_lex_state = 2}, + [328] = {.lex_state = 0, .external_lex_state = 2}, + [329] = {.lex_state = 0, .external_lex_state = 2}, + [330] = {.lex_state = 0, .external_lex_state = 2}, + [331] = {.lex_state = 16, .external_lex_state = 2}, + [332] = {.lex_state = 16, .external_lex_state = 2}, + [333] = {.lex_state = 0, .external_lex_state = 2}, + [334] = {.lex_state = 0, .external_lex_state = 2}, + [335] = {.lex_state = 0, .external_lex_state = 2}, + [336] = {.lex_state = 16, .external_lex_state = 2}, + [337] = {.lex_state = 16, .external_lex_state = 2}, + [338] = {.lex_state = 0, .external_lex_state = 2}, + [339] = {.lex_state = 0, .external_lex_state = 2}, + [340] = {.lex_state = 0, .external_lex_state = 2}, + [341] = {.lex_state = 16, .external_lex_state = 2}, + [342] = {.lex_state = 16, .external_lex_state = 2}, + [343] = {.lex_state = 16, .external_lex_state = 2}, + [344] = {.lex_state = 0, .external_lex_state = 2}, + [345] = {.lex_state = 0, .external_lex_state = 2}, + [346] = {.lex_state = 16, .external_lex_state = 2}, + [347] = {.lex_state = 0, .external_lex_state = 2}, + [348] = {.lex_state = 0, .external_lex_state = 2}, + [349] = {.lex_state = 0, .external_lex_state = 2}, + [350] = {.lex_state = 0, .external_lex_state = 2}, + [351] = {.lex_state = 0, .external_lex_state = 2}, + [352] = {.lex_state = 0, .external_lex_state = 2}, + [353] = {.lex_state = 0, .external_lex_state = 2}, + [354] = {.lex_state = 0, .external_lex_state = 2}, + [355] = {.lex_state = 0, .external_lex_state = 2}, + [356] = {.lex_state = 0, .external_lex_state = 2}, + [357] = {.lex_state = 0, .external_lex_state = 2}, + [358] = {.lex_state = 0, .external_lex_state = 2}, + [359] = {.lex_state = 0, .external_lex_state = 2}, + [360] = {.lex_state = 0, .external_lex_state = 2}, + [361] = {.lex_state = 0, .external_lex_state = 2}, + [362] = {.lex_state = 0, .external_lex_state = 2}, + [363] = {.lex_state = 16, .external_lex_state = 2}, + [364] = {.lex_state = 0, .external_lex_state = 2}, + [365] = {.lex_state = 0, .external_lex_state = 2}, + [366] = {.lex_state = 0, .external_lex_state = 2}, + [367] = {.lex_state = 0, .external_lex_state = 2}, + [368] = {.lex_state = 0, .external_lex_state = 2}, + [369] = {.lex_state = 0, .external_lex_state = 2}, + [370] = {.lex_state = 0, .external_lex_state = 2}, + [371] = {.lex_state = 0, .external_lex_state = 2}, + [372] = {.lex_state = 0, .external_lex_state = 2}, + [373] = {.lex_state = 16, .external_lex_state = 2}, + [374] = {.lex_state = 0, .external_lex_state = 2}, + [375] = {.lex_state = 0, .external_lex_state = 2}, + [376] = {.lex_state = 0, .external_lex_state = 2}, + [377] = {.lex_state = 0, .external_lex_state = 2}, + [378] = {.lex_state = 0, .external_lex_state = 2}, + [379] = {.lex_state = 0, .external_lex_state = 2}, + [380] = {.lex_state = 0, .external_lex_state = 2}, + [381] = {.lex_state = 0, .external_lex_state = 2}, + [382] = {.lex_state = 0, .external_lex_state = 2}, + [383] = {.lex_state = 0, .external_lex_state = 2}, + [384] = {.lex_state = 0, .external_lex_state = 2}, + [385] = {.lex_state = 0, .external_lex_state = 2}, + [386] = {.lex_state = 0, .external_lex_state = 2}, + [387] = {.lex_state = 0, .external_lex_state = 2}, + [388] = {.lex_state = 0, .external_lex_state = 2}, + [389] = {.lex_state = 0, .external_lex_state = 2}, + [390] = {.lex_state = 0, .external_lex_state = 2}, + [391] = {.lex_state = 0, .external_lex_state = 2}, [392] = {.lex_state = 0, .external_lex_state = 2}, - [393] = {.lex_state = 272, .external_lex_state = 2}, + [393] = {.lex_state = 0, .external_lex_state = 2}, [394] = {.lex_state = 0, .external_lex_state = 2}, [395] = {.lex_state = 0, .external_lex_state = 2}, - [396] = {.lex_state = 272, .external_lex_state = 2}, + [396] = {.lex_state = 0, .external_lex_state = 2}, [397] = {.lex_state = 0, .external_lex_state = 2}, [398] = {.lex_state = 0, .external_lex_state = 2}, [399] = {.lex_state = 0, .external_lex_state = 2}, [400] = {.lex_state = 0, .external_lex_state = 2}, - [401] = {.lex_state = 0, .external_lex_state = 2}, - [402] = {.lex_state = 272, .external_lex_state = 2}, - [403] = {.lex_state = 0, .external_lex_state = 2}, - [404] = {.lex_state = 0, .external_lex_state = 2}, - [405] = {.lex_state = 0, .external_lex_state = 2}, - [406] = {.lex_state = 0, .external_lex_state = 2}, - [407] = {.lex_state = 0, .external_lex_state = 2}, - [408] = {.lex_state = 272, .external_lex_state = 2}, - [409] = {.lex_state = 272, .external_lex_state = 2}, - [410] = {.lex_state = 272, .external_lex_state = 2}, - [411] = {.lex_state = 272, .external_lex_state = 2}, - [412] = {.lex_state = 272, .external_lex_state = 2}, - [413] = {.lex_state = 0, .external_lex_state = 2}, - [414] = {.lex_state = 272, .external_lex_state = 2}, - [415] = {.lex_state = 0, .external_lex_state = 2}, - [416] = {.lex_state = 0, .external_lex_state = 2}, - [417] = {.lex_state = 0, .external_lex_state = 2}, - [418] = {.lex_state = 0, .external_lex_state = 2}, - [419] = {.lex_state = 272, .external_lex_state = 2}, - [420] = {.lex_state = 272, .external_lex_state = 2}, - [421] = {.lex_state = 272, .external_lex_state = 2}, - [422] = {.lex_state = 0, .external_lex_state = 2}, - [423] = {.lex_state = 0, .external_lex_state = 2}, - [424] = {.lex_state = 0, .external_lex_state = 2}, - [425] = {.lex_state = 0, .external_lex_state = 2}, - [426] = {.lex_state = 272, .external_lex_state = 2}, - [427] = {.lex_state = 272, .external_lex_state = 2}, - [428] = {.lex_state = 272, .external_lex_state = 2}, - [429] = {.lex_state = 0, .external_lex_state = 2}, - [430] = {.lex_state = 272, .external_lex_state = 2}, - [431] = {.lex_state = 0, .external_lex_state = 2}, - [432] = {.lex_state = 0, .external_lex_state = 2}, - [433] = {.lex_state = 0, .external_lex_state = 2}, - [434] = {.lex_state = 0, .external_lex_state = 2}, - [435] = {.lex_state = 0, .external_lex_state = 2}, - [436] = {.lex_state = 272, .external_lex_state = 2}, - [437] = {.lex_state = 272, .external_lex_state = 2}, - [438] = {.lex_state = 0, .external_lex_state = 2}, - [439] = {.lex_state = 0, .external_lex_state = 2}, - [440] = {.lex_state = 0, .external_lex_state = 2}, - [441] = {.lex_state = 0, .external_lex_state = 2}, - [442] = {.lex_state = 0, .external_lex_state = 2}, - [443] = {.lex_state = 0, .external_lex_state = 2}, - [444] = {.lex_state = 0, .external_lex_state = 2}, - [445] = {.lex_state = 0, .external_lex_state = 2}, - [446] = {.lex_state = 0, .external_lex_state = 2}, - [447] = {.lex_state = 0, .external_lex_state = 2}, - [448] = {.lex_state = 0, .external_lex_state = 2}, - [449] = {.lex_state = 0, .external_lex_state = 2}, - [450] = {.lex_state = 0, .external_lex_state = 2}, - [451] = {.lex_state = 0, .external_lex_state = 2}, - [452] = {.lex_state = 0, .external_lex_state = 2}, - [453] = {.lex_state = 0, .external_lex_state = 2}, - [454] = {.lex_state = 0, .external_lex_state = 2}, - [455] = {.lex_state = 0, .external_lex_state = 2}, - [456] = {.lex_state = 0, .external_lex_state = 2}, - [457] = {.lex_state = 0, .external_lex_state = 2}, - [458] = {.lex_state = 0, .external_lex_state = 2}, - [459] = {.lex_state = 0, .external_lex_state = 2}, - [460] = {.lex_state = 0, .external_lex_state = 2}, - [461] = {.lex_state = 0, .external_lex_state = 2}, - [462] = {.lex_state = 0, .external_lex_state = 2}, - [463] = {.lex_state = 0, .external_lex_state = 2}, - [464] = {.lex_state = 0, .external_lex_state = 2}, - [465] = {.lex_state = 0, .external_lex_state = 2}, - [466] = {.lex_state = 0, .external_lex_state = 2}, - [467] = {.lex_state = 0, .external_lex_state = 2}, - [468] = {.lex_state = 0, .external_lex_state = 2}, - [469] = {.lex_state = 0, .external_lex_state = 2}, - [470] = {.lex_state = 0, .external_lex_state = 2}, - [471] = {.lex_state = 0, .external_lex_state = 2}, - [472] = {.lex_state = 0, .external_lex_state = 2}, - [473] = {.lex_state = 0, .external_lex_state = 2}, - [474] = {.lex_state = 0, .external_lex_state = 2}, - [475] = {.lex_state = 0, .external_lex_state = 2}, - [476] = {.lex_state = 0, .external_lex_state = 2}, - [477] = {.lex_state = 0, .external_lex_state = 2}, - [478] = {.lex_state = 0, .external_lex_state = 2}, - [479] = {.lex_state = 0, .external_lex_state = 2}, - [480] = {.lex_state = 0, .external_lex_state = 2}, - [481] = {.lex_state = 0, .external_lex_state = 2}, - [482] = {.lex_state = 0, .external_lex_state = 2}, - [483] = {.lex_state = 0, .external_lex_state = 2}, - [484] = {.lex_state = 0, .external_lex_state = 2}, - [485] = {.lex_state = 0, .external_lex_state = 2}, - [486] = {.lex_state = 0, .external_lex_state = 2}, - [487] = {.lex_state = 272, .external_lex_state = 2}, - [488] = {.lex_state = 272, .external_lex_state = 2}, - [489] = {.lex_state = 272, .external_lex_state = 2}, - [490] = {.lex_state = 272, .external_lex_state = 2}, - [491] = {.lex_state = 272, .external_lex_state = 2}, - [492] = {.lex_state = 272, .external_lex_state = 2}, - [493] = {.lex_state = 272, .external_lex_state = 2}, - [494] = {.lex_state = 272, .external_lex_state = 2}, - [495] = {.lex_state = 272, .external_lex_state = 2}, - [496] = {.lex_state = 272, .external_lex_state = 2}, + [401] = {.lex_state = 16, .external_lex_state = 2}, + [402] = {.lex_state = 16, .external_lex_state = 2}, + [403] = {.lex_state = 16, .external_lex_state = 2}, + [404] = {.lex_state = 16, .external_lex_state = 2}, }; enum { @@ -3698,4077 +1915,3364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_unquoted_argument_token1] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_1] = ACTIONS(1), - [anon_sym_Y] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), - [anon_sym_N] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [sym_bracket_argument] = ACTIONS(1), [sym_bracket_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(466), - [sym_if_command] = STATE(60), - [sym_if_condition] = STATE(171), - [sym_foreach_command] = STATE(133), - [sym_foreach_loop] = STATE(171), - [sym_while_command] = STATE(77), - [sym_while_loop] = STATE(171), - [sym_function_command] = STATE(98), - [sym_function_def] = STATE(171), - [sym_macro_command] = STATE(115), - [sym_macro_def] = STATE(171), - [sym_message_command] = STATE(171), - [sym_normal_command] = STATE(171), - [sym__command_invocation] = STATE(171), - [aux_sym_source_file_repeat1] = STATE(171), + [sym_source_file] = STATE(356), + [sym_if_command] = STATE(8), + [sym_if_condition] = STATE(132), + [sym_foreach_command] = STATE(89), + [sym_foreach_loop] = STATE(132), + [sym_while_command] = STATE(103), + [sym_while_loop] = STATE(132), + [sym_function_command] = STATE(108), + [sym_function_def] = STATE(132), + [sym_macro_command] = STATE(121), + [sym_macro_def] = STATE(132), + [sym_normal_command] = STATE(132), + [sym__command_invocation] = STATE(132), + [aux_sym_source_file_repeat1] = STATE(132), [ts_builtin_sym_end] = ACTIONS(5), [sym_if] = ACTIONS(7), [sym_foreach] = ACTIONS(9), [sym_while] = ACTIONS(11), [sym_function] = ACTIONS(13), [sym_macro] = ACTIONS(15), - [sym_message] = ACTIONS(17), - [sym_identifier] = ACTIONS(19), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [2] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(6), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(6), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(33), - [anon_sym_ON] = ACTIONS(33), - [anon_sym_YES] = ACTIONS(33), - [anon_sym_TRUE] = ACTIONS(33), - [anon_sym_Y] = ACTIONS(35), - [anon_sym_0] = ACTIONS(33), - [anon_sym_OFF] = ACTIONS(33), - [anon_sym_NO] = ACTIONS(35), - [anon_sym_FALSE] = ACTIONS(33), - [anon_sym_N] = ACTIONS(35), - [anon_sym_IGNORE] = ACTIONS(33), - [anon_sym_NOTFOUND] = ACTIONS(33), - [anon_sym_NOT] = ACTIONS(35), - [anon_sym_AND] = ACTIONS(33), - [anon_sym_OR] = ACTIONS(33), - [anon_sym_COMMAND] = ACTIONS(33), - [anon_sym_POLICY] = ACTIONS(33), - [anon_sym_TARGET] = ACTIONS(33), - [anon_sym_TEST] = ACTIONS(33), - [anon_sym_DEFINED] = ACTIONS(33), - [anon_sym_CACHE] = ACTIONS(33), - [anon_sym_ENV] = ACTIONS(33), - [anon_sym_IN_LIST] = ACTIONS(33), - [anon_sym_EXISTS] = ACTIONS(33), - [anon_sym_IS_NEWER_THAN] = ACTIONS(33), - [anon_sym_IS_DIRECTORY] = ACTIONS(33), - [anon_sym_IS_SYMLINK] = ACTIONS(33), - [anon_sym_IS_ABSOLUTE] = ACTIONS(33), - [anon_sym_MATCHES] = ACTIONS(33), - [anon_sym_LESS] = ACTIONS(35), - [anon_sym_GREATER] = ACTIONS(35), - [anon_sym_EQUAL] = ACTIONS(33), - [anon_sym_LESS_EQUAL] = ACTIONS(33), - [anon_sym_GREATER_EQUAL] = ACTIONS(33), - [anon_sym_STRLESS] = ACTIONS(35), - [anon_sym_STRGREATER] = ACTIONS(35), - [anon_sym_STREQUAL] = ACTIONS(33), - [anon_sym_STRLESS_EQUAL] = ACTIONS(33), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(33), - [anon_sym_VERSION_LESS] = ACTIONS(35), - [anon_sym_VERSION_GREATER] = ACTIONS(35), - [anon_sym_VERSION_EQUAL] = ACTIONS(33), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(33), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(33), - [anon_sym_RPAREN] = ACTIONS(37), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [3] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(4), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(4), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(41), - [anon_sym_ON] = ACTIONS(41), - [anon_sym_YES] = ACTIONS(41), - [anon_sym_TRUE] = ACTIONS(41), - [anon_sym_Y] = ACTIONS(43), - [anon_sym_0] = ACTIONS(41), - [anon_sym_OFF] = ACTIONS(41), - [anon_sym_NO] = ACTIONS(43), - [anon_sym_FALSE] = ACTIONS(41), - [anon_sym_N] = ACTIONS(43), - [anon_sym_IGNORE] = ACTIONS(41), - [anon_sym_NOTFOUND] = ACTIONS(41), - [anon_sym_NOT] = ACTIONS(43), - [anon_sym_AND] = ACTIONS(41), - [anon_sym_OR] = ACTIONS(41), - [anon_sym_COMMAND] = ACTIONS(41), - [anon_sym_POLICY] = ACTIONS(41), - [anon_sym_TARGET] = ACTIONS(41), - [anon_sym_TEST] = ACTIONS(41), - [anon_sym_DEFINED] = ACTIONS(41), - [anon_sym_CACHE] = ACTIONS(41), - [anon_sym_ENV] = ACTIONS(41), - [anon_sym_IN_LIST] = ACTIONS(41), - [anon_sym_EXISTS] = ACTIONS(41), - [anon_sym_IS_NEWER_THAN] = ACTIONS(41), - [anon_sym_IS_DIRECTORY] = ACTIONS(41), - [anon_sym_IS_SYMLINK] = ACTIONS(41), - [anon_sym_IS_ABSOLUTE] = ACTIONS(41), - [anon_sym_MATCHES] = ACTIONS(41), - [anon_sym_LESS] = ACTIONS(43), - [anon_sym_GREATER] = ACTIONS(43), - [anon_sym_EQUAL] = ACTIONS(41), - [anon_sym_LESS_EQUAL] = ACTIONS(41), - [anon_sym_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_STRLESS] = ACTIONS(43), - [anon_sym_STRGREATER] = ACTIONS(43), - [anon_sym_STREQUAL] = ACTIONS(41), - [anon_sym_STRLESS_EQUAL] = ACTIONS(41), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS] = ACTIONS(43), - [anon_sym_VERSION_GREATER] = ACTIONS(43), - [anon_sym_VERSION_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(45), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [4] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(4), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(4), - [sym__escape_identity] = ACTIONS(47), - [anon_sym_BSLASHt] = ACTIONS(47), - [anon_sym_BSLASHr] = ACTIONS(47), - [anon_sym_BSLASHn] = ACTIONS(47), - [sym__escape_semicolon] = ACTIONS(47), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(50), - [anon_sym_DOLLARENV] = ACTIONS(53), - [anon_sym_DOLLARCACHE] = ACTIONS(56), - [anon_sym_DQUOTE] = ACTIONS(59), - [aux_sym_unquoted_argument_token1] = ACTIONS(62), - [anon_sym_1] = ACTIONS(65), - [anon_sym_ON] = ACTIONS(65), - [anon_sym_YES] = ACTIONS(65), - [anon_sym_TRUE] = ACTIONS(65), - [anon_sym_Y] = ACTIONS(68), - [anon_sym_0] = ACTIONS(65), - [anon_sym_OFF] = ACTIONS(65), - [anon_sym_NO] = ACTIONS(68), - [anon_sym_FALSE] = ACTIONS(65), - [anon_sym_N] = ACTIONS(68), - [anon_sym_IGNORE] = ACTIONS(65), - [anon_sym_NOTFOUND] = ACTIONS(65), - [anon_sym_NOT] = ACTIONS(68), - [anon_sym_AND] = ACTIONS(65), - [anon_sym_OR] = ACTIONS(65), - [anon_sym_COMMAND] = ACTIONS(65), - [anon_sym_POLICY] = ACTIONS(65), - [anon_sym_TARGET] = ACTIONS(65), - [anon_sym_TEST] = ACTIONS(65), - [anon_sym_DEFINED] = ACTIONS(65), - [anon_sym_CACHE] = ACTIONS(65), - [anon_sym_ENV] = ACTIONS(65), - [anon_sym_IN_LIST] = ACTIONS(65), - [anon_sym_EXISTS] = ACTIONS(65), - [anon_sym_IS_NEWER_THAN] = ACTIONS(65), - [anon_sym_IS_DIRECTORY] = ACTIONS(65), - [anon_sym_IS_SYMLINK] = ACTIONS(65), - [anon_sym_IS_ABSOLUTE] = ACTIONS(65), - [anon_sym_MATCHES] = ACTIONS(65), - [anon_sym_LESS] = ACTIONS(68), - [anon_sym_GREATER] = ACTIONS(68), - [anon_sym_EQUAL] = ACTIONS(65), - [anon_sym_LESS_EQUAL] = ACTIONS(65), - [anon_sym_GREATER_EQUAL] = ACTIONS(65), - [anon_sym_STRLESS] = ACTIONS(68), - [anon_sym_STRGREATER] = ACTIONS(68), - [anon_sym_STREQUAL] = ACTIONS(65), - [anon_sym_STRLESS_EQUAL] = ACTIONS(65), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(65), - [anon_sym_VERSION_LESS] = ACTIONS(68), - [anon_sym_VERSION_GREATER] = ACTIONS(68), - [anon_sym_VERSION_EQUAL] = ACTIONS(65), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(65), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(71), - [sym_bracket_argument] = ACTIONS(73), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [5] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(3), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(3), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(76), - [anon_sym_ON] = ACTIONS(76), - [anon_sym_YES] = ACTIONS(76), - [anon_sym_TRUE] = ACTIONS(76), - [anon_sym_Y] = ACTIONS(78), - [anon_sym_0] = ACTIONS(76), - [anon_sym_OFF] = ACTIONS(76), - [anon_sym_NO] = ACTIONS(78), - [anon_sym_FALSE] = ACTIONS(76), - [anon_sym_N] = ACTIONS(78), - [anon_sym_IGNORE] = ACTIONS(76), - [anon_sym_NOTFOUND] = ACTIONS(76), - [anon_sym_NOT] = ACTIONS(78), - [anon_sym_AND] = ACTIONS(76), - [anon_sym_OR] = ACTIONS(76), - [anon_sym_COMMAND] = ACTIONS(76), - [anon_sym_POLICY] = ACTIONS(76), - [anon_sym_TARGET] = ACTIONS(76), - [anon_sym_TEST] = ACTIONS(76), - [anon_sym_DEFINED] = ACTIONS(76), - [anon_sym_CACHE] = ACTIONS(76), - [anon_sym_ENV] = ACTIONS(76), - [anon_sym_IN_LIST] = ACTIONS(76), - [anon_sym_EXISTS] = ACTIONS(76), - [anon_sym_IS_NEWER_THAN] = ACTIONS(76), - [anon_sym_IS_DIRECTORY] = ACTIONS(76), - [anon_sym_IS_SYMLINK] = ACTIONS(76), - [anon_sym_IS_ABSOLUTE] = ACTIONS(76), - [anon_sym_MATCHES] = ACTIONS(76), - [anon_sym_LESS] = ACTIONS(78), - [anon_sym_GREATER] = ACTIONS(78), - [anon_sym_EQUAL] = ACTIONS(76), - [anon_sym_LESS_EQUAL] = ACTIONS(76), - [anon_sym_GREATER_EQUAL] = ACTIONS(76), - [anon_sym_STRLESS] = ACTIONS(78), - [anon_sym_STRGREATER] = ACTIONS(78), - [anon_sym_STREQUAL] = ACTIONS(76), - [anon_sym_STRLESS_EQUAL] = ACTIONS(76), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(76), - [anon_sym_VERSION_LESS] = ACTIONS(78), - [anon_sym_VERSION_GREATER] = ACTIONS(78), - [anon_sym_VERSION_EQUAL] = ACTIONS(76), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(76), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(76), - [anon_sym_RPAREN] = ACTIONS(80), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [6] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(4), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(4), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(41), - [anon_sym_ON] = ACTIONS(41), - [anon_sym_YES] = ACTIONS(41), - [anon_sym_TRUE] = ACTIONS(41), - [anon_sym_Y] = ACTIONS(43), - [anon_sym_0] = ACTIONS(41), - [anon_sym_OFF] = ACTIONS(41), - [anon_sym_NO] = ACTIONS(43), - [anon_sym_FALSE] = ACTIONS(41), - [anon_sym_N] = ACTIONS(43), - [anon_sym_IGNORE] = ACTIONS(41), - [anon_sym_NOTFOUND] = ACTIONS(41), - [anon_sym_NOT] = ACTIONS(43), - [anon_sym_AND] = ACTIONS(41), - [anon_sym_OR] = ACTIONS(41), - [anon_sym_COMMAND] = ACTIONS(41), - [anon_sym_POLICY] = ACTIONS(41), - [anon_sym_TARGET] = ACTIONS(41), - [anon_sym_TEST] = ACTIONS(41), - [anon_sym_DEFINED] = ACTIONS(41), - [anon_sym_CACHE] = ACTIONS(41), - [anon_sym_ENV] = ACTIONS(41), - [anon_sym_IN_LIST] = ACTIONS(41), - [anon_sym_EXISTS] = ACTIONS(41), - [anon_sym_IS_NEWER_THAN] = ACTIONS(41), - [anon_sym_IS_DIRECTORY] = ACTIONS(41), - [anon_sym_IS_SYMLINK] = ACTIONS(41), - [anon_sym_IS_ABSOLUTE] = ACTIONS(41), - [anon_sym_MATCHES] = ACTIONS(41), - [anon_sym_LESS] = ACTIONS(43), - [anon_sym_GREATER] = ACTIONS(43), - [anon_sym_EQUAL] = ACTIONS(41), - [anon_sym_LESS_EQUAL] = ACTIONS(41), - [anon_sym_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_STRLESS] = ACTIONS(43), - [anon_sym_STRGREATER] = ACTIONS(43), - [anon_sym_STREQUAL] = ACTIONS(41), - [anon_sym_STRLESS_EQUAL] = ACTIONS(41), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS] = ACTIONS(43), - [anon_sym_VERSION_GREATER] = ACTIONS(43), - [anon_sym_VERSION_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(82), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [7] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(8), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(8), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(84), - [anon_sym_ON] = ACTIONS(84), - [anon_sym_YES] = ACTIONS(84), - [anon_sym_TRUE] = ACTIONS(84), - [anon_sym_Y] = ACTIONS(86), - [anon_sym_0] = ACTIONS(84), - [anon_sym_OFF] = ACTIONS(84), - [anon_sym_NO] = ACTIONS(86), - [anon_sym_FALSE] = ACTIONS(84), - [anon_sym_N] = ACTIONS(86), - [anon_sym_IGNORE] = ACTIONS(84), - [anon_sym_NOTFOUND] = ACTIONS(84), - [anon_sym_NOT] = ACTIONS(86), - [anon_sym_AND] = ACTIONS(84), - [anon_sym_OR] = ACTIONS(84), - [anon_sym_COMMAND] = ACTIONS(84), - [anon_sym_POLICY] = ACTIONS(84), - [anon_sym_TARGET] = ACTIONS(84), - [anon_sym_TEST] = ACTIONS(84), - [anon_sym_DEFINED] = ACTIONS(84), - [anon_sym_CACHE] = ACTIONS(84), - [anon_sym_ENV] = ACTIONS(84), - [anon_sym_IN_LIST] = ACTIONS(84), - [anon_sym_EXISTS] = ACTIONS(84), - [anon_sym_IS_NEWER_THAN] = ACTIONS(84), - [anon_sym_IS_DIRECTORY] = ACTIONS(84), - [anon_sym_IS_SYMLINK] = ACTIONS(84), - [anon_sym_IS_ABSOLUTE] = ACTIONS(84), - [anon_sym_MATCHES] = ACTIONS(84), - [anon_sym_LESS] = ACTIONS(86), - [anon_sym_GREATER] = ACTIONS(86), - [anon_sym_EQUAL] = ACTIONS(84), - [anon_sym_LESS_EQUAL] = ACTIONS(84), - [anon_sym_GREATER_EQUAL] = ACTIONS(84), - [anon_sym_STRLESS] = ACTIONS(86), - [anon_sym_STRGREATER] = ACTIONS(86), - [anon_sym_STREQUAL] = ACTIONS(84), - [anon_sym_STRLESS_EQUAL] = ACTIONS(84), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(84), - [anon_sym_VERSION_LESS] = ACTIONS(86), - [anon_sym_VERSION_GREATER] = ACTIONS(86), - [anon_sym_VERSION_EQUAL] = ACTIONS(84), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(84), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(88), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [8] = { - [sym_escape_sequence] = STATE(23), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(23), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [sym_argument] = STATE(4), - [sym_quoted_argument] = STATE(31), - [sym_unquoted_argument] = STATE(31), - [aux_sym_unquoted_argument_repeat1] = STATE(23), - [aux_sym_if_command_repeat1] = STATE(4), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [aux_sym_unquoted_argument_token1] = ACTIONS(31), - [anon_sym_1] = ACTIONS(41), - [anon_sym_ON] = ACTIONS(41), - [anon_sym_YES] = ACTIONS(41), - [anon_sym_TRUE] = ACTIONS(41), - [anon_sym_Y] = ACTIONS(43), - [anon_sym_0] = ACTIONS(41), - [anon_sym_OFF] = ACTIONS(41), - [anon_sym_NO] = ACTIONS(43), - [anon_sym_FALSE] = ACTIONS(41), - [anon_sym_N] = ACTIONS(43), - [anon_sym_IGNORE] = ACTIONS(41), - [anon_sym_NOTFOUND] = ACTIONS(41), - [anon_sym_NOT] = ACTIONS(43), - [anon_sym_AND] = ACTIONS(41), - [anon_sym_OR] = ACTIONS(41), - [anon_sym_COMMAND] = ACTIONS(41), - [anon_sym_POLICY] = ACTIONS(41), - [anon_sym_TARGET] = ACTIONS(41), - [anon_sym_TEST] = ACTIONS(41), - [anon_sym_DEFINED] = ACTIONS(41), - [anon_sym_CACHE] = ACTIONS(41), - [anon_sym_ENV] = ACTIONS(41), - [anon_sym_IN_LIST] = ACTIONS(41), - [anon_sym_EXISTS] = ACTIONS(41), - [anon_sym_IS_NEWER_THAN] = ACTIONS(41), - [anon_sym_IS_DIRECTORY] = ACTIONS(41), - [anon_sym_IS_SYMLINK] = ACTIONS(41), - [anon_sym_IS_ABSOLUTE] = ACTIONS(41), - [anon_sym_MATCHES] = ACTIONS(41), - [anon_sym_LESS] = ACTIONS(43), - [anon_sym_GREATER] = ACTIONS(43), - [anon_sym_EQUAL] = ACTIONS(41), - [anon_sym_LESS_EQUAL] = ACTIONS(41), - [anon_sym_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_STRLESS] = ACTIONS(43), - [anon_sym_STRGREATER] = ACTIONS(43), - [anon_sym_STREQUAL] = ACTIONS(41), - [anon_sym_STRLESS_EQUAL] = ACTIONS(41), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS] = ACTIONS(43), - [anon_sym_VERSION_GREATER] = ACTIONS(43), - [anon_sym_VERSION_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(41), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(90), - [sym_bracket_argument] = ACTIONS(39), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [9] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(398), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(104), - [anon_sym_ON] = ACTIONS(104), - [anon_sym_YES] = ACTIONS(104), - [anon_sym_TRUE] = ACTIONS(104), - [anon_sym_Y] = ACTIONS(106), - [anon_sym_0] = ACTIONS(104), - [anon_sym_OFF] = ACTIONS(104), - [anon_sym_NO] = ACTIONS(106), - [anon_sym_FALSE] = ACTIONS(104), - [anon_sym_N] = ACTIONS(106), - [anon_sym_IGNORE] = ACTIONS(104), - [anon_sym_NOTFOUND] = ACTIONS(104), - [anon_sym_NOT] = ACTIONS(106), - [anon_sym_AND] = ACTIONS(104), - [anon_sym_OR] = ACTIONS(104), - [anon_sym_COMMAND] = ACTIONS(104), - [anon_sym_POLICY] = ACTIONS(104), - [anon_sym_TARGET] = ACTIONS(104), - [anon_sym_TEST] = ACTIONS(104), - [anon_sym_DEFINED] = ACTIONS(104), - [anon_sym_CACHE] = ACTIONS(104), - [anon_sym_ENV] = ACTIONS(104), - [anon_sym_IN_LIST] = ACTIONS(104), - [anon_sym_EXISTS] = ACTIONS(104), - [anon_sym_IS_NEWER_THAN] = ACTIONS(104), - [anon_sym_IS_DIRECTORY] = ACTIONS(104), - [anon_sym_IS_SYMLINK] = ACTIONS(104), - [anon_sym_IS_ABSOLUTE] = ACTIONS(104), - [anon_sym_MATCHES] = ACTIONS(104), - [anon_sym_LESS] = ACTIONS(106), - [anon_sym_GREATER] = ACTIONS(106), - [anon_sym_EQUAL] = ACTIONS(104), - [anon_sym_LESS_EQUAL] = ACTIONS(104), - [anon_sym_GREATER_EQUAL] = ACTIONS(104), - [anon_sym_STRLESS] = ACTIONS(106), - [anon_sym_STRGREATER] = ACTIONS(106), - [anon_sym_STREQUAL] = ACTIONS(104), - [anon_sym_STRLESS_EQUAL] = ACTIONS(104), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(104), - [anon_sym_VERSION_LESS] = ACTIONS(106), - [anon_sym_VERSION_GREATER] = ACTIONS(106), - [anon_sym_VERSION_EQUAL] = ACTIONS(104), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(104), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(104), - [anon_sym_RPAREN] = ACTIONS(108), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [10] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(406), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(112), - [anon_sym_ON] = ACTIONS(112), - [anon_sym_YES] = ACTIONS(112), - [anon_sym_TRUE] = ACTIONS(112), - [anon_sym_Y] = ACTIONS(114), - [anon_sym_0] = ACTIONS(112), - [anon_sym_OFF] = ACTIONS(112), - [anon_sym_NO] = ACTIONS(114), - [anon_sym_FALSE] = ACTIONS(112), - [anon_sym_N] = ACTIONS(114), - [anon_sym_IGNORE] = ACTIONS(112), - [anon_sym_NOTFOUND] = ACTIONS(112), - [anon_sym_NOT] = ACTIONS(114), - [anon_sym_AND] = ACTIONS(112), - [anon_sym_OR] = ACTIONS(112), - [anon_sym_COMMAND] = ACTIONS(112), - [anon_sym_POLICY] = ACTIONS(112), - [anon_sym_TARGET] = ACTIONS(112), - [anon_sym_TEST] = ACTIONS(112), - [anon_sym_DEFINED] = ACTIONS(112), - [anon_sym_CACHE] = ACTIONS(112), - [anon_sym_ENV] = ACTIONS(112), - [anon_sym_IN_LIST] = ACTIONS(112), - [anon_sym_EXISTS] = ACTIONS(112), - [anon_sym_IS_NEWER_THAN] = ACTIONS(112), - [anon_sym_IS_DIRECTORY] = ACTIONS(112), - [anon_sym_IS_SYMLINK] = ACTIONS(112), - [anon_sym_IS_ABSOLUTE] = ACTIONS(112), - [anon_sym_MATCHES] = ACTIONS(112), - [anon_sym_LESS] = ACTIONS(114), - [anon_sym_GREATER] = ACTIONS(114), - [anon_sym_EQUAL] = ACTIONS(112), - [anon_sym_LESS_EQUAL] = ACTIONS(112), - [anon_sym_GREATER_EQUAL] = ACTIONS(112), - [anon_sym_STRLESS] = ACTIONS(114), - [anon_sym_STRGREATER] = ACTIONS(114), - [anon_sym_STREQUAL] = ACTIONS(112), - [anon_sym_STRLESS_EQUAL] = ACTIONS(112), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(112), - [anon_sym_VERSION_LESS] = ACTIONS(114), - [anon_sym_VERSION_GREATER] = ACTIONS(114), - [anon_sym_VERSION_EQUAL] = ACTIONS(112), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(112), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(112), - [anon_sym_RPAREN] = ACTIONS(116), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [11] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(397), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(118), - [anon_sym_ON] = ACTIONS(118), - [anon_sym_YES] = ACTIONS(118), - [anon_sym_TRUE] = ACTIONS(118), - [anon_sym_Y] = ACTIONS(120), - [anon_sym_0] = ACTIONS(118), - [anon_sym_OFF] = ACTIONS(118), - [anon_sym_NO] = ACTIONS(120), - [anon_sym_FALSE] = ACTIONS(118), - [anon_sym_N] = ACTIONS(120), - [anon_sym_IGNORE] = ACTIONS(118), - [anon_sym_NOTFOUND] = ACTIONS(118), - [anon_sym_NOT] = ACTIONS(120), - [anon_sym_AND] = ACTIONS(118), - [anon_sym_OR] = ACTIONS(118), - [anon_sym_COMMAND] = ACTIONS(118), - [anon_sym_POLICY] = ACTIONS(118), - [anon_sym_TARGET] = ACTIONS(118), - [anon_sym_TEST] = ACTIONS(118), - [anon_sym_DEFINED] = ACTIONS(118), - [anon_sym_CACHE] = ACTIONS(118), - [anon_sym_ENV] = ACTIONS(118), - [anon_sym_IN_LIST] = ACTIONS(118), - [anon_sym_EXISTS] = ACTIONS(118), - [anon_sym_IS_NEWER_THAN] = ACTIONS(118), - [anon_sym_IS_DIRECTORY] = ACTIONS(118), - [anon_sym_IS_SYMLINK] = ACTIONS(118), - [anon_sym_IS_ABSOLUTE] = ACTIONS(118), - [anon_sym_MATCHES] = ACTIONS(118), - [anon_sym_LESS] = ACTIONS(120), - [anon_sym_GREATER] = ACTIONS(120), - [anon_sym_EQUAL] = ACTIONS(118), - [anon_sym_LESS_EQUAL] = ACTIONS(118), - [anon_sym_GREATER_EQUAL] = ACTIONS(118), - [anon_sym_STRLESS] = ACTIONS(120), - [anon_sym_STRGREATER] = ACTIONS(120), - [anon_sym_STREQUAL] = ACTIONS(118), - [anon_sym_STRLESS_EQUAL] = ACTIONS(118), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(118), - [anon_sym_VERSION_LESS] = ACTIONS(120), - [anon_sym_VERSION_GREATER] = ACTIONS(120), - [anon_sym_VERSION_EQUAL] = ACTIONS(118), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(118), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(122), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [12] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(417), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(124), - [anon_sym_ON] = ACTIONS(124), - [anon_sym_YES] = ACTIONS(124), - [anon_sym_TRUE] = ACTIONS(124), - [anon_sym_Y] = ACTIONS(126), - [anon_sym_0] = ACTIONS(124), - [anon_sym_OFF] = ACTIONS(124), - [anon_sym_NO] = ACTIONS(126), - [anon_sym_FALSE] = ACTIONS(124), - [anon_sym_N] = ACTIONS(126), - [anon_sym_IGNORE] = ACTIONS(124), - [anon_sym_NOTFOUND] = ACTIONS(124), - [anon_sym_NOT] = ACTIONS(126), - [anon_sym_AND] = ACTIONS(124), - [anon_sym_OR] = ACTIONS(124), - [anon_sym_COMMAND] = ACTIONS(124), - [anon_sym_POLICY] = ACTIONS(124), - [anon_sym_TARGET] = ACTIONS(124), - [anon_sym_TEST] = ACTIONS(124), - [anon_sym_DEFINED] = ACTIONS(124), - [anon_sym_CACHE] = ACTIONS(124), - [anon_sym_ENV] = ACTIONS(124), - [anon_sym_IN_LIST] = ACTIONS(124), - [anon_sym_EXISTS] = ACTIONS(124), - [anon_sym_IS_NEWER_THAN] = ACTIONS(124), - [anon_sym_IS_DIRECTORY] = ACTIONS(124), - [anon_sym_IS_SYMLINK] = ACTIONS(124), - [anon_sym_IS_ABSOLUTE] = ACTIONS(124), - [anon_sym_MATCHES] = ACTIONS(124), - [anon_sym_LESS] = ACTIONS(126), - [anon_sym_GREATER] = ACTIONS(126), - [anon_sym_EQUAL] = ACTIONS(124), - [anon_sym_LESS_EQUAL] = ACTIONS(124), - [anon_sym_GREATER_EQUAL] = ACTIONS(124), - [anon_sym_STRLESS] = ACTIONS(126), - [anon_sym_STRGREATER] = ACTIONS(126), - [anon_sym_STREQUAL] = ACTIONS(124), - [anon_sym_STRLESS_EQUAL] = ACTIONS(124), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(124), - [anon_sym_VERSION_LESS] = ACTIONS(126), - [anon_sym_VERSION_GREATER] = ACTIONS(126), - [anon_sym_VERSION_EQUAL] = ACTIONS(124), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(124), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(128), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [13] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(404), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(130), - [anon_sym_ON] = ACTIONS(130), - [anon_sym_YES] = ACTIONS(130), - [anon_sym_TRUE] = ACTIONS(130), - [anon_sym_Y] = ACTIONS(132), - [anon_sym_0] = ACTIONS(130), - [anon_sym_OFF] = ACTIONS(130), - [anon_sym_NO] = ACTIONS(132), - [anon_sym_FALSE] = ACTIONS(130), - [anon_sym_N] = ACTIONS(132), - [anon_sym_IGNORE] = ACTIONS(130), - [anon_sym_NOTFOUND] = ACTIONS(130), - [anon_sym_NOT] = ACTIONS(132), - [anon_sym_AND] = ACTIONS(130), - [anon_sym_OR] = ACTIONS(130), - [anon_sym_COMMAND] = ACTIONS(130), - [anon_sym_POLICY] = ACTIONS(130), - [anon_sym_TARGET] = ACTIONS(130), - [anon_sym_TEST] = ACTIONS(130), - [anon_sym_DEFINED] = ACTIONS(130), - [anon_sym_CACHE] = ACTIONS(130), - [anon_sym_ENV] = ACTIONS(130), - [anon_sym_IN_LIST] = ACTIONS(130), - [anon_sym_EXISTS] = ACTIONS(130), - [anon_sym_IS_NEWER_THAN] = ACTIONS(130), - [anon_sym_IS_DIRECTORY] = ACTIONS(130), - [anon_sym_IS_SYMLINK] = ACTIONS(130), - [anon_sym_IS_ABSOLUTE] = ACTIONS(130), - [anon_sym_MATCHES] = ACTIONS(130), - [anon_sym_LESS] = ACTIONS(132), - [anon_sym_GREATER] = ACTIONS(132), - [anon_sym_EQUAL] = ACTIONS(130), - [anon_sym_LESS_EQUAL] = ACTIONS(130), - [anon_sym_GREATER_EQUAL] = ACTIONS(130), - [anon_sym_STRLESS] = ACTIONS(132), - [anon_sym_STRGREATER] = ACTIONS(132), - [anon_sym_STREQUAL] = ACTIONS(130), - [anon_sym_STRLESS_EQUAL] = ACTIONS(130), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(130), - [anon_sym_VERSION_LESS] = ACTIONS(132), - [anon_sym_VERSION_GREATER] = ACTIONS(132), - [anon_sym_VERSION_EQUAL] = ACTIONS(130), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(130), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(130), - [anon_sym_RPAREN] = ACTIONS(134), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [14] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(401), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(136), - [anon_sym_ON] = ACTIONS(136), - [anon_sym_YES] = ACTIONS(136), - [anon_sym_TRUE] = ACTIONS(136), - [anon_sym_Y] = ACTIONS(138), - [anon_sym_0] = ACTIONS(136), - [anon_sym_OFF] = ACTIONS(136), - [anon_sym_NO] = ACTIONS(138), - [anon_sym_FALSE] = ACTIONS(136), - [anon_sym_N] = ACTIONS(138), - [anon_sym_IGNORE] = ACTIONS(136), - [anon_sym_NOTFOUND] = ACTIONS(136), - [anon_sym_NOT] = ACTIONS(138), - [anon_sym_AND] = ACTIONS(136), - [anon_sym_OR] = ACTIONS(136), - [anon_sym_COMMAND] = ACTIONS(136), - [anon_sym_POLICY] = ACTIONS(136), - [anon_sym_TARGET] = ACTIONS(136), - [anon_sym_TEST] = ACTIONS(136), - [anon_sym_DEFINED] = ACTIONS(136), - [anon_sym_CACHE] = ACTIONS(136), - [anon_sym_ENV] = ACTIONS(136), - [anon_sym_IN_LIST] = ACTIONS(136), - [anon_sym_EXISTS] = ACTIONS(136), - [anon_sym_IS_NEWER_THAN] = ACTIONS(136), - [anon_sym_IS_DIRECTORY] = ACTIONS(136), - [anon_sym_IS_SYMLINK] = ACTIONS(136), - [anon_sym_IS_ABSOLUTE] = ACTIONS(136), - [anon_sym_MATCHES] = ACTIONS(136), - [anon_sym_LESS] = ACTIONS(138), - [anon_sym_GREATER] = ACTIONS(138), - [anon_sym_EQUAL] = ACTIONS(136), - [anon_sym_LESS_EQUAL] = ACTIONS(136), - [anon_sym_GREATER_EQUAL] = ACTIONS(136), - [anon_sym_STRLESS] = ACTIONS(138), - [anon_sym_STRGREATER] = ACTIONS(138), - [anon_sym_STREQUAL] = ACTIONS(136), - [anon_sym_STRLESS_EQUAL] = ACTIONS(136), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(136), - [anon_sym_VERSION_LESS] = ACTIONS(138), - [anon_sym_VERSION_GREATER] = ACTIONS(138), - [anon_sym_VERSION_EQUAL] = ACTIONS(136), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(136), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(140), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [15] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(424), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(142), - [anon_sym_ON] = ACTIONS(142), - [anon_sym_YES] = ACTIONS(142), - [anon_sym_TRUE] = ACTIONS(142), - [anon_sym_Y] = ACTIONS(144), - [anon_sym_0] = ACTIONS(142), - [anon_sym_OFF] = ACTIONS(142), - [anon_sym_NO] = ACTIONS(144), - [anon_sym_FALSE] = ACTIONS(142), - [anon_sym_N] = ACTIONS(144), - [anon_sym_IGNORE] = ACTIONS(142), - [anon_sym_NOTFOUND] = ACTIONS(142), - [anon_sym_NOT] = ACTIONS(144), - [anon_sym_AND] = ACTIONS(142), - [anon_sym_OR] = ACTIONS(142), - [anon_sym_COMMAND] = ACTIONS(142), - [anon_sym_POLICY] = ACTIONS(142), - [anon_sym_TARGET] = ACTIONS(142), - [anon_sym_TEST] = ACTIONS(142), - [anon_sym_DEFINED] = ACTIONS(142), - [anon_sym_CACHE] = ACTIONS(142), - [anon_sym_ENV] = ACTIONS(142), - [anon_sym_IN_LIST] = ACTIONS(142), - [anon_sym_EXISTS] = ACTIONS(142), - [anon_sym_IS_NEWER_THAN] = ACTIONS(142), - [anon_sym_IS_DIRECTORY] = ACTIONS(142), - [anon_sym_IS_SYMLINK] = ACTIONS(142), - [anon_sym_IS_ABSOLUTE] = ACTIONS(142), - [anon_sym_MATCHES] = ACTIONS(142), - [anon_sym_LESS] = ACTIONS(144), - [anon_sym_GREATER] = ACTIONS(144), - [anon_sym_EQUAL] = ACTIONS(142), - [anon_sym_LESS_EQUAL] = ACTIONS(142), - [anon_sym_GREATER_EQUAL] = ACTIONS(142), - [anon_sym_STRLESS] = ACTIONS(144), - [anon_sym_STRGREATER] = ACTIONS(144), - [anon_sym_STREQUAL] = ACTIONS(142), - [anon_sym_STRLESS_EQUAL] = ACTIONS(142), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(142), - [anon_sym_VERSION_LESS] = ACTIONS(144), - [anon_sym_VERSION_GREATER] = ACTIONS(144), - [anon_sym_VERSION_EQUAL] = ACTIONS(142), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(142), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(142), - [anon_sym_RPAREN] = ACTIONS(146), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [16] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(399), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(148), - [anon_sym_ON] = ACTIONS(148), - [anon_sym_YES] = ACTIONS(148), - [anon_sym_TRUE] = ACTIONS(148), - [anon_sym_Y] = ACTIONS(150), - [anon_sym_0] = ACTIONS(148), - [anon_sym_OFF] = ACTIONS(148), - [anon_sym_NO] = ACTIONS(150), - [anon_sym_FALSE] = ACTIONS(148), - [anon_sym_N] = ACTIONS(150), - [anon_sym_IGNORE] = ACTIONS(148), - [anon_sym_NOTFOUND] = ACTIONS(148), - [anon_sym_NOT] = ACTIONS(150), - [anon_sym_AND] = ACTIONS(148), - [anon_sym_OR] = ACTIONS(148), - [anon_sym_COMMAND] = ACTIONS(148), - [anon_sym_POLICY] = ACTIONS(148), - [anon_sym_TARGET] = ACTIONS(148), - [anon_sym_TEST] = ACTIONS(148), - [anon_sym_DEFINED] = ACTIONS(148), - [anon_sym_CACHE] = ACTIONS(148), - [anon_sym_ENV] = ACTIONS(148), - [anon_sym_IN_LIST] = ACTIONS(148), - [anon_sym_EXISTS] = ACTIONS(148), - [anon_sym_IS_NEWER_THAN] = ACTIONS(148), - [anon_sym_IS_DIRECTORY] = ACTIONS(148), - [anon_sym_IS_SYMLINK] = ACTIONS(148), - [anon_sym_IS_ABSOLUTE] = ACTIONS(148), - [anon_sym_MATCHES] = ACTIONS(148), - [anon_sym_LESS] = ACTIONS(150), - [anon_sym_GREATER] = ACTIONS(150), - [anon_sym_EQUAL] = ACTIONS(148), - [anon_sym_LESS_EQUAL] = ACTIONS(148), - [anon_sym_GREATER_EQUAL] = ACTIONS(148), - [anon_sym_STRLESS] = ACTIONS(150), - [anon_sym_STRGREATER] = ACTIONS(150), - [anon_sym_STREQUAL] = ACTIONS(148), - [anon_sym_STRLESS_EQUAL] = ACTIONS(148), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(148), - [anon_sym_VERSION_LESS] = ACTIONS(150), - [anon_sym_VERSION_GREATER] = ACTIONS(150), - [anon_sym_VERSION_EQUAL] = ACTIONS(148), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(148), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(152), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [17] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(394), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(154), - [anon_sym_ON] = ACTIONS(154), - [anon_sym_YES] = ACTIONS(154), - [anon_sym_TRUE] = ACTIONS(154), - [anon_sym_Y] = ACTIONS(156), - [anon_sym_0] = ACTIONS(154), - [anon_sym_OFF] = ACTIONS(154), - [anon_sym_NO] = ACTIONS(156), - [anon_sym_FALSE] = ACTIONS(154), - [anon_sym_N] = ACTIONS(156), - [anon_sym_IGNORE] = ACTIONS(154), - [anon_sym_NOTFOUND] = ACTIONS(154), - [anon_sym_NOT] = ACTIONS(156), - [anon_sym_AND] = ACTIONS(154), - [anon_sym_OR] = ACTIONS(154), - [anon_sym_COMMAND] = ACTIONS(154), - [anon_sym_POLICY] = ACTIONS(154), - [anon_sym_TARGET] = ACTIONS(154), - [anon_sym_TEST] = ACTIONS(154), - [anon_sym_DEFINED] = ACTIONS(154), - [anon_sym_CACHE] = ACTIONS(154), - [anon_sym_ENV] = ACTIONS(154), - [anon_sym_IN_LIST] = ACTIONS(154), - [anon_sym_EXISTS] = ACTIONS(154), - [anon_sym_IS_NEWER_THAN] = ACTIONS(154), - [anon_sym_IS_DIRECTORY] = ACTIONS(154), - [anon_sym_IS_SYMLINK] = ACTIONS(154), - [anon_sym_IS_ABSOLUTE] = ACTIONS(154), - [anon_sym_MATCHES] = ACTIONS(154), - [anon_sym_LESS] = ACTIONS(156), - [anon_sym_GREATER] = ACTIONS(156), - [anon_sym_EQUAL] = ACTIONS(154), - [anon_sym_LESS_EQUAL] = ACTIONS(154), - [anon_sym_GREATER_EQUAL] = ACTIONS(154), - [anon_sym_STRLESS] = ACTIONS(156), - [anon_sym_STRGREATER] = ACTIONS(156), - [anon_sym_STREQUAL] = ACTIONS(154), - [anon_sym_STRLESS_EQUAL] = ACTIONS(154), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(154), - [anon_sym_VERSION_LESS] = ACTIONS(156), - [anon_sym_VERSION_GREATER] = ACTIONS(156), - [anon_sym_VERSION_EQUAL] = ACTIONS(154), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(154), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(158), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [18] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(415), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(160), - [anon_sym_ON] = ACTIONS(160), - [anon_sym_YES] = ACTIONS(160), - [anon_sym_TRUE] = ACTIONS(160), - [anon_sym_Y] = ACTIONS(162), - [anon_sym_0] = ACTIONS(160), - [anon_sym_OFF] = ACTIONS(160), - [anon_sym_NO] = ACTIONS(162), - [anon_sym_FALSE] = ACTIONS(160), - [anon_sym_N] = ACTIONS(162), - [anon_sym_IGNORE] = ACTIONS(160), - [anon_sym_NOTFOUND] = ACTIONS(160), - [anon_sym_NOT] = ACTIONS(162), - [anon_sym_AND] = ACTIONS(160), - [anon_sym_OR] = ACTIONS(160), - [anon_sym_COMMAND] = ACTIONS(160), - [anon_sym_POLICY] = ACTIONS(160), - [anon_sym_TARGET] = ACTIONS(160), - [anon_sym_TEST] = ACTIONS(160), - [anon_sym_DEFINED] = ACTIONS(160), - [anon_sym_CACHE] = ACTIONS(160), - [anon_sym_ENV] = ACTIONS(160), - [anon_sym_IN_LIST] = ACTIONS(160), - [anon_sym_EXISTS] = ACTIONS(160), - [anon_sym_IS_NEWER_THAN] = ACTIONS(160), - [anon_sym_IS_DIRECTORY] = ACTIONS(160), - [anon_sym_IS_SYMLINK] = ACTIONS(160), - [anon_sym_IS_ABSOLUTE] = ACTIONS(160), - [anon_sym_MATCHES] = ACTIONS(160), - [anon_sym_LESS] = ACTIONS(162), - [anon_sym_GREATER] = ACTIONS(162), - [anon_sym_EQUAL] = ACTIONS(160), - [anon_sym_LESS_EQUAL] = ACTIONS(160), - [anon_sym_GREATER_EQUAL] = ACTIONS(160), - [anon_sym_STRLESS] = ACTIONS(162), - [anon_sym_STRGREATER] = ACTIONS(162), - [anon_sym_STREQUAL] = ACTIONS(160), - [anon_sym_STRLESS_EQUAL] = ACTIONS(160), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(160), - [anon_sym_VERSION_LESS] = ACTIONS(162), - [anon_sym_VERSION_GREATER] = ACTIONS(162), - [anon_sym_VERSION_EQUAL] = ACTIONS(160), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(160), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(164), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [19] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(431), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(166), - [anon_sym_ON] = ACTIONS(166), - [anon_sym_YES] = ACTIONS(166), - [anon_sym_TRUE] = ACTIONS(166), - [anon_sym_Y] = ACTIONS(168), - [anon_sym_0] = ACTIONS(166), - [anon_sym_OFF] = ACTIONS(166), - [anon_sym_NO] = ACTIONS(168), - [anon_sym_FALSE] = ACTIONS(166), - [anon_sym_N] = ACTIONS(168), - [anon_sym_IGNORE] = ACTIONS(166), - [anon_sym_NOTFOUND] = ACTIONS(166), - [anon_sym_NOT] = ACTIONS(168), - [anon_sym_AND] = ACTIONS(166), - [anon_sym_OR] = ACTIONS(166), - [anon_sym_COMMAND] = ACTIONS(166), - [anon_sym_POLICY] = ACTIONS(166), - [anon_sym_TARGET] = ACTIONS(166), - [anon_sym_TEST] = ACTIONS(166), - [anon_sym_DEFINED] = ACTIONS(166), - [anon_sym_CACHE] = ACTIONS(166), - [anon_sym_ENV] = ACTIONS(166), - [anon_sym_IN_LIST] = ACTIONS(166), - [anon_sym_EXISTS] = ACTIONS(166), - [anon_sym_IS_NEWER_THAN] = ACTIONS(166), - [anon_sym_IS_DIRECTORY] = ACTIONS(166), - [anon_sym_IS_SYMLINK] = ACTIONS(166), - [anon_sym_IS_ABSOLUTE] = ACTIONS(166), - [anon_sym_MATCHES] = ACTIONS(166), - [anon_sym_LESS] = ACTIONS(168), - [anon_sym_GREATER] = ACTIONS(168), - [anon_sym_EQUAL] = ACTIONS(166), - [anon_sym_LESS_EQUAL] = ACTIONS(166), - [anon_sym_GREATER_EQUAL] = ACTIONS(166), - [anon_sym_STRLESS] = ACTIONS(168), - [anon_sym_STRGREATER] = ACTIONS(168), - [anon_sym_STREQUAL] = ACTIONS(166), - [anon_sym_STRLESS_EQUAL] = ACTIONS(166), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(166), - [anon_sym_VERSION_LESS] = ACTIONS(168), - [anon_sym_VERSION_GREATER] = ACTIONS(168), - [anon_sym_VERSION_EQUAL] = ACTIONS(166), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(166), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(170), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [20] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(433), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(172), - [anon_sym_ON] = ACTIONS(172), - [anon_sym_YES] = ACTIONS(172), - [anon_sym_TRUE] = ACTIONS(172), - [anon_sym_Y] = ACTIONS(174), - [anon_sym_0] = ACTIONS(172), - [anon_sym_OFF] = ACTIONS(172), - [anon_sym_NO] = ACTIONS(174), - [anon_sym_FALSE] = ACTIONS(172), - [anon_sym_N] = ACTIONS(174), - [anon_sym_IGNORE] = ACTIONS(172), - [anon_sym_NOTFOUND] = ACTIONS(172), - [anon_sym_NOT] = ACTIONS(174), - [anon_sym_AND] = ACTIONS(172), - [anon_sym_OR] = ACTIONS(172), - [anon_sym_COMMAND] = ACTIONS(172), - [anon_sym_POLICY] = ACTIONS(172), - [anon_sym_TARGET] = ACTIONS(172), - [anon_sym_TEST] = ACTIONS(172), - [anon_sym_DEFINED] = ACTIONS(172), - [anon_sym_CACHE] = ACTIONS(172), - [anon_sym_ENV] = ACTIONS(172), - [anon_sym_IN_LIST] = ACTIONS(172), - [anon_sym_EXISTS] = ACTIONS(172), - [anon_sym_IS_NEWER_THAN] = ACTIONS(172), - [anon_sym_IS_DIRECTORY] = ACTIONS(172), - [anon_sym_IS_SYMLINK] = ACTIONS(172), - [anon_sym_IS_ABSOLUTE] = ACTIONS(172), - [anon_sym_MATCHES] = ACTIONS(172), - [anon_sym_LESS] = ACTIONS(174), - [anon_sym_GREATER] = ACTIONS(174), - [anon_sym_EQUAL] = ACTIONS(172), - [anon_sym_LESS_EQUAL] = ACTIONS(172), - [anon_sym_GREATER_EQUAL] = ACTIONS(172), - [anon_sym_STRLESS] = ACTIONS(174), - [anon_sym_STRGREATER] = ACTIONS(174), - [anon_sym_STREQUAL] = ACTIONS(172), - [anon_sym_STRLESS_EQUAL] = ACTIONS(172), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(172), - [anon_sym_VERSION_LESS] = ACTIONS(174), - [anon_sym_VERSION_GREATER] = ACTIONS(174), - [anon_sym_VERSION_EQUAL] = ACTIONS(172), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(172), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(172), - [anon_sym_RPAREN] = ACTIONS(176), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [21] = { - [sym_escape_sequence] = STATE(184), - [sym__escape_encoded] = STATE(253), - [sym_variable_ref] = STATE(184), - [sym_normal_var] = STATE(258), - [sym_env_var] = STATE(258), - [sym_cache_var] = STATE(258), - [sym_argument] = STATE(422), - [sym_quoted_argument] = STATE(434), - [sym_unquoted_argument] = STATE(434), - [aux_sym_unquoted_argument_repeat1] = STATE(184), - [sym__escape_identity] = ACTIONS(92), - [anon_sym_BSLASHt] = ACTIONS(92), - [anon_sym_BSLASHr] = ACTIONS(92), - [anon_sym_BSLASHn] = ACTIONS(92), - [sym__escape_semicolon] = ACTIONS(92), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(94), - [anon_sym_DOLLARENV] = ACTIONS(96), - [anon_sym_DOLLARCACHE] = ACTIONS(98), - [anon_sym_DQUOTE] = ACTIONS(100), - [aux_sym_unquoted_argument_token1] = ACTIONS(102), - [anon_sym_1] = ACTIONS(178), - [anon_sym_ON] = ACTIONS(178), - [anon_sym_YES] = ACTIONS(178), - [anon_sym_TRUE] = ACTIONS(178), - [anon_sym_Y] = ACTIONS(180), - [anon_sym_0] = ACTIONS(178), - [anon_sym_OFF] = ACTIONS(178), - [anon_sym_NO] = ACTIONS(180), - [anon_sym_FALSE] = ACTIONS(178), - [anon_sym_N] = ACTIONS(180), - [anon_sym_IGNORE] = ACTIONS(178), - [anon_sym_NOTFOUND] = ACTIONS(178), - [anon_sym_NOT] = ACTIONS(180), - [anon_sym_AND] = ACTIONS(178), - [anon_sym_OR] = ACTIONS(178), - [anon_sym_COMMAND] = ACTIONS(178), - [anon_sym_POLICY] = ACTIONS(178), - [anon_sym_TARGET] = ACTIONS(178), - [anon_sym_TEST] = ACTIONS(178), - [anon_sym_DEFINED] = ACTIONS(178), - [anon_sym_CACHE] = ACTIONS(178), - [anon_sym_ENV] = ACTIONS(178), - [anon_sym_IN_LIST] = ACTIONS(178), - [anon_sym_EXISTS] = ACTIONS(178), - [anon_sym_IS_NEWER_THAN] = ACTIONS(178), - [anon_sym_IS_DIRECTORY] = ACTIONS(178), - [anon_sym_IS_SYMLINK] = ACTIONS(178), - [anon_sym_IS_ABSOLUTE] = ACTIONS(178), - [anon_sym_MATCHES] = ACTIONS(178), - [anon_sym_LESS] = ACTIONS(180), - [anon_sym_GREATER] = ACTIONS(180), - [anon_sym_EQUAL] = ACTIONS(178), - [anon_sym_LESS_EQUAL] = ACTIONS(178), - [anon_sym_GREATER_EQUAL] = ACTIONS(178), - [anon_sym_STRLESS] = ACTIONS(180), - [anon_sym_STRGREATER] = ACTIONS(180), - [anon_sym_STREQUAL] = ACTIONS(178), - [anon_sym_STRLESS_EQUAL] = ACTIONS(178), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(178), - [anon_sym_VERSION_LESS] = ACTIONS(180), - [anon_sym_VERSION_GREATER] = ACTIONS(180), - [anon_sym_VERSION_EQUAL] = ACTIONS(178), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(178), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(182), - [sym_bracket_argument] = ACTIONS(110), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [22] = { - [sym_escape_sequence] = STATE(22), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(22), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [aux_sym_unquoted_argument_repeat1] = STATE(22), - [sym__escape_identity] = ACTIONS(184), - [anon_sym_BSLASHt] = ACTIONS(184), - [anon_sym_BSLASHr] = ACTIONS(184), - [anon_sym_BSLASHn] = ACTIONS(184), - [sym__escape_semicolon] = ACTIONS(184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DOLLARENV] = ACTIONS(190), - [anon_sym_DOLLARCACHE] = ACTIONS(193), - [anon_sym_DQUOTE] = ACTIONS(196), - [aux_sym_unquoted_argument_token1] = ACTIONS(198), - [anon_sym_1] = ACTIONS(196), - [anon_sym_ON] = ACTIONS(196), - [anon_sym_YES] = ACTIONS(196), - [anon_sym_TRUE] = ACTIONS(196), - [anon_sym_Y] = ACTIONS(201), - [anon_sym_0] = ACTIONS(196), - [anon_sym_OFF] = ACTIONS(196), - [anon_sym_NO] = ACTIONS(201), - [anon_sym_FALSE] = ACTIONS(196), - [anon_sym_N] = ACTIONS(201), - [anon_sym_IGNORE] = ACTIONS(196), - [anon_sym_NOTFOUND] = ACTIONS(196), - [anon_sym_NOT] = ACTIONS(201), - [anon_sym_AND] = ACTIONS(196), - [anon_sym_OR] = ACTIONS(196), - [anon_sym_COMMAND] = ACTIONS(196), - [anon_sym_POLICY] = ACTIONS(196), - [anon_sym_TARGET] = ACTIONS(196), - [anon_sym_TEST] = ACTIONS(196), - [anon_sym_DEFINED] = ACTIONS(196), - [anon_sym_CACHE] = ACTIONS(196), - [anon_sym_ENV] = ACTIONS(196), - [anon_sym_IN_LIST] = ACTIONS(196), - [anon_sym_EXISTS] = ACTIONS(196), - [anon_sym_IS_NEWER_THAN] = ACTIONS(196), - [anon_sym_IS_DIRECTORY] = ACTIONS(196), - [anon_sym_IS_SYMLINK] = ACTIONS(196), - [anon_sym_IS_ABSOLUTE] = ACTIONS(196), - [anon_sym_MATCHES] = ACTIONS(196), - [anon_sym_LESS] = ACTIONS(201), - [anon_sym_GREATER] = ACTIONS(201), - [anon_sym_EQUAL] = ACTIONS(196), - [anon_sym_LESS_EQUAL] = ACTIONS(196), - [anon_sym_GREATER_EQUAL] = ACTIONS(196), - [anon_sym_STRLESS] = ACTIONS(201), - [anon_sym_STRGREATER] = ACTIONS(201), - [anon_sym_STREQUAL] = ACTIONS(196), - [anon_sym_STRLESS_EQUAL] = ACTIONS(196), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(196), - [anon_sym_VERSION_LESS] = ACTIONS(201), - [anon_sym_VERSION_GREATER] = ACTIONS(201), - [anon_sym_VERSION_EQUAL] = ACTIONS(196), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(196), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(196), - [anon_sym_RPAREN] = ACTIONS(196), - [sym_bracket_argument] = ACTIONS(196), - [sym_bracket_comment] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - }, - [23] = { - [sym_escape_sequence] = STATE(22), - [sym__escape_encoded] = STATE(25), - [sym_variable_ref] = STATE(22), - [sym_normal_var] = STATE(29), - [sym_env_var] = STATE(29), - [sym_cache_var] = STATE(29), - [aux_sym_unquoted_argument_repeat1] = STATE(22), - [sym__escape_identity] = ACTIONS(21), - [anon_sym_BSLASHt] = ACTIONS(21), - [anon_sym_BSLASHr] = ACTIONS(21), - [anon_sym_BSLASHn] = ACTIONS(21), - [sym__escape_semicolon] = ACTIONS(21), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(23), - [anon_sym_DOLLARENV] = ACTIONS(25), - [anon_sym_DOLLARCACHE] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(203), - [aux_sym_unquoted_argument_token1] = ACTIONS(205), - [anon_sym_1] = ACTIONS(203), - [anon_sym_ON] = ACTIONS(203), - [anon_sym_YES] = ACTIONS(203), - [anon_sym_TRUE] = ACTIONS(203), - [anon_sym_Y] = ACTIONS(207), - [anon_sym_0] = ACTIONS(203), - [anon_sym_OFF] = ACTIONS(203), - [anon_sym_NO] = ACTIONS(207), - [anon_sym_FALSE] = ACTIONS(203), - [anon_sym_N] = ACTIONS(207), - [anon_sym_IGNORE] = ACTIONS(203), - [anon_sym_NOTFOUND] = ACTIONS(203), - [anon_sym_NOT] = ACTIONS(207), - [anon_sym_AND] = ACTIONS(203), - [anon_sym_OR] = ACTIONS(203), - [anon_sym_COMMAND] = ACTIONS(203), - [anon_sym_POLICY] = ACTIONS(203), - [anon_sym_TARGET] = ACTIONS(203), - [anon_sym_TEST] = ACTIONS(203), - [anon_sym_DEFINED] = ACTIONS(203), - [anon_sym_CACHE] = ACTIONS(203), - [anon_sym_ENV] = ACTIONS(203), - [anon_sym_IN_LIST] = ACTIONS(203), - [anon_sym_EXISTS] = ACTIONS(203), - [anon_sym_IS_NEWER_THAN] = ACTIONS(203), - [anon_sym_IS_DIRECTORY] = ACTIONS(203), - [anon_sym_IS_SYMLINK] = ACTIONS(203), - [anon_sym_IS_ABSOLUTE] = ACTIONS(203), - [anon_sym_MATCHES] = ACTIONS(203), - [anon_sym_LESS] = ACTIONS(207), - [anon_sym_GREATER] = ACTIONS(207), - [anon_sym_EQUAL] = ACTIONS(203), - [anon_sym_LESS_EQUAL] = ACTIONS(203), - [anon_sym_GREATER_EQUAL] = ACTIONS(203), - [anon_sym_STRLESS] = ACTIONS(207), - [anon_sym_STRGREATER] = ACTIONS(207), - [anon_sym_STREQUAL] = ACTIONS(203), - [anon_sym_STRLESS_EQUAL] = ACTIONS(203), - [anon_sym_STRGREATER_EQUAL] = ACTIONS(203), - [anon_sym_VERSION_LESS] = ACTIONS(207), - [anon_sym_VERSION_GREATER] = ACTIONS(207), - [anon_sym_VERSION_EQUAL] = ACTIONS(203), - [anon_sym_VERSION_LESS_EQUAL] = ACTIONS(203), - [anon_sym_VERSION_GREATER_EQUAL] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym_bracket_argument] = ACTIONS(203), + [sym_identifier] = ACTIONS(17), [sym_bracket_comment] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(23), 1, + sym_endif, + ACTIONS(25), 1, + sym_identifier, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(304), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(211), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(209), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [65] = 3, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [62] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(27), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(219), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(215), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(213), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [130] = 3, + STATE(6), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [124] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(29), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(275), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(219), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(217), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [195] = 3, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [186] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(29), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(286), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(223), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(221), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [260] = 3, + STATE(4), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [248] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(27), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(225), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(227), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(225), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [325] = 3, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [310] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(31), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(267), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(231), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(229), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [390] = 3, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [372] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(23), 1, + sym_endif, + ACTIONS(25), 1, + sym_identifier, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(268), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(235), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(233), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [455] = 3, + STATE(2), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [434] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(33), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(182), 1, + sym_endif_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(239), 11, - aux_sym_unquoted_argument_token1, - anon_sym_Y, - anon_sym_NO, - anon_sym_N, - anon_sym_NOT, - anon_sym_LESS, - anon_sym_GREATER, - anon_sym_STRLESS, - anon_sym_STRGREATER, - anon_sym_VERSION_LESS, - anon_sym_VERSION_GREATER, - ACTIONS(237), 45, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, + STATE(11), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [496] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(35), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(246), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [558] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(33), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(188), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [620] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(31), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(274), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(7), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [682] = 17, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(19), 1, + sym_elseif, + ACTIONS(21), 1, + sym_else, + ACTIONS(25), 1, + sym_identifier, + ACTIONS(35), 1, + sym_endif, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + STATE(240), 1, + sym_endif_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(10), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [744] = 16, + ACTIONS(37), 1, + sym_if, + ACTIONS(40), 1, + sym_elseif, + ACTIONS(43), 1, + sym_else, + ACTIONS(46), 1, + sym_endif, + ACTIONS(48), 1, + sym_foreach, + ACTIONS(51), 1, + sym_while, + ACTIONS(54), 1, + sym_function, + ACTIONS(57), 1, + sym_macro, + ACTIONS(60), 1, + sym_identifier, + STATE(9), 1, + sym_if_command, + STATE(104), 1, + sym_foreach_command, + STATE(105), 1, + sym_while_command, + STATE(106), 1, + sym_function_command, + STATE(107), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(14), 10, + sym_elseif_command, + sym_else_command, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_if_condition_repeat1, + [803] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_1, - anon_sym_ON, - anon_sym_YES, - anon_sym_TRUE, - anon_sym_0, - anon_sym_OFF, - anon_sym_FALSE, - anon_sym_IGNORE, - anon_sym_NOTFOUND, - anon_sym_AND, - anon_sym_OR, - anon_sym_COMMAND, - anon_sym_POLICY, - anon_sym_TARGET, - anon_sym_TEST, - anon_sym_DEFINED, - anon_sym_CACHE, - anon_sym_ENV, - anon_sym_IN_LIST, - anon_sym_EXISTS, - anon_sym_IS_NEWER_THAN, - anon_sym_IS_DIRECTORY, - anon_sym_IS_SYMLINK, - anon_sym_IS_ABSOLUTE, - anon_sym_MATCHES, - anon_sym_EQUAL, - anon_sym_LESS_EQUAL, - anon_sym_GREATER_EQUAL, - anon_sym_STREQUAL, - anon_sym_STRLESS_EQUAL, - anon_sym_STRGREATER_EQUAL, - anon_sym_VERSION_EQUAL, - anon_sym_VERSION_LESS_EQUAL, - anon_sym_VERSION_GREATER_EQUAL, - anon_sym_RPAREN, - [520] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(253), 1, + ACTIONS(75), 1, anon_sym_RPAREN, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - STATE(67), 1, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(39), 2, + STATE(19), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(255), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [589] = 15, - ACTIONS(243), 1, + [857] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(249), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(259), 1, + ACTIONS(79), 1, anon_sym_RPAREN, - STATE(67), 1, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(42), 2, + STATE(28), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_if_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [658] = 15, - ACTIONS(243), 1, + [911] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(249), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(263), 1, + ACTIONS(81), 1, anon_sym_RPAREN, - STATE(67), 1, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(18), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [965] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(83), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1019] = 14, + ACTIONS(88), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(91), 1, + anon_sym_DOLLARENV, + ACTIONS(94), 1, + anon_sym_DOLLARCACHE, + ACTIONS(97), 1, + anon_sym_DQUOTE, + ACTIONS(100), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(103), 1, + anon_sym_RPAREN, + ACTIONS(105), 1, + sym_bracket_argument, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(85), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1073] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(108), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(48), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1127] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(110), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(16), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1181] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(112), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(52), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1235] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(114), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(54), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1289] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(116), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(56), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1343] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(118), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(58), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1397] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(120), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(28), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1451] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(122), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1505] = 14, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(130), 1, + anon_sym_DOLLARENV, + ACTIONS(133), 1, + anon_sym_DOLLARCACHE, + ACTIONS(136), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(142), 1, + anon_sym_RPAREN, + ACTIONS(144), 1, + sym_bracket_argument, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(28), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(124), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1559] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(147), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(31), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1613] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(149), 1, + anon_sym_RPAREN, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, STATE(33), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(265), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [727] = 15, - ACTIONS(243), 1, + [1667] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(249), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(267), 1, + ACTIONS(151), 1, anon_sym_RPAREN, - STATE(67), 1, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(37), 2, + STATE(19), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(269), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [796] = 15, - ACTIONS(243), 1, + [1721] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(249), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(271), 1, + ACTIONS(153), 1, anon_sym_RPAREN, - STATE(67), 1, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(15), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1775] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(155), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1829] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(157), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(35), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1883] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(159), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [1937] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(161), 1, + anon_sym_RPAREN, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, STATE(38), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(273), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [865] = 15, - ACTIONS(243), 1, + [1991] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(249), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(251), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(275), 1, + ACTIONS(163), 1, anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [934] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(277), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1003] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(279), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1072] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(281), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1141] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(283), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(40), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(285), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1210] = 15, - ACTIONS(290), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(293), 1, - anon_sym_DOLLARENV, - ACTIONS(296), 1, - anon_sym_DOLLARCACHE, - ACTIONS(299), 1, - anon_sym_DQUOTE, - ACTIONS(302), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(305), 1, - anon_sym_RPAREN, - ACTIONS(310), 1, - sym_bracket_argument, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(287), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(307), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1279] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(313), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(42), 2, - sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(45), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(261), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1348] = 15, - ACTIONS(243), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, - anon_sym_DOLLARENV, - ACTIONS(247), 1, - anon_sym_DOLLARCACHE, - ACTIONS(249), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(257), 1, - sym_bracket_argument, - ACTIONS(315), 1, - anon_sym_RPAREN, - STATE(67), 1, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, STATE(43), 2, sym_argument, - aux_sym_message_command_repeat1, - STATE(69), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(45), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(66), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(241), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(317), 13, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1417] = 10, - ACTIONS(243), 1, + [2045] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(245), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(247), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(319), 1, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - STATE(67), 1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(165), 1, + anon_sym_RPAREN, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(46), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(241), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(203), 16, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1472] = 10, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(327), 1, - anon_sym_DOLLARENV, - ACTIONS(330), 1, - anon_sym_DOLLARCACHE, - ACTIONS(333), 1, - aux_sym_unquoted_argument_token1, - STATE(67), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(46), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(66), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(321), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(196), 16, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [1527] = 15, - ACTIONS(338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(340), 1, - anon_sym_DOLLARENV, - ACTIONS(342), 1, - anon_sym_DOLLARCACHE, - ACTIONS(344), 1, - anon_sym_DQUOTE, - ACTIONS(346), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(348), 1, - anon_sym_RPAREN, - ACTIONS(352), 1, - sym_bracket_argument, - STATE(181), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(48), 2, + STATE(19), 2, sym_argument, - aux_sym_foreach_command_repeat1, - STATE(182), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(72), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(187), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(336), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(350), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [1588] = 15, - ACTIONS(357), 1, + [2099] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(360), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(363), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(366), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(372), 1, - anon_sym_RPAREN, - ACTIONS(377), 1, + ACTIONS(77), 1, sym_bracket_argument, - STATE(181), 1, + ACTIONS(167), 1, + anon_sym_RPAREN, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(48), 2, + STATE(19), 2, sym_argument, - aux_sym_foreach_command_repeat1, - STATE(182), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(72), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(187), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(354), 5, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - ACTIONS(374), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [1649] = 15, - ACTIONS(338), 1, + [2153] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(340), 1, + ACTIONS(67), 1, anon_sym_DOLLARENV, - ACTIONS(342), 1, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, - ACTIONS(344), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(346), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, - ACTIONS(352), 1, + ACTIONS(77), 1, sym_bracket_argument, - ACTIONS(380), 1, + ACTIONS(169), 1, anon_sym_RPAREN, - STATE(181), 1, + STATE(147), 1, sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(47), 2, + STATE(19), 2, sym_argument, - aux_sym_foreach_command_repeat1, - STATE(182), 2, + aux_sym_function_command_repeat1, + STATE(153), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(72), 3, + STATE(138), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(187), 3, + STATE(152), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(336), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(382), 5, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [1710] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(388), 1, - sym_endif, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(273), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [1776] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(394), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(368), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [1842] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(396), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(242), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(56), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [1908] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(398), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(349), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(59), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [1974] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(388), 1, - sym_endif, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(264), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(50), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2040] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(400), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(343), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2106] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(396), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(233), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2172] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(394), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(359), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(51), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2238] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(402), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(302), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2304] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(398), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(337), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2370] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(400), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(307), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(55), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2436] = 18, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(384), 1, - sym_elseif, - ACTIONS(386), 1, - sym_else, - ACTIONS(390), 1, - sym_message, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(402), 1, - sym_endif, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - STATE(311), 1, - sym_endif_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(58), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2502] = 17, - ACTIONS(404), 1, - sym_if, - ACTIONS(407), 1, - sym_elseif, - ACTIONS(410), 1, - sym_else, - ACTIONS(413), 1, - sym_endif, - ACTIONS(415), 1, - sym_foreach, - ACTIONS(418), 1, - sym_while, - ACTIONS(421), 1, - sym_function, - ACTIONS(424), 1, - sym_macro, - ACTIONS(427), 1, - sym_message, - ACTIONS(430), 1, - sym_identifier, - STATE(52), 1, - sym_if_command, - STATE(93), 1, - sym_foreach_command, - STATE(94), 1, - sym_while_command, - STATE(95), 1, - sym_function_command, - STATE(106), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(62), 11, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_if_condition_repeat1, - [2565] = 3, - ACTIONS(223), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(221), 24, - sym_bracket_argument, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [2207] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2599] = 3, - ACTIONS(219), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(171), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(217), 24, - sym_bracket_argument, + STATE(39), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [2261] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(173), 1, anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2633] = 3, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(40), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2315] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(175), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2369] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(177), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(55), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2423] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(179), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2477] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(181), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(51), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2531] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(183), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(63), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2585] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(185), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(28), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2639] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(187), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2693] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(189), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(27), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2747] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(191), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2801] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(193), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(28), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2855] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(195), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2909] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(197), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [2963] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(199), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3017] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(201), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3071] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(203), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3125] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(205), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3179] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(207), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(26), 2, + sym_argument, + aux_sym_if_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3233] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(209), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(53), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3287] = 14, + ACTIONS(65), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, ACTIONS(211), 1, - aux_sym_unquoted_argument_token1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(209), 24, - sym_bracket_argument, + STATE(45), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [3341] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2667] = 3, - ACTIONS(231), 1, + ACTIONS(73), 1, aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(213), 1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(229), 24, - sym_bracket_argument, + STATE(57), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [3395] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2701] = 3, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, ACTIONS(215), 1, - aux_sym_unquoted_argument_token1, + anon_sym_RPAREN, + STATE(147), 1, + sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(213), 24, - sym_bracket_argument, + STATE(19), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [3449] = 14, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, anon_sym_DOLLARENV, + ACTIONS(69), 1, anon_sym_DOLLARCACHE, + ACTIONS(71), 1, anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(77), 1, + sym_bracket_argument, + ACTIONS(217), 1, anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2735] = 3, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(49), 2, + sym_argument, + aux_sym_function_command_repeat1, + STATE(153), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(138), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3503] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, aux_sym_unquoted_argument_token1, + ACTIONS(231), 1, + anon_sym_RPAREN, + ACTIONS(233), 1, + sym_bracket_argument, + STATE(170), 1, + sym__escape_encoded, + STATE(329), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(225), 24, - sym_bracket_argument, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, + [3556] = 14, + ACTIONS(221), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, anon_sym_DOLLARENV, + ACTIONS(225), 1, anon_sym_DOLLARCACHE, + ACTIONS(227), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2769] = 3, - ACTIONS(239), 1, + ACTIONS(229), 1, aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(237), 24, + ACTIONS(233), 1, sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2803] = 3, ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(233), 24, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, anon_sym_RPAREN, - anon_sym_FATAL_ERROR, - anon_sym_SEND_ERROR, - anon_sym_WARNING, - anon_sym_AUTHOR_WARNING, - anon_sym_DEPRECATION, - anon_sym_NOTICE, - anon_sym_STATUS, - anon_sym_VERBOSE, - anon_sym_DEBUG, - anon_sym_TRACE, - anon_sym_CHECK_START, - anon_sym_CHECK_PASS, - anon_sym_CHECK_FAIL, - [2837] = 10, - ACTIONS(436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(439), 1, - anon_sym_DOLLARENV, - ACTIONS(442), 1, - anon_sym_DOLLARCACHE, - ACTIONS(445), 1, - aux_sym_unquoted_argument_token1, - STATE(181), 1, + STATE(170), 1, sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(71), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(187), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(433), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(196), 8, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [2884] = 10, - ACTIONS(338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(340), 1, - anon_sym_DOLLARENV, - ACTIONS(342), 1, - anon_sym_DOLLARCACHE, - ACTIONS(448), 1, - aux_sym_unquoted_argument_token1, - STATE(181), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(71), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(187), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(336), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - ACTIONS(203), 8, - sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [2931] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(462), 1, - anon_sym_RPAREN, - ACTIONS(464), 1, - sym_bracket_argument, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(104), 2, + STATE(330), 1, sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(174), 3, + STATE(143), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(195), 3, + STATE(161), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(450), 5, + ACTIONS(219), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [2985] = 14, - ACTIONS(452), 1, + [3609] = 14, + ACTIONS(221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, + ACTIONS(223), 1, anon_sym_DOLLARENV, - ACTIONS(456), 1, + ACTIONS(225), 1, anon_sym_DOLLARCACHE, - ACTIONS(458), 1, + ACTIONS(227), 1, anon_sym_DQUOTE, - ACTIONS(460), 1, + ACTIONS(229), 1, aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, + ACTIONS(233), 1, sym_bracket_argument, - ACTIONS(466), 1, + ACTIONS(237), 1, anon_sym_RPAREN, - STATE(193), 1, + STATE(170), 1, sym__escape_encoded, + STATE(322), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, + STATE(348), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(174), 3, + STATE(143), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(195), 3, + STATE(161), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(450), 5, + ACTIONS(219), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [3039] = 14, - ACTIONS(452), 1, + [3662] = 14, + ACTIONS(221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, + ACTIONS(223), 1, anon_sym_DOLLARENV, - ACTIONS(456), 1, + ACTIONS(225), 1, anon_sym_DOLLARCACHE, - ACTIONS(458), 1, + ACTIONS(227), 1, anon_sym_DQUOTE, - ACTIONS(460), 1, + ACTIONS(229), 1, aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, + ACTIONS(233), 1, sym_bracket_argument, - ACTIONS(468), 1, + ACTIONS(239), 1, anon_sym_RPAREN, - STATE(193), 1, + STATE(170), 1, sym__escape_encoded, + STATE(361), 1, + sym_argument, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, + STATE(348), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(174), 3, + STATE(143), 3, sym_escape_sequence, sym_variable_ref, aux_sym_unquoted_argument_repeat1, - STATE(195), 3, + STATE(161), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(450), 5, + ACTIONS(219), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [3093] = 16, + [3715] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(241), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(328), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3768] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(243), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(327), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3821] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(245), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(360), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3874] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(247), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(338), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3927] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(249), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(339), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [3980] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(251), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(364), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4033] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(253), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(333), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4086] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(255), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(334), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4139] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(257), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(335), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4192] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(259), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(352), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4245] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(261), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(350), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4298] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(263), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(324), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4351] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(265), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(325), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4404] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(267), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(362), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4457] = 14, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(227), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(233), 1, + sym_bracket_argument, + ACTIONS(269), 1, + anon_sym_RPAREN, + STATE(170), 1, + sym__escape_encoded, + STATE(371), 1, + sym_argument, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(348), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(143), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [4510] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -7779,736 +5283,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(470), 1, + ACTIONS(271), 1, sym_endforeach, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, + ACTIONS(273), 1, sym_identifier, - STATE(57), 1, + STATE(12), 1, sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, + STATE(85), 1, sym_macro_command, - STATE(344), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3151] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(476), 1, - sym_endwhile, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, + STATE(116), 1, + sym_function_command, STATE(117), 1, sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(312), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(129), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3209] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(482), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3263] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(484), 1, - sym_endmacro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, + STATE(118), 1, sym_foreach_command, - STATE(277), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(173), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3321] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(490), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3375] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(492), 1, - sym_endfunction, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(276), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(165), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3433] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(498), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3487] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(500), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(275), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(164), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3545] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(502), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(274), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3603] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(504), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3657] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(506), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(97), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3711] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(508), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(78), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3765] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(510), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(112), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3819] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(484), 1, - sym_endmacro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(268), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(79), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3877] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(512), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(114), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [3931] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(492), 1, - sym_endfunction, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(267), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(81), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [3989] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(500), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(266), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(83), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4047] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(514), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, STATE(241), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(119), 9, + STATE(124), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [4105] = 16, + [4564] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8519,162 +5322,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, + ACTIONS(275), 1, + sym_endmacro, + ACTIONS(277), 1, sym_identifier, - ACTIONS(516), 1, - sym_endwhile, - STATE(53), 1, + STATE(13), 1, sym_if_command, - STATE(108), 1, + STATE(84), 1, sym_foreach_command, - STATE(117), 1, + STATE(114), 1, sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(240), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(124), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4163] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(518), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, + STATE(119), 1, sym_function_command, STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(239), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(125), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4221] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(502), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, sym_macro_command, STATE(265), 1, - sym_endforeach_command, + sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(84), 9, + STATE(109), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [4279] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(520), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4333] = 16, + [4618] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -8685,318 +5361,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(522), 1, + ACTIONS(279), 1, sym_endfunction, - STATE(61), 1, + ACTIONS(281), 1, + sym_identifier, + STATE(3), 1, sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, + STATE(90), 1, sym_foreach_command, - STATE(313), 1, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(206), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(150), 9, + STATE(137), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [4391] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(524), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4445] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(526), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4499] = 14, - ACTIONS(531), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(534), 1, - anon_sym_DOLLARENV, - ACTIONS(537), 1, - anon_sym_DOLLARCACHE, - ACTIONS(540), 1, - anon_sym_DQUOTE, - ACTIONS(543), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(546), 1, - anon_sym_RPAREN, - ACTIONS(548), 1, - sym_bracket_argument, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(528), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4553] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(551), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(99), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4607] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(553), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(100), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4661] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(555), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4715] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(557), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4769] = 16, + [4672] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9007,826 +5400,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(559), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(238), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(126), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4827] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(561), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [4881] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(563), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(348), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(132), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4939] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(565), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(298), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(173), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [4997] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(567), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(299), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(165), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5055] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(569), 1, + ACTIONS(283), 1, sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(300), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(164), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5113] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(571), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [5167] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, + ACTIONS(285), 1, sym_identifier, - ACTIONS(573), 1, - sym_endforeach, - STATE(57), 1, + STATE(5), 1, sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(301), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5225] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(575), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [5279] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(577), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, STATE(91), 1, - sym_function_command, + sym_macro_command, STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(314), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(159), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5337] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(579), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(107), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [5391] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(581), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(342), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(134), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5449] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(583), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(135), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [5503] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(514), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, + STATE(93), 1, sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(236), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5561] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(565), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(305), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(109), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5619] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(567), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(306), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(110), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5677] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(569), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(309), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(111), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5735] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(573), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(310), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(113), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5793] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(516), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(223), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(164), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [5851] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(518), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, + STATE(94), 1, sym_foreach_command, STATE(205), 1, - sym_endfunction_command, + sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(165), 9, + STATE(134), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [5909] = 16, + [4726] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9837,38 +5439,542 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, + ACTIONS(273), 1, sym_identifier, - ACTIONS(559), 1, - sym_endmacro, - STATE(54), 1, + ACTIONS(287), 1, + sym_endforeach, + STATE(12), 1, sym_if_command, - STATE(89), 1, + STATE(85), 1, sym_macro_command, - STATE(91), 1, + STATE(116), 1, sym_function_command, - STATE(92), 1, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(305), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4780] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(289), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(269), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(123), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4834] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(291), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(220), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(98), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4888] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(293), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(277), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(115), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4942] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(279), 1, + sym_endfunction, + ACTIONS(281), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, sym_while_command, STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(278), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(86), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [4996] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(283), 1, + sym_endwhile, + ACTIONS(285), 1, + sym_identifier, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, sym_foreach_command, + STATE(279), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(87), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5050] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(287), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(280), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(88), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5104] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(295), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(221), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(99), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5158] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(297), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(222), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(100), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5212] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(299), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(223), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(101), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5266] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(291), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(226), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5320] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(295), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(203), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5374] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(297), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(227), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5428] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(299), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, STATE(228), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(173), 9, + STATE(136), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [5967] = 16, + [5482] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9879,80 +5985,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, + ACTIONS(277), 1, sym_identifier, - ACTIONS(585), 1, - sym_endfunction, - STATE(61), 1, + ACTIONS(301), 1, + sym_endmacro, + STATE(13), 1, sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, sym_function_command, STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(341), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(136), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6025] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(587), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(340), 1, + STATE(317), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(137), 9, + STATE(136), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [6083] = 16, + [5536] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9963,118 +6024,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(476), 1, - sym_endwhile, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, + ACTIONS(285), 1, sym_identifier, - STATE(53), 1, + ACTIONS(303), 1, + sym_endwhile, + STATE(5), 1, sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, + STATE(91), 1, sym_macro_command, - STATE(345), 1, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(271), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(164), 9, + STATE(120), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [6141] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(589), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(142), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6195] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(591), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6249] = 16, + [5590] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10085,162 +6063,74 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, + ACTIONS(273), 1, sym_identifier, - ACTIONS(563), 1, + ACTIONS(305), 1, sym_endforeach, - STATE(57), 1, + STATE(12), 1, sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, + STATE(85), 1, sym_macro_command, - STATE(336), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6307] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(470), 1, - sym_endforeach, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, + STATE(116), 1, sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(308), 1, - sym_endforeach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(76), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [6365] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(581), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, STATE(117), 1, sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, + STATE(118), 1, + sym_foreach_command, + STATE(183), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(125), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5644] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(307), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, sym_macro_command, - STATE(335), 1, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(184), 1, sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(164), 9, + STATE(126), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [6423] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(593), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6477] = 16, + [5698] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10251,38 +6141,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, + ACTIONS(281), 1, sym_identifier, - ACTIONS(585), 1, + ACTIONS(309), 1, sym_endfunction, - STATE(61), 1, + STATE(3), 1, sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, + STATE(90), 1, sym_foreach_command, - STATE(334), 1, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(186), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(165), 9, + STATE(130), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [6535] = 16, + [5752] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10293,398 +6180,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, + ACTIONS(277), 1, sym_identifier, - ACTIONS(587), 1, + ACTIONS(311), 1, sym_endmacro, - STATE(54), 1, + STATE(13), 1, sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, + STATE(84), 1, sym_foreach_command, - STATE(333), 1, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(200), 1, sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(173), 9, + STATE(131), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [6593] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(595), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(144), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6647] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(597), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(80), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6701] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(599), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(82), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6755] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(601), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(105), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6809] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(603), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6863] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(605), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(145), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6917] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(607), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [6971] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(609), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7025] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(611), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(85), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7079] = 16, + [5806] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10695,38 +6219,191 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, + ACTIONS(281), 1, sym_identifier, - ACTIONS(613), 1, - sym_endforeach, - STATE(57), 1, + ACTIONS(313), 1, + sym_endfunction, + STATE(3), 1, sym_if_command, - STATE(147), 1, + STATE(90), 1, sym_foreach_command, - STATE(148), 1, + STATE(95), 1, sym_while_command, - STATE(149), 1, + STATE(96), 1, sym_function_command, - STATE(152), 1, + STATE(97), 1, sym_macro_command, - STATE(381), 1, + STATE(272), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(113), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5860] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(275), 1, + sym_endmacro, + ACTIONS(277), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(292), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5914] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(315), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(291), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [5968] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(317), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(290), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6022] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(319), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(289), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(154), 9, + STATE(133), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [7137] = 16, + [6076] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10737,286 +6414,230 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, + ACTIONS(281), 1, sym_identifier, - ACTIONS(615), 1, - sym_endwhile, - STATE(53), 1, + ACTIONS(313), 1, + sym_endfunction, + STATE(3), 1, sym_if_command, - STATE(108), 1, + STATE(90), 1, sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(316), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6130] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(321), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(242), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(127), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6184] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(293), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(207), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6238] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(315), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(264), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(110), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6292] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(317), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(263), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(111), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6346] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(319), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, STATE(117), 1, sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, + STATE(118), 1, + sym_foreach_command, STATE(262), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(155), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7195] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(617), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(377), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(156), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7253] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(522), 1, - sym_endfunction, - STATE(61), 1, - sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - STATE(346), 1, - sym_endfunction_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(165), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7311] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(619), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(131), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7365] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(621), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(371), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(161), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7423] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(623), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(75), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7477] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(472), 1, - sym_message, - ACTIONS(474), 1, - sym_identifier, - ACTIONS(613), 1, - sym_endforeach, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - STATE(367), 1, sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(162), 9, + STATE(112), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [7535] = 16, + [6400] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11027,160 +6648,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(478), 1, - sym_message, - ACTIONS(480), 1, + ACTIONS(281), 1, sym_identifier, - ACTIONS(615), 1, - sym_endwhile, - STATE(53), 1, - sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, - sym_macro_command, - STATE(366), 1, - sym_endwhile_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(164), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7593] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(494), 1, - sym_message, - ACTIONS(496), 1, - sym_identifier, - ACTIONS(617), 1, + ACTIONS(323), 1, sym_endfunction, - STATE(61), 1, + STATE(3), 1, sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, - sym_function_command, - STATE(122), 1, - sym_while_command, - STATE(123), 1, + STATE(90), 1, sym_foreach_command, - STATE(365), 1, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(243), 1, sym_endfunction_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(165), 9, + STATE(128), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [7651] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(625), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(74), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7705] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(627), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(160), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7759] = 16, + [6454] = 15, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11191,475 +6687,464 @@ static const uint16_t ts_small_parse_table[] = { sym_function, ACTIONS(15), 1, sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, + ACTIONS(285), 1, sym_identifier, - ACTIONS(577), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(347), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(173), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7817] = 14, - ACTIONS(452), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(460), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(464), 1, - sym_bracket_argument, - ACTIONS(629), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(101), 2, - sym_argument, - aux_sym_function_command_repeat1, - STATE(196), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(174), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [7871] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(486), 1, - sym_message, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(621), 1, - sym_endmacro, - STATE(54), 1, - sym_if_command, - STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, - sym_foreach_command, - STATE(364), 1, - sym_endmacro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(173), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7929] = 15, - ACTIONS(631), 1, - sym_if, - ACTIONS(634), 1, - sym_foreach, - ACTIONS(637), 1, - sym_endforeach, - ACTIONS(639), 1, - sym_while, - ACTIONS(642), 1, - sym_function, - ACTIONS(645), 1, - sym_macro, - ACTIONS(648), 1, - sym_message, - ACTIONS(651), 1, - sym_identifier, - STATE(57), 1, - sym_if_command, - STATE(147), 1, - sym_foreach_command, - STATE(148), 1, - sym_while_command, - STATE(149), 1, - sym_function_command, - STATE(152), 1, - sym_macro_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(162), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [7984] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(654), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(432), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8037] = 15, - ACTIONS(631), 1, - sym_if, - ACTIONS(634), 1, - sym_foreach, - ACTIONS(637), 1, + ACTIONS(303), 1, sym_endwhile, - ACTIONS(639), 1, - sym_while, - ACTIONS(642), 1, - sym_function, - ACTIONS(645), 1, - sym_macro, - ACTIONS(656), 1, - sym_message, - ACTIONS(659), 1, - sym_identifier, - STATE(53), 1, + STATE(5), 1, sym_if_command, - STATE(108), 1, - sym_foreach_command, - STATE(117), 1, - sym_while_command, - STATE(127), 1, - sym_function_command, - STATE(128), 1, + STATE(91), 1, sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(315), 1, + sym_endwhile_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(164), 9, + STATE(134), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [8092] = 15, - ACTIONS(631), 1, + [6508] = 15, + ACTIONS(7), 1, sym_if, - ACTIONS(634), 1, + ACTIONS(9), 1, sym_foreach, - ACTIONS(637), 1, - sym_endfunction, - ACTIONS(639), 1, + ACTIONS(11), 1, sym_while, - ACTIONS(642), 1, + ACTIONS(13), 1, sym_function, - ACTIONS(645), 1, + ACTIONS(15), 1, sym_macro, - ACTIONS(662), 1, - sym_message, - ACTIONS(665), 1, + ACTIONS(277), 1, sym_identifier, - STATE(61), 1, + ACTIONS(301), 1, + sym_endmacro, + STATE(13), 1, sym_if_command, - STATE(120), 1, - sym_macro_command, - STATE(121), 1, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, sym_function_command, STATE(122), 1, - sym_while_command, - STATE(123), 1, - sym_foreach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(165), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [8147] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(668), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(400), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8200] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(670), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(416), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8253] = 15, - ACTIONS(631), 1, - sym_if, - ACTIONS(634), 1, - sym_foreach, - ACTIONS(639), 1, - sym_while, - ACTIONS(642), 1, - sym_function, - ACTIONS(645), 1, - sym_macro, - ACTIONS(672), 1, - ts_builtin_sym_end, - ACTIONS(674), 1, - sym_message, - ACTIONS(677), 1, - sym_identifier, - STATE(60), 1, - sym_if_command, - STATE(77), 1, - sym_while_command, - STATE(98), 1, - sym_function_command, - STATE(115), 1, sym_macro_command, - STATE(133), 1, - sym_foreach_command, + STATE(273), 1, + sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(168), 9, + STATE(102), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [8308] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(680), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(395), 1, - sym_argument, + [6562] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(325), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(244), 1, + sym_endmacro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8361] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(682), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(405), 1, - sym_argument, + STATE(129), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6616] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(289), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(306), 1, + sym_endforeach_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8414] = 15, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6670] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(271), 1, + sym_endforeach, + ACTIONS(273), 1, + sym_identifier, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(247), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6724] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(305), 1, + sym_endforeach, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + STATE(187), 1, + sym_endforeach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6778] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(307), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(201), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6832] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(285), 1, + sym_identifier, + ACTIONS(321), 1, + sym_endwhile, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + STATE(248), 1, + sym_endwhile_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6886] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(323), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(249), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6940] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(325), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(250), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [6994] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(281), 1, + sym_identifier, + ACTIONS(309), 1, + sym_endfunction, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + STATE(198), 1, + sym_endfunction_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7048] = 15, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(311), 1, + sym_endmacro, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + STATE(197), 1, + sym_endmacro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7102] = 14, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11671,790 +7156,977 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 1, sym_macro, ACTIONS(17), 1, - sym_message, - ACTIONS(19), 1, sym_identifier, - ACTIONS(684), 1, + ACTIONS(327), 1, ts_builtin_sym_end, - STATE(60), 1, - sym_if_command, - STATE(77), 1, - sym_while_command, - STATE(98), 1, - sym_function_command, - STATE(115), 1, - sym_macro_command, - STATE(133), 1, - sym_foreach_command, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(168), 9, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_message_command, - sym_normal_command, - sym__command_invocation, - aux_sym_source_file_repeat1, - [8469] = 14, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(100), 1, - anon_sym_DQUOTE, - ACTIONS(102), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(110), 1, - sym_bracket_argument, - ACTIONS(686), 1, - anon_sym_RPAREN, - STATE(253), 1, - sym__escape_encoded, - STATE(423), 1, - sym_argument, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(434), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(184), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8522] = 15, - ACTIONS(631), 1, - sym_if, - ACTIONS(634), 1, - sym_foreach, - ACTIONS(637), 1, - sym_endmacro, - ACTIONS(639), 1, - sym_while, - ACTIONS(642), 1, - sym_function, - ACTIONS(645), 1, - sym_macro, - ACTIONS(688), 1, - sym_message, - ACTIONS(691), 1, - sym_identifier, - STATE(54), 1, + STATE(8), 1, sym_if_command, STATE(89), 1, - sym_macro_command, - STATE(91), 1, - sym_function_command, - STATE(92), 1, - sym_while_command, - STATE(96), 1, sym_foreach_command, + STATE(103), 1, + sym_while_command, + STATE(108), 1, + sym_function_command, + STATE(121), 1, + sym_macro_command, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(173), 9, + STATE(135), 8, sym_if_condition, sym_foreach_loop, sym_while_loop, sym_function_def, sym_macro_def, - sym_message_command, sym_normal_command, sym__command_invocation, aux_sym_source_file_repeat1, - [8577] = 10, - ACTIONS(452), 1, + [7153] = 14, + ACTIONS(329), 1, + sym_if, + ACTIONS(332), 1, + sym_foreach, + ACTIONS(335), 1, + sym_endforeach, + ACTIONS(337), 1, + sym_while, + ACTIONS(340), 1, + sym_function, + ACTIONS(343), 1, + sym_macro, + ACTIONS(346), 1, + sym_identifier, + STATE(12), 1, + sym_if_command, + STATE(85), 1, + sym_macro_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_while_command, + STATE(118), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(133), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7204] = 14, + ACTIONS(329), 1, + sym_if, + ACTIONS(332), 1, + sym_foreach, + ACTIONS(335), 1, + sym_endwhile, + ACTIONS(337), 1, + sym_while, + ACTIONS(340), 1, + sym_function, + ACTIONS(343), 1, + sym_macro, + ACTIONS(349), 1, + sym_identifier, + STATE(5), 1, + sym_if_command, + STATE(91), 1, + sym_macro_command, + STATE(92), 1, + sym_function_command, + STATE(93), 1, + sym_while_command, + STATE(94), 1, + sym_foreach_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(134), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7255] = 14, + ACTIONS(329), 1, + sym_if, + ACTIONS(332), 1, + sym_foreach, + ACTIONS(337), 1, + sym_while, + ACTIONS(340), 1, + sym_function, + ACTIONS(343), 1, + sym_macro, + ACTIONS(352), 1, + ts_builtin_sym_end, + ACTIONS(354), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(89), 1, + sym_foreach_command, + STATE(103), 1, + sym_while_command, + STATE(108), 1, + sym_function_command, + STATE(121), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(135), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7306] = 14, + ACTIONS(329), 1, + sym_if, + ACTIONS(332), 1, + sym_foreach, + ACTIONS(335), 1, + sym_endmacro, + ACTIONS(337), 1, + sym_while, + ACTIONS(340), 1, + sym_function, + ACTIONS(343), 1, + sym_macro, + ACTIONS(357), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(84), 1, + sym_foreach_command, + STATE(114), 1, + sym_while_command, + STATE(119), 1, + sym_function_command, + STATE(122), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(136), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7357] = 14, + ACTIONS(329), 1, + sym_if, + ACTIONS(332), 1, + sym_foreach, + ACTIONS(335), 1, + sym_endfunction, + ACTIONS(337), 1, + sym_while, + ACTIONS(340), 1, + sym_function, + ACTIONS(343), 1, + sym_macro, + ACTIONS(360), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(90), 1, + sym_foreach_command, + STATE(95), 1, + sym_while_command, + STATE(96), 1, + sym_function_command, + STATE(97), 1, + sym_macro_command, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(137), 8, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_normal_command, + sym__command_invocation, + aux_sym_source_file_repeat1, + [7408] = 10, + ACTIONS(65), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_DOLLARENV, + ACTIONS(69), 1, + anon_sym_DOLLARCACHE, + ACTIONS(365), 1, + aux_sym_unquoted_argument_token1, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(363), 3, + sym_bracket_argument, + anon_sym_DQUOTE, + anon_sym_RPAREN, + STATE(139), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(63), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7450] = 10, + ACTIONS(370), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(373), 1, + anon_sym_DOLLARENV, + ACTIONS(376), 1, + anon_sym_DOLLARCACHE, + ACTIONS(381), 1, + aux_sym_unquoted_argument_token1, + STATE(147), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(379), 3, + sym_bracket_argument, + anon_sym_DQUOTE, + anon_sym_RPAREN, + STATE(139), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(152), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(367), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7492] = 11, + ACTIONS(386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(388), 1, + anon_sym_DOLLARENV, + ACTIONS(390), 1, + anon_sym_DOLLARCACHE, + ACTIONS(392), 1, + anon_sym_DQUOTE, + ACTIONS(394), 1, + aux_sym_quoted_element_token1, + STATE(160), 1, + sym__escape_encoded, + STATE(372), 1, + sym_quoted_element, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(145), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(164), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(384), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7535] = 11, + ACTIONS(386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(388), 1, + anon_sym_DOLLARENV, + ACTIONS(390), 1, + anon_sym_DOLLARCACHE, + ACTIONS(394), 1, + aux_sym_quoted_element_token1, + ACTIONS(396), 1, + anon_sym_DQUOTE, + STATE(160), 1, + sym__escape_encoded, + STATE(326), 1, + sym_quoted_element, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(145), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(164), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(384), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7578] = 10, + ACTIONS(379), 1, + anon_sym_RPAREN, + ACTIONS(401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(404), 1, + anon_sym_DOLLARENV, + ACTIONS(407), 1, + anon_sym_DOLLARCACHE, + ACTIONS(410), 1, + aux_sym_unquoted_argument_token1, + STATE(170), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(142), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(398), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7618] = 10, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLARENV, + ACTIONS(225), 1, + anon_sym_DOLLARCACHE, + ACTIONS(363), 1, + anon_sym_RPAREN, + ACTIONS(413), 1, + aux_sym_unquoted_argument_token1, + STATE(170), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(142), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_unquoted_argument_repeat1, + STATE(161), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(219), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7658] = 10, + ACTIONS(418), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(421), 1, + anon_sym_DOLLARENV, + ACTIONS(424), 1, + anon_sym_DOLLARCACHE, + ACTIONS(427), 1, + anon_sym_DQUOTE, + ACTIONS(429), 1, + aux_sym_quoted_element_token1, + STATE(160), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(144), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(164), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(415), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7698] = 10, + ACTIONS(386), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(388), 1, + anon_sym_DOLLARENV, + ACTIONS(390), 1, + anon_sym_DOLLARCACHE, + ACTIONS(432), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + aux_sym_quoted_element_token1, + STATE(160), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(144), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_quoted_element_repeat1, + STATE(164), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(384), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7738] = 3, + ACTIONS(438), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(436), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7759] = 3, + ACTIONS(442), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(440), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7780] = 3, + ACTIONS(446), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(444), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7801] = 3, + ACTIONS(450), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(448), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7822] = 3, ACTIONS(454), 1, - anon_sym_DOLLARENV, - ACTIONS(456), 1, - anon_sym_DOLLARCACHE, - ACTIONS(694), 1, aux_sym_unquoted_argument_token1, - STATE(193), 1, - sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(203), 3, + ACTIONS(452), 11, sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - STATE(175), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(450), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8619] = 10, - ACTIONS(699), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(702), 1, anon_sym_DOLLARENV, - ACTIONS(705), 1, anon_sym_DOLLARCACHE, - ACTIONS(708), 1, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7843] = 3, + ACTIONS(458), 1, aux_sym_unquoted_argument_token1, - STATE(193), 1, - sym__escape_encoded, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(196), 3, + ACTIONS(456), 11, sym_bracket_argument, - anon_sym_DQUOTE, - anon_sym_RPAREN, - STATE(175), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(195), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(696), 5, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8661] = 11, - ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(721), 1, + anon_sym_RPAREN, + [7864] = 3, + ACTIONS(462), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(460), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7885] = 3, + ACTIONS(466), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(464), 11, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, + anon_sym_RPAREN, + [7906] = 6, + ACTIONS(471), 1, + aux_sym_variable_token1, + ACTIONS(474), 1, + anon_sym_RBRACE, + STATE(270), 1, + sym__escape_encoded, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(154), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(468), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7931] = 3, + ACTIONS(446), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(444), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [7950] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(332), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [7975] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(341), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8000] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(323), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8025] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(346), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8050] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(442), 10, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, aux_sym_quoted_element_token1, - STATE(259), 1, - sym__escape_encoded, - STATE(403), 1, - sym_quoted_element, + [8067] = 3, + ACTIONS(462), 1, + aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(189), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, + ACTIONS(460), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8704] = 11, - ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(721), 1, + anon_sym_RPAREN, + [8086] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(373), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8111] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(363), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8136] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(462), 10, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, aux_sym_quoted_element_token1, - ACTIONS(723), 1, - anon_sym_DQUOTE, - STATE(259), 1, - sym__escape_encoded, - STATE(425), 1, - sym_quoted_element, + [8153] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(189), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, + ACTIONS(438), 10, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8747] = 11, - ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(721), 1, + anon_sym_DQUOTE, aux_sym_quoted_element_token1, - ACTIONS(725), 1, - anon_sym_DQUOTE, - STATE(259), 1, + [8170] = 6, + ACTIONS(480), 1, + aux_sym_variable_token1, + ACTIONS(482), 1, + anon_sym_RBRACE, + STATE(270), 1, sym__escape_encoded, - STATE(407), 1, - sym_quoted_element, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(189), 3, + STATE(154), 2, sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8195] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(342), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8220] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(343), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8245] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(446), 10, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8790] = 11, - ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(721), 1, + anon_sym_DQUOTE, aux_sym_quoted_element_token1, - ACTIONS(727), 1, - anon_sym_DQUOTE, - STATE(259), 1, - sym__escape_encoded, - STATE(413), 1, - sym_quoted_element, + [8262] = 3, + ACTIONS(442), 1, + aux_sym_unquoted_argument_token1, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(189), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, + ACTIONS(440), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [8833] = 11, - ACTIONS(713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, anon_sym_DOLLARENV, - ACTIONS(717), 1, anon_sym_DOLLARCACHE, - ACTIONS(721), 1, + anon_sym_RPAREN, + [8281] = 6, + ACTIONS(478), 1, + aux_sym_variable_token1, + STATE(270), 1, + sym__escape_encoded, + STATE(331), 1, + sym_variable, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + STATE(166), 2, + sym_escape_sequence, + aux_sym_variable_repeat1, + ACTIONS(476), 5, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + [8306] = 3, + ACTIONS(438), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(436), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [8325] = 3, + ACTIONS(450), 1, + aux_sym_unquoted_argument_token1, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(448), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_RPAREN, + [8344] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(450), 10, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + sym__escape_semicolon, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLARENV, + anon_sym_DOLLARCACHE, + anon_sym_DQUOTE, aux_sym_quoted_element_token1, - ACTIONS(729), 1, - anon_sym_DQUOTE, - STATE(259), 1, - sym__escape_encoded, - STATE(418), 1, - sym_quoted_element, + [8361] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(189), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8876] = 3, - ACTIONS(215), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(213), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [8902] = 3, - ACTIONS(239), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(237), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [8928] = 3, - ACTIONS(211), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(209), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [8954] = 10, - ACTIONS(94), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(96), 1, - anon_sym_DOLLARENV, - ACTIONS(98), 1, - anon_sym_DOLLARCACHE, - ACTIONS(203), 1, - anon_sym_RPAREN, - ACTIONS(731), 1, - aux_sym_unquoted_argument_token1, - STATE(253), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(188), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(92), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [8994] = 10, - ACTIONS(736), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(739), 1, - anon_sym_DOLLARENV, - ACTIONS(742), 1, - anon_sym_DOLLARCACHE, - ACTIONS(745), 1, - anon_sym_DQUOTE, - ACTIONS(747), 1, - aux_sym_quoted_element_token1, - STATE(259), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(185), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(733), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9034] = 3, - ACTIONS(219), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(217), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [9060] = 3, - ACTIONS(231), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(229), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [9086] = 10, - ACTIONS(196), 1, - anon_sym_RPAREN, - ACTIONS(753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(756), 1, - anon_sym_DOLLARENV, - ACTIONS(759), 1, - anon_sym_DOLLARCACHE, - ACTIONS(762), 1, - aux_sym_unquoted_argument_token1, - STATE(253), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(188), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_unquoted_argument_repeat1, - STATE(258), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(750), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9126] = 10, - ACTIONS(713), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(715), 1, - anon_sym_DOLLARENV, - ACTIONS(717), 1, - anon_sym_DOLLARCACHE, - ACTIONS(765), 1, - anon_sym_DQUOTE, - ACTIONS(767), 1, - aux_sym_quoted_element_token1, - STATE(259), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(185), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_quoted_element_repeat1, - STATE(237), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(711), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9166] = 3, - ACTIONS(223), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(221), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [9192] = 3, - ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(233), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [9218] = 3, - ACTIONS(227), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(225), 16, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_IN, - anon_sym_RANGE, - anon_sym_ZIP_LISTS, - anon_sym_LISTS, - anon_sym_ITEMS, - [9244] = 3, - ACTIONS(215), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(213), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9265] = 3, - ACTIONS(219), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(217), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9286] = 3, - ACTIONS(231), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(229), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9307] = 3, - ACTIONS(239), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(237), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9328] = 3, - ACTIONS(223), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(221), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9349] = 3, - ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(233), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9370] = 3, - ACTIONS(211), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(209), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9391] = 3, - ACTIONS(227), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(225), 11, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - anon_sym_RPAREN, - [9412] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(769), 10, + ACTIONS(484), 9, sym_if, sym_elseif, sym_else, @@ -12463,13 +8135,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9429] = 2, + [8377] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(771), 10, + ACTIONS(486), 9, sym_if, sym_elseif, sym_else, @@ -12478,51 +8149,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9446] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(414), 1, - sym_variable, + [8393] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9471] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(421), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9496] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(777), 10, + ACTIONS(488), 9, sym_if, sym_elseif, sym_else, @@ -12531,70 +8163,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9513] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(419), 1, - sym_variable, + [8409] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9538] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(412), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9563] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(411), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9588] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(779), 10, + ACTIONS(490), 9, sym_if, sym_elseif, sym_else, @@ -12603,13 +8177,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9605] = 2, + [8425] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(781), 10, + ACTIONS(492), 9, sym_if, sym_elseif, sym_else, @@ -12618,51 +8191,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9622] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(408), 1, - sym_variable, + [8441] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9647] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(396), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9672] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(783), 10, + ACTIONS(494), 9, sym_if, sym_elseif, sym_else, @@ -12671,32 +8205,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9689] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(393), 1, - sym_variable, + [8457] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9714] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(785), 10, + ACTIONS(496), 9, sym_if, sym_elseif, sym_else, @@ -12705,32 +8219,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9731] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(402), 1, - sym_variable, + [8473] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [9756] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(787), 10, + ACTIONS(498), 9, sym_if, sym_elseif, sym_else, @@ -12739,13 +8233,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9773] = 2, + [8489] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(789), 10, + ACTIONS(500), 9, sym_if, sym_elseif, sym_else, @@ -12754,13 +8247,12 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9790] = 2, + [8505] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(791), 10, + ACTIONS(502), 9, sym_if, sym_elseif, sym_else, @@ -12769,3010 +8261,2203 @@ static const uint16_t ts_small_parse_table[] = { sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9807] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(409), 1, - sym_variable, + [8521] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, + ACTIONS(504), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8537] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8553] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(508), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8569] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(510), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8585] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(512), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8601] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8617] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(516), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8633] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(518), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8649] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8665] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8681] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(524), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8697] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(526), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8713] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8729] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8745] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(532), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8761] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(534), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8777] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8793] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(538), 9, + sym_if, + sym_elseif, + sym_else, + sym_endif, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8809] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [8823] = 3, + ACTIONS(540), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [8839] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8853] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8867] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8881] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8895] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8909] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(518), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8923] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(516), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8937] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8951] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(484), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8965] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(538), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8979] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(524), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [8993] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(504), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9007] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(496), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9021] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(494), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9035] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(498), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9049] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(500), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9063] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(502), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9077] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9091] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(534), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9105] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(526), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9119] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(510), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9133] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(508), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9147] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9161] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9175] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9189] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9203] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(518), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9217] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(516), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9231] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9245] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(484), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9259] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(538), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9273] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(524), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9287] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(504), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9301] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(496), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9315] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(494), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [9329] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(498), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9343] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(500), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9357] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(502), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9371] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9385] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(534), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9399] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(526), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9413] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(510), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9427] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(508), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9441] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9455] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9469] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9483] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9497] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9511] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(518), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9525] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(516), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9539] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9553] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(484), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9567] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(538), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9581] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(524), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9595] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(504), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9609] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(496), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9623] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(494), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_endmacro, + sym_identifier, + [9637] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(500), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9651] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(502), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9665] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9679] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(534), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9693] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(526), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9707] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(510), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9721] = 3, + ACTIONS(542), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(498), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9737] = 3, + ACTIONS(544), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(500), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9753] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(440), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, sym__escape_semicolon, - [9832] = 6, - ACTIONS(775), 1, aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(410), 1, - sym_variable, + anon_sym_RBRACE, + [9767] = 3, + ACTIONS(546), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, + ACTIONS(502), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9783] = 3, + ACTIONS(548), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9799] = 3, + ACTIONS(550), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(534), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9815] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(498), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [9829] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(510), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9843] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(526), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, [9857] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(793), 10, + ACTIONS(534), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9871] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(506), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9885] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(502), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9899] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(500), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [9913] = 3, + ACTIONS(552), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(494), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9874] = 2, + [9929] = 3, + ACTIONS(554), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(795), 10, + ACTIONS(496), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9891] = 2, + [9945] = 3, + ACTIONS(556), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(797), 10, + ACTIONS(504), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9908] = 2, + [9961] = 3, + ACTIONS(558), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(799), 10, + ACTIONS(524), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9925] = 2, + [9977] = 3, + ACTIONS(560), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(211), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [9942] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(801), 10, + ACTIONS(538), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9959] = 2, + [9993] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(803), 10, + ACTIONS(498), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [10007] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(494), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10021] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(496), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10035] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(508), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10049] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10063] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10077] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10091] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10105] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(562), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10119] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(504), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10133] = 3, + ACTIONS(564), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(484), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [9976] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(420), 1, - sym_variable, + [10149] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10001] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(428), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10026] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(805), 10, + ACTIONS(566), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [10163] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(568), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_endfunction, + sym_macro, + sym_identifier, + [10177] = 3, + ACTIONS(570), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10043] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(430), 1, - sym_variable, + [10193] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10068] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(807), 10, + ACTIONS(572), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, + sym_endmacro, sym_identifier, - [10085] = 2, + [10207] = 3, + ACTIONS(574), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(809), 10, + ACTIONS(516), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10102] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(436), 1, - sym_variable, + [10223] = 3, + ACTIONS(576), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10127] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(811), 10, + ACTIONS(526), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10144] = 2, + [10239] = 3, + ACTIONS(578), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(231), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [10161] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(813), 10, + ACTIONS(518), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10178] = 2, + [10255] = 3, + ACTIONS(580), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(815), 10, + ACTIONS(510), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10195] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(817), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [10212] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(819), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [10229] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(821), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [10246] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(437), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, [10271] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(823), 10, + ACTIONS(508), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [10285] = 3, + ACTIONS(582), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(508), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10288] = 2, + [10301] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(825), 10, + ACTIONS(524), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10315] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(538), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10329] = 3, + ACTIONS(584), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(522), 6, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10305] = 6, - ACTIONS(830), 1, - aux_sym_variable_token1, - ACTIONS(833), 1, - anon_sym_RBRACE, - STATE(389), 1, - sym__escape_encoded, + [10345] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - STATE(246), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(827), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10330] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(835), 10, + ACTIONS(586), 7, sym_if, - sym_elseif, - sym_else, - sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_message, + sym_endmacro, sym_identifier, - [10347] = 2, + [10359] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(837), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [10364] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(839), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [10381] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(391), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10406] = 6, - ACTIONS(775), 1, - aux_sym_variable_token1, - STATE(389), 1, - sym__escape_encoded, - STATE(390), 1, - sym_variable, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(252), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10431] = 6, - ACTIONS(841), 1, - aux_sym_variable_token1, - ACTIONS(843), 1, - anon_sym_RBRACE, - STATE(389), 1, - sym__escape_encoded, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - STATE(246), 2, - sym_escape_sequence, - aux_sym_variable_repeat1, - ACTIONS(773), 5, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - [10456] = 3, - ACTIONS(215), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(213), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_RPAREN, - [10475] = 3, - ACTIONS(219), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(217), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_RPAREN, - [10494] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(235), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [10511] = 3, - ACTIONS(211), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(209), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_RPAREN, - [10530] = 3, - ACTIONS(235), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(233), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_RPAREN, - [10549] = 3, - ACTIONS(231), 1, - aux_sym_unquoted_argument_token1, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(229), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_RPAREN, - [10568] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(215), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [10585] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(219), 10, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLARENV, - anon_sym_DOLLARCACHE, - anon_sym_DQUOTE, - aux_sym_quoted_element_token1, - [10602] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(801), 8, + ACTIONS(588), 7, sym_if, sym_foreach, sym_while, sym_function, sym_endfunction, sym_macro, - sym_message, sym_identifier, - [10617] = 2, + [10373] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(817), 8, + ACTIONS(590), 7, + sym_if, + sym_foreach, + sym_while, + sym_endwhile, + sym_function, + sym_macro, + sym_identifier, + [10387] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(592), 7, sym_if, sym_foreach, sym_endforeach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, - [10632] = 2, + [10401] = 2, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(771), 8, + ACTIONS(484), 7, sym_if, sym_foreach, sym_endforeach, sym_while, sym_function, sym_macro, - sym_message, sym_identifier, + [10415] = 3, + ACTIONS(594), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(536), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10431] = 3, + ACTIONS(596), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(530), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10447] = 3, + ACTIONS(598), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(528), 6, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10463] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(520), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10477] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(514), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10491] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(516), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10505] = 2, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + ACTIONS(518), 7, + sym_if, + sym_foreach, + sym_endforeach, + sym_while, + sym_function, + sym_macro, + sym_identifier, + [10519] = 2, + ACTIONS(600), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10527] = 2, + ACTIONS(602), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10535] = 2, + ACTIONS(604), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10543] = 2, + ACTIONS(606), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10551] = 2, + ACTIONS(608), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10559] = 2, + ACTIONS(610), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10567] = 2, + ACTIONS(612), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10575] = 2, + ACTIONS(614), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10583] = 2, + ACTIONS(616), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10591] = 2, + ACTIONS(618), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10599] = 2, + ACTIONS(620), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10607] = 2, + ACTIONS(622), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10615] = 2, + ACTIONS(624), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10623] = 2, + ACTIONS(626), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10631] = 2, + ACTIONS(628), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10639] = 2, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, [10647] = 2, + ACTIONS(632), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(821), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10662] = 2, + [10655] = 2, + ACTIONS(634), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(819), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10677] = 2, + [10663] = 2, + ACTIONS(636), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(817), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10692] = 2, + [10671] = 2, + ACTIONS(638), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(815), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10707] = 2, + [10679] = 2, + ACTIONS(640), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(813), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10722] = 2, + [10687] = 2, + ACTIONS(642), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(783), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [10737] = 2, + [10695] = 2, + ACTIONS(644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(785), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [10752] = 2, + [10703] = 2, + ACTIONS(646), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10711] = 2, + ACTIONS(648), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10719] = 2, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10727] = 2, + ACTIONS(464), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10735] = 2, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10743] = 2, + ACTIONS(654), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10751] = 2, + ACTIONS(656), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10759] = 2, + ACTIONS(658), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(805), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, [10767] = 2, + ACTIONS(660), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(809), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10782] = 2, + [10775] = 2, + ACTIONS(662), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(807), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10797] = 2, + [10783] = 2, + ACTIONS(664), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(811), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10812] = 2, + [10791] = 2, + ACTIONS(666), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(795), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10827] = 2, + [10799] = 2, + ACTIONS(668), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(777), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10842] = 2, + [10807] = 2, + ACTIONS(670), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(803), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10857] = 2, + [10815] = 2, + ACTIONS(672), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(801), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10872] = 2, + [10823] = 2, + ACTIONS(674), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10831] = 2, + ACTIONS(676), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10839] = 2, + ACTIONS(678), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10847] = 2, + ACTIONS(680), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10855] = 2, + ACTIONS(682), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10863] = 2, + ACTIONS(684), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10871] = 2, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10879] = 2, + ACTIONS(688), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(769), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, [10887] = 2, + ACTIONS(690), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(799), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10902] = 2, + [10895] = 2, + ACTIONS(692), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(797), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10917] = 2, + [10903] = 2, + ACTIONS(694), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(771), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10932] = 2, + [10911] = 2, + ACTIONS(696), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(793), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10947] = 2, + [10919] = 2, + ACTIONS(698), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(791), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10962] = 2, + [10927] = 2, + ACTIONS(700), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(787), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [10977] = 2, + [10935] = 2, + ACTIONS(702), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(789), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [10992] = 2, + [10943] = 2, + ACTIONS(704), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10951] = 2, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10959] = 2, + ACTIONS(708), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10967] = 2, + ACTIONS(710), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10975] = 2, + ACTIONS(712), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10983] = 2, + ACTIONS(714), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10991] = 2, + ACTIONS(456), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [10999] = 2, + ACTIONS(452), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(787), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, [11007] = 2, + ACTIONS(716), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(785), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [11022] = 2, + [11015] = 2, + ACTIONS(718), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(783), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [11037] = 2, + [11023] = 2, + ACTIONS(720), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(781), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [11052] = 2, + [11031] = 2, + ACTIONS(722), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(789), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11067] = 2, + [11039] = 2, + ACTIONS(724), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(791), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11082] = 2, + [11047] = 2, + ACTIONS(726), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(793), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11097] = 2, + [11055] = 2, + ACTIONS(728), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(771), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11112] = 2, + [11063] = 2, + ACTIONS(730), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11071] = 2, + ACTIONS(732), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11079] = 2, + ACTIONS(734), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11087] = 2, + ACTIONS(736), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11095] = 2, + ACTIONS(738), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11103] = 2, + ACTIONS(740), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11111] = 2, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_bracket_comment, + sym_line_comment, + [11119] = 2, + ACTIONS(744), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - ACTIONS(797), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, [11127] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(799), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11142] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(769), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11157] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(803), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11172] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(777), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11187] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(795), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11202] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(811), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11217] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(807), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11232] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(809), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11247] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(805), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11262] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(813), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11277] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(815), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11292] = 3, - ACTIONS(845), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(821), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11309] = 3, - ACTIONS(847), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(819), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11326] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(817), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11341] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(819), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11356] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(821), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11371] = 3, - ACTIONS(849), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(817), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11388] = 3, - ACTIONS(851), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(815), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11405] = 3, - ACTIONS(853), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(813), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11422] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(855), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11437] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(857), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11452] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(859), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [11467] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(861), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [11482] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(781), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11497] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(783), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11512] = 3, - ACTIONS(863), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(805), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11529] = 3, - ACTIONS(865), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(809), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11546] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(785), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11561] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(787), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11576] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(789), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11591] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(791), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11606] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(793), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11621] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(771), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11636] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(797), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11651] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(799), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11666] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(769), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11681] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(801), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11696] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(803), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11711] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(777), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11726] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(795), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11741] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(811), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11756] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(807), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11771] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(809), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11786] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(805), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11801] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(813), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11816] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(815), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11831] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(817), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11846] = 3, - ACTIONS(867), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(807), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11863] = 3, - ACTIONS(869), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(811), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11880] = 3, - ACTIONS(871), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(795), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11897] = 3, - ACTIONS(873), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(777), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11914] = 3, - ACTIONS(875), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(803), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11931] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(819), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11946] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(821), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11961] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(877), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11976] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(879), 8, - sym_if, - sym_foreach, - sym_while, - sym_endwhile, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [11991] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(781), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12006] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(783), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12021] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(785), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12036] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(787), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12051] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(789), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12066] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(791), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12081] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(793), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12096] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(821), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12111] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(797), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12126] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(799), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12141] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(769), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12156] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(801), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12171] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(803), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12186] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(777), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12201] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(795), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12216] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(811), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12231] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(807), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12246] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(809), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12261] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(805), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12276] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(813), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12291] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(881), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12306] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(883), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_message, - sym_identifier, - [12321] = 3, - ACTIONS(885), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(801), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12338] = 3, - ACTIONS(887), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(769), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12355] = 3, - ACTIONS(889), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(799), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12372] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(815), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12387] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(781), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_endfunction, - sym_macro, - sym_message, - sym_identifier, - [12402] = 3, - ACTIONS(891), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(797), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12419] = 3, - ACTIONS(893), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(771), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12436] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(819), 8, - sym_if, - sym_foreach, - sym_endforeach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12451] = 3, - ACTIONS(895), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(793), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12468] = 3, - ACTIONS(897), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(781), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12485] = 3, - ACTIONS(899), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(783), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12502] = 3, - ACTIONS(901), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(785), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12519] = 3, - ACTIONS(903), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(787), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12536] = 3, - ACTIONS(905), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(789), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12553] = 3, - ACTIONS(907), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(791), 7, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_message, - sym_identifier, - [12570] = 2, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - ACTIONS(213), 7, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - sym__escape_semicolon, - aux_sym_variable_token1, - anon_sym_RBRACE, - [12584] = 2, - ACTIONS(909), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12592] = 2, - ACTIONS(911), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12600] = 2, - ACTIONS(913), 1, + ACTIONS(746), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [12608] = 2, - ACTIONS(915), 1, - anon_sym_RBRACE, + [11135] = 2, + ACTIONS(748), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [12616] = 2, - ACTIONS(917), 1, - anon_sym_RPAREN, + [11143] = 2, + ACTIONS(750), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [12624] = 2, - ACTIONS(919), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12632] = 2, - ACTIONS(921), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12640] = 2, - ACTIONS(923), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12648] = 2, - ACTIONS(925), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12656] = 2, - ACTIONS(927), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12664] = 2, - ACTIONS(929), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12672] = 2, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12680] = 2, - ACTIONS(933), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12688] = 2, - ACTIONS(935), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12696] = 2, - ACTIONS(937), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12704] = 2, - ACTIONS(939), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12712] = 2, - ACTIONS(941), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12720] = 2, - ACTIONS(943), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12728] = 2, - ACTIONS(945), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12736] = 2, - ACTIONS(947), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12744] = 2, - ACTIONS(949), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12752] = 2, - ACTIONS(951), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12760] = 2, - ACTIONS(953), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12768] = 2, - ACTIONS(955), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12776] = 2, - ACTIONS(957), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12784] = 2, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12792] = 2, - ACTIONS(961), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12800] = 2, - ACTIONS(963), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12808] = 2, - ACTIONS(965), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12816] = 2, - ACTIONS(967), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12824] = 2, - ACTIONS(969), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12832] = 2, - ACTIONS(971), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12840] = 2, - ACTIONS(973), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12848] = 2, - ACTIONS(975), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12856] = 2, - ACTIONS(977), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12864] = 2, - ACTIONS(979), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12872] = 2, - ACTIONS(981), 1, + [11151] = 2, + ACTIONS(752), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [12880] = 2, - ACTIONS(983), 1, + [11159] = 2, + ACTIONS(754), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [12888] = 2, - ACTIONS(985), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12896] = 2, - ACTIONS(987), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12904] = 2, - ACTIONS(989), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12912] = 2, - ACTIONS(991), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12920] = 2, - ACTIONS(993), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12928] = 2, - ACTIONS(995), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12936] = 2, - ACTIONS(237), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12944] = 2, - ACTIONS(997), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12952] = 2, - ACTIONS(999), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12960] = 2, - ACTIONS(1001), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12968] = 2, - ACTIONS(1003), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12976] = 2, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12984] = 2, - ACTIONS(1007), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [12992] = 2, - ACTIONS(1009), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13000] = 2, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13008] = 2, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13016] = 2, - ACTIONS(1015), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13024] = 2, - ACTIONS(221), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13032] = 2, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13040] = 2, - ACTIONS(225), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13048] = 2, - ACTIONS(1019), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13056] = 2, - ACTIONS(1021), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13064] = 2, - ACTIONS(1023), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13072] = 2, - ACTIONS(1025), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13080] = 2, - ACTIONS(1027), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13088] = 2, - ACTIONS(1029), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13096] = 2, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13104] = 2, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13112] = 2, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13120] = 2, - ACTIONS(1037), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13128] = 2, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13136] = 2, - ACTIONS(1041), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13144] = 2, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13152] = 2, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13160] = 2, - ACTIONS(1047), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13168] = 2, - ACTIONS(1049), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13176] = 2, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13184] = 2, - ACTIONS(1053), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13192] = 2, - ACTIONS(1055), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13200] = 2, - ACTIONS(1057), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13208] = 2, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13216] = 2, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13224] = 2, - ACTIONS(1063), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13232] = 2, - ACTIONS(1065), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13240] = 2, - ACTIONS(1067), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13248] = 2, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13256] = 2, - ACTIONS(1071), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13264] = 2, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13272] = 2, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13280] = 2, - ACTIONS(1077), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13288] = 2, - ACTIONS(1079), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13296] = 2, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13304] = 2, - ACTIONS(1083), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13312] = 2, - ACTIONS(1085), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13320] = 2, - ACTIONS(1087), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13328] = 2, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13336] = 2, - ACTIONS(1091), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13344] = 2, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13352] = 2, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13360] = 2, - ACTIONS(1097), 1, + [11167] = 2, + ACTIONS(756), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, sym_line_comment, - [13368] = 2, - ACTIONS(1099), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13376] = 2, - ACTIONS(1101), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13384] = 2, - ACTIONS(1103), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13392] = 2, - ACTIONS(1105), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13400] = 2, - ACTIONS(1107), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13408] = 2, - ACTIONS(1109), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13416] = 2, - ACTIONS(1111), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13424] = 2, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_bracket_comment, - sym_line_comment, - [13432] = 2, - ACTIONS(1115), 1, + [11175] = 2, + ACTIONS(758), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_bracket_comment, @@ -15780,479 +10465,409 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(24)] = 0, - [SMALL_STATE(25)] = 65, - [SMALL_STATE(26)] = 130, - [SMALL_STATE(27)] = 195, - [SMALL_STATE(28)] = 260, - [SMALL_STATE(29)] = 325, - [SMALL_STATE(30)] = 390, - [SMALL_STATE(31)] = 455, - [SMALL_STATE(32)] = 520, - [SMALL_STATE(33)] = 589, - [SMALL_STATE(34)] = 658, - [SMALL_STATE(35)] = 727, - [SMALL_STATE(36)] = 796, - [SMALL_STATE(37)] = 865, - [SMALL_STATE(38)] = 934, - [SMALL_STATE(39)] = 1003, - [SMALL_STATE(40)] = 1072, - [SMALL_STATE(41)] = 1141, - [SMALL_STATE(42)] = 1210, - [SMALL_STATE(43)] = 1279, - [SMALL_STATE(44)] = 1348, - [SMALL_STATE(45)] = 1417, - [SMALL_STATE(46)] = 1472, - [SMALL_STATE(47)] = 1527, - [SMALL_STATE(48)] = 1588, - [SMALL_STATE(49)] = 1649, - [SMALL_STATE(50)] = 1710, - [SMALL_STATE(51)] = 1776, - [SMALL_STATE(52)] = 1842, - [SMALL_STATE(53)] = 1908, - [SMALL_STATE(54)] = 1974, - [SMALL_STATE(55)] = 2040, - [SMALL_STATE(56)] = 2106, - [SMALL_STATE(57)] = 2172, - [SMALL_STATE(58)] = 2238, - [SMALL_STATE(59)] = 2304, - [SMALL_STATE(60)] = 2370, - [SMALL_STATE(61)] = 2436, - [SMALL_STATE(62)] = 2502, - [SMALL_STATE(63)] = 2565, - [SMALL_STATE(64)] = 2599, - [SMALL_STATE(65)] = 2633, - [SMALL_STATE(66)] = 2667, - [SMALL_STATE(67)] = 2701, - [SMALL_STATE(68)] = 2735, - [SMALL_STATE(69)] = 2769, - [SMALL_STATE(70)] = 2803, - [SMALL_STATE(71)] = 2837, - [SMALL_STATE(72)] = 2884, - [SMALL_STATE(73)] = 2931, - [SMALL_STATE(74)] = 2985, - [SMALL_STATE(75)] = 3039, - [SMALL_STATE(76)] = 3093, - [SMALL_STATE(77)] = 3151, - [SMALL_STATE(78)] = 3209, - [SMALL_STATE(79)] = 3263, - [SMALL_STATE(80)] = 3321, - [SMALL_STATE(81)] = 3375, - [SMALL_STATE(82)] = 3433, - [SMALL_STATE(83)] = 3487, - [SMALL_STATE(84)] = 3545, - [SMALL_STATE(85)] = 3603, - [SMALL_STATE(86)] = 3657, - [SMALL_STATE(87)] = 3711, - [SMALL_STATE(88)] = 3765, - [SMALL_STATE(89)] = 3819, - [SMALL_STATE(90)] = 3877, - [SMALL_STATE(91)] = 3931, - [SMALL_STATE(92)] = 3989, - [SMALL_STATE(93)] = 4047, - [SMALL_STATE(94)] = 4105, - [SMALL_STATE(95)] = 4163, - [SMALL_STATE(96)] = 4221, - [SMALL_STATE(97)] = 4279, - [SMALL_STATE(98)] = 4333, - [SMALL_STATE(99)] = 4391, - [SMALL_STATE(100)] = 4445, - [SMALL_STATE(101)] = 4499, - [SMALL_STATE(102)] = 4553, - [SMALL_STATE(103)] = 4607, - [SMALL_STATE(104)] = 4661, - [SMALL_STATE(105)] = 4715, - [SMALL_STATE(106)] = 4769, - [SMALL_STATE(107)] = 4827, - [SMALL_STATE(108)] = 4881, - [SMALL_STATE(109)] = 4939, - [SMALL_STATE(110)] = 4997, - [SMALL_STATE(111)] = 5055, - [SMALL_STATE(112)] = 5113, - [SMALL_STATE(113)] = 5167, - [SMALL_STATE(114)] = 5225, - [SMALL_STATE(115)] = 5279, - [SMALL_STATE(116)] = 5337, - [SMALL_STATE(117)] = 5391, - [SMALL_STATE(118)] = 5449, - [SMALL_STATE(119)] = 5503, - [SMALL_STATE(120)] = 5561, - [SMALL_STATE(121)] = 5619, - [SMALL_STATE(122)] = 5677, - [SMALL_STATE(123)] = 5735, - [SMALL_STATE(124)] = 5793, - [SMALL_STATE(125)] = 5851, - [SMALL_STATE(126)] = 5909, - [SMALL_STATE(127)] = 5967, - [SMALL_STATE(128)] = 6025, - [SMALL_STATE(129)] = 6083, - [SMALL_STATE(130)] = 6141, - [SMALL_STATE(131)] = 6195, - [SMALL_STATE(132)] = 6249, - [SMALL_STATE(133)] = 6307, - [SMALL_STATE(134)] = 6365, - [SMALL_STATE(135)] = 6423, - [SMALL_STATE(136)] = 6477, - [SMALL_STATE(137)] = 6535, - [SMALL_STATE(138)] = 6593, - [SMALL_STATE(139)] = 6647, - [SMALL_STATE(140)] = 6701, - [SMALL_STATE(141)] = 6755, - [SMALL_STATE(142)] = 6809, - [SMALL_STATE(143)] = 6863, - [SMALL_STATE(144)] = 6917, - [SMALL_STATE(145)] = 6971, - [SMALL_STATE(146)] = 7025, - [SMALL_STATE(147)] = 7079, - [SMALL_STATE(148)] = 7137, - [SMALL_STATE(149)] = 7195, - [SMALL_STATE(150)] = 7253, - [SMALL_STATE(151)] = 7311, - [SMALL_STATE(152)] = 7365, - [SMALL_STATE(153)] = 7423, - [SMALL_STATE(154)] = 7477, - [SMALL_STATE(155)] = 7535, - [SMALL_STATE(156)] = 7593, - [SMALL_STATE(157)] = 7651, - [SMALL_STATE(158)] = 7705, - [SMALL_STATE(159)] = 7759, - [SMALL_STATE(160)] = 7817, - [SMALL_STATE(161)] = 7871, - [SMALL_STATE(162)] = 7929, - [SMALL_STATE(163)] = 7984, - [SMALL_STATE(164)] = 8037, - [SMALL_STATE(165)] = 8092, - [SMALL_STATE(166)] = 8147, - [SMALL_STATE(167)] = 8200, - [SMALL_STATE(168)] = 8253, - [SMALL_STATE(169)] = 8308, - [SMALL_STATE(170)] = 8361, - [SMALL_STATE(171)] = 8414, - [SMALL_STATE(172)] = 8469, - [SMALL_STATE(173)] = 8522, - [SMALL_STATE(174)] = 8577, - [SMALL_STATE(175)] = 8619, - [SMALL_STATE(176)] = 8661, - [SMALL_STATE(177)] = 8704, - [SMALL_STATE(178)] = 8747, - [SMALL_STATE(179)] = 8790, - [SMALL_STATE(180)] = 8833, - [SMALL_STATE(181)] = 8876, - [SMALL_STATE(182)] = 8902, - [SMALL_STATE(183)] = 8928, - [SMALL_STATE(184)] = 8954, - [SMALL_STATE(185)] = 8994, - [SMALL_STATE(186)] = 9034, - [SMALL_STATE(187)] = 9060, - [SMALL_STATE(188)] = 9086, - [SMALL_STATE(189)] = 9126, - [SMALL_STATE(190)] = 9166, - [SMALL_STATE(191)] = 9192, - [SMALL_STATE(192)] = 9218, - [SMALL_STATE(193)] = 9244, - [SMALL_STATE(194)] = 9265, - [SMALL_STATE(195)] = 9286, - [SMALL_STATE(196)] = 9307, - [SMALL_STATE(197)] = 9328, - [SMALL_STATE(198)] = 9349, - [SMALL_STATE(199)] = 9370, - [SMALL_STATE(200)] = 9391, - [SMALL_STATE(201)] = 9412, - [SMALL_STATE(202)] = 9429, - [SMALL_STATE(203)] = 9446, - [SMALL_STATE(204)] = 9471, - [SMALL_STATE(205)] = 9496, - [SMALL_STATE(206)] = 9513, - [SMALL_STATE(207)] = 9538, - [SMALL_STATE(208)] = 9563, - [SMALL_STATE(209)] = 9588, - [SMALL_STATE(210)] = 9605, - [SMALL_STATE(211)] = 9622, - [SMALL_STATE(212)] = 9647, - [SMALL_STATE(213)] = 9672, - [SMALL_STATE(214)] = 9689, - [SMALL_STATE(215)] = 9714, - [SMALL_STATE(216)] = 9731, - [SMALL_STATE(217)] = 9756, - [SMALL_STATE(218)] = 9773, - [SMALL_STATE(219)] = 9790, - [SMALL_STATE(220)] = 9807, - [SMALL_STATE(221)] = 9832, - [SMALL_STATE(222)] = 9857, - [SMALL_STATE(223)] = 9874, - [SMALL_STATE(224)] = 9891, - [SMALL_STATE(225)] = 9908, - [SMALL_STATE(226)] = 9925, - [SMALL_STATE(227)] = 9942, - [SMALL_STATE(228)] = 9959, - [SMALL_STATE(229)] = 9976, - [SMALL_STATE(230)] = 10001, - [SMALL_STATE(231)] = 10026, - [SMALL_STATE(232)] = 10043, - [SMALL_STATE(233)] = 10068, - [SMALL_STATE(234)] = 10085, - [SMALL_STATE(235)] = 10102, - [SMALL_STATE(236)] = 10127, - [SMALL_STATE(237)] = 10144, - [SMALL_STATE(238)] = 10161, - [SMALL_STATE(239)] = 10178, - [SMALL_STATE(240)] = 10195, - [SMALL_STATE(241)] = 10212, - [SMALL_STATE(242)] = 10229, - [SMALL_STATE(243)] = 10246, - [SMALL_STATE(244)] = 10271, - [SMALL_STATE(245)] = 10288, - [SMALL_STATE(246)] = 10305, - [SMALL_STATE(247)] = 10330, - [SMALL_STATE(248)] = 10347, - [SMALL_STATE(249)] = 10364, - [SMALL_STATE(250)] = 10381, - [SMALL_STATE(251)] = 10406, - [SMALL_STATE(252)] = 10431, - [SMALL_STATE(253)] = 10456, - [SMALL_STATE(254)] = 10475, - [SMALL_STATE(255)] = 10494, - [SMALL_STATE(256)] = 10511, - [SMALL_STATE(257)] = 10530, - [SMALL_STATE(258)] = 10549, - [SMALL_STATE(259)] = 10568, - [SMALL_STATE(260)] = 10585, - [SMALL_STATE(261)] = 10602, - [SMALL_STATE(262)] = 10617, - [SMALL_STATE(263)] = 10632, - [SMALL_STATE(264)] = 10647, - [SMALL_STATE(265)] = 10662, - [SMALL_STATE(266)] = 10677, - [SMALL_STATE(267)] = 10692, - [SMALL_STATE(268)] = 10707, - [SMALL_STATE(269)] = 10722, - [SMALL_STATE(270)] = 10737, - [SMALL_STATE(271)] = 10752, - [SMALL_STATE(272)] = 10767, - [SMALL_STATE(273)] = 10782, - [SMALL_STATE(274)] = 10797, - [SMALL_STATE(275)] = 10812, - [SMALL_STATE(276)] = 10827, - [SMALL_STATE(277)] = 10842, - [SMALL_STATE(278)] = 10857, - [SMALL_STATE(279)] = 10872, - [SMALL_STATE(280)] = 10887, - [SMALL_STATE(281)] = 10902, - [SMALL_STATE(282)] = 10917, - [SMALL_STATE(283)] = 10932, - [SMALL_STATE(284)] = 10947, - [SMALL_STATE(285)] = 10962, - [SMALL_STATE(286)] = 10977, - [SMALL_STATE(287)] = 10992, - [SMALL_STATE(288)] = 11007, - [SMALL_STATE(289)] = 11022, - [SMALL_STATE(290)] = 11037, - [SMALL_STATE(291)] = 11052, - [SMALL_STATE(292)] = 11067, - [SMALL_STATE(293)] = 11082, - [SMALL_STATE(294)] = 11097, - [SMALL_STATE(295)] = 11112, - [SMALL_STATE(296)] = 11127, - [SMALL_STATE(297)] = 11142, - [SMALL_STATE(298)] = 11157, - [SMALL_STATE(299)] = 11172, - [SMALL_STATE(300)] = 11187, - [SMALL_STATE(301)] = 11202, - [SMALL_STATE(302)] = 11217, - [SMALL_STATE(303)] = 11232, - [SMALL_STATE(304)] = 11247, - [SMALL_STATE(305)] = 11262, - [SMALL_STATE(306)] = 11277, - [SMALL_STATE(307)] = 11292, - [SMALL_STATE(308)] = 11309, - [SMALL_STATE(309)] = 11326, - [SMALL_STATE(310)] = 11341, - [SMALL_STATE(311)] = 11356, - [SMALL_STATE(312)] = 11371, - [SMALL_STATE(313)] = 11388, - [SMALL_STATE(314)] = 11405, - [SMALL_STATE(315)] = 11422, - [SMALL_STATE(316)] = 11437, - [SMALL_STATE(317)] = 11452, - [SMALL_STATE(318)] = 11467, - [SMALL_STATE(319)] = 11482, - [SMALL_STATE(320)] = 11497, - [SMALL_STATE(321)] = 11512, - [SMALL_STATE(322)] = 11529, - [SMALL_STATE(323)] = 11546, - [SMALL_STATE(324)] = 11561, - [SMALL_STATE(325)] = 11576, - [SMALL_STATE(326)] = 11591, - [SMALL_STATE(327)] = 11606, - [SMALL_STATE(328)] = 11621, - [SMALL_STATE(329)] = 11636, - [SMALL_STATE(330)] = 11651, - [SMALL_STATE(331)] = 11666, - [SMALL_STATE(332)] = 11681, - [SMALL_STATE(333)] = 11696, - [SMALL_STATE(334)] = 11711, - [SMALL_STATE(335)] = 11726, - [SMALL_STATE(336)] = 11741, - [SMALL_STATE(337)] = 11756, - [SMALL_STATE(338)] = 11771, - [SMALL_STATE(339)] = 11786, - [SMALL_STATE(340)] = 11801, - [SMALL_STATE(341)] = 11816, - [SMALL_STATE(342)] = 11831, - [SMALL_STATE(343)] = 11846, - [SMALL_STATE(344)] = 11863, - [SMALL_STATE(345)] = 11880, - [SMALL_STATE(346)] = 11897, - [SMALL_STATE(347)] = 11914, - [SMALL_STATE(348)] = 11931, - [SMALL_STATE(349)] = 11946, - [SMALL_STATE(350)] = 11961, - [SMALL_STATE(351)] = 11976, - [SMALL_STATE(352)] = 11991, - [SMALL_STATE(353)] = 12006, - [SMALL_STATE(354)] = 12021, - [SMALL_STATE(355)] = 12036, - [SMALL_STATE(356)] = 12051, - [SMALL_STATE(357)] = 12066, - [SMALL_STATE(358)] = 12081, - [SMALL_STATE(359)] = 12096, - [SMALL_STATE(360)] = 12111, - [SMALL_STATE(361)] = 12126, - [SMALL_STATE(362)] = 12141, - [SMALL_STATE(363)] = 12156, - [SMALL_STATE(364)] = 12171, - [SMALL_STATE(365)] = 12186, - [SMALL_STATE(366)] = 12201, - [SMALL_STATE(367)] = 12216, - [SMALL_STATE(368)] = 12231, - [SMALL_STATE(369)] = 12246, - [SMALL_STATE(370)] = 12261, - [SMALL_STATE(371)] = 12276, - [SMALL_STATE(372)] = 12291, - [SMALL_STATE(373)] = 12306, - [SMALL_STATE(374)] = 12321, - [SMALL_STATE(375)] = 12338, - [SMALL_STATE(376)] = 12355, - [SMALL_STATE(377)] = 12372, - [SMALL_STATE(378)] = 12387, - [SMALL_STATE(379)] = 12402, - [SMALL_STATE(380)] = 12419, - [SMALL_STATE(381)] = 12436, - [SMALL_STATE(382)] = 12451, - [SMALL_STATE(383)] = 12468, - [SMALL_STATE(384)] = 12485, - [SMALL_STATE(385)] = 12502, - [SMALL_STATE(386)] = 12519, - [SMALL_STATE(387)] = 12536, - [SMALL_STATE(388)] = 12553, - [SMALL_STATE(389)] = 12570, - [SMALL_STATE(390)] = 12584, - [SMALL_STATE(391)] = 12592, - [SMALL_STATE(392)] = 12600, - [SMALL_STATE(393)] = 12608, - [SMALL_STATE(394)] = 12616, - [SMALL_STATE(395)] = 12624, - [SMALL_STATE(396)] = 12632, - [SMALL_STATE(397)] = 12640, - [SMALL_STATE(398)] = 12648, - [SMALL_STATE(399)] = 12656, - [SMALL_STATE(400)] = 12664, - [SMALL_STATE(401)] = 12672, - [SMALL_STATE(402)] = 12680, - [SMALL_STATE(403)] = 12688, - [SMALL_STATE(404)] = 12696, - [SMALL_STATE(405)] = 12704, - [SMALL_STATE(406)] = 12712, - [SMALL_STATE(407)] = 12720, - [SMALL_STATE(408)] = 12728, - [SMALL_STATE(409)] = 12736, - [SMALL_STATE(410)] = 12744, - [SMALL_STATE(411)] = 12752, - [SMALL_STATE(412)] = 12760, - [SMALL_STATE(413)] = 12768, - [SMALL_STATE(414)] = 12776, - [SMALL_STATE(415)] = 12784, - [SMALL_STATE(416)] = 12792, - [SMALL_STATE(417)] = 12800, - [SMALL_STATE(418)] = 12808, - [SMALL_STATE(419)] = 12816, - [SMALL_STATE(420)] = 12824, - [SMALL_STATE(421)] = 12832, - [SMALL_STATE(422)] = 12840, - [SMALL_STATE(423)] = 12848, - [SMALL_STATE(424)] = 12856, - [SMALL_STATE(425)] = 12864, - [SMALL_STATE(426)] = 12872, - [SMALL_STATE(427)] = 12880, - [SMALL_STATE(428)] = 12888, - [SMALL_STATE(429)] = 12896, - [SMALL_STATE(430)] = 12904, - [SMALL_STATE(431)] = 12912, - [SMALL_STATE(432)] = 12920, - [SMALL_STATE(433)] = 12928, - [SMALL_STATE(434)] = 12936, - [SMALL_STATE(435)] = 12944, - [SMALL_STATE(436)] = 12952, - [SMALL_STATE(437)] = 12960, - [SMALL_STATE(438)] = 12968, - [SMALL_STATE(439)] = 12976, - [SMALL_STATE(440)] = 12984, - [SMALL_STATE(441)] = 12992, - [SMALL_STATE(442)] = 13000, - [SMALL_STATE(443)] = 13008, - [SMALL_STATE(444)] = 13016, - [SMALL_STATE(445)] = 13024, - [SMALL_STATE(446)] = 13032, - [SMALL_STATE(447)] = 13040, - [SMALL_STATE(448)] = 13048, - [SMALL_STATE(449)] = 13056, - [SMALL_STATE(450)] = 13064, - [SMALL_STATE(451)] = 13072, - [SMALL_STATE(452)] = 13080, - [SMALL_STATE(453)] = 13088, - [SMALL_STATE(454)] = 13096, - [SMALL_STATE(455)] = 13104, - [SMALL_STATE(456)] = 13112, - [SMALL_STATE(457)] = 13120, - [SMALL_STATE(458)] = 13128, - [SMALL_STATE(459)] = 13136, - [SMALL_STATE(460)] = 13144, - [SMALL_STATE(461)] = 13152, - [SMALL_STATE(462)] = 13160, - [SMALL_STATE(463)] = 13168, - [SMALL_STATE(464)] = 13176, - [SMALL_STATE(465)] = 13184, - [SMALL_STATE(466)] = 13192, - [SMALL_STATE(467)] = 13200, - [SMALL_STATE(468)] = 13208, - [SMALL_STATE(469)] = 13216, - [SMALL_STATE(470)] = 13224, - [SMALL_STATE(471)] = 13232, - [SMALL_STATE(472)] = 13240, - [SMALL_STATE(473)] = 13248, - [SMALL_STATE(474)] = 13256, - [SMALL_STATE(475)] = 13264, - [SMALL_STATE(476)] = 13272, - [SMALL_STATE(477)] = 13280, - [SMALL_STATE(478)] = 13288, - [SMALL_STATE(479)] = 13296, - [SMALL_STATE(480)] = 13304, - [SMALL_STATE(481)] = 13312, - [SMALL_STATE(482)] = 13320, - [SMALL_STATE(483)] = 13328, - [SMALL_STATE(484)] = 13336, - [SMALL_STATE(485)] = 13344, - [SMALL_STATE(486)] = 13352, - [SMALL_STATE(487)] = 13360, - [SMALL_STATE(488)] = 13368, - [SMALL_STATE(489)] = 13376, - [SMALL_STATE(490)] = 13384, - [SMALL_STATE(491)] = 13392, - [SMALL_STATE(492)] = 13400, - [SMALL_STATE(493)] = 13408, - [SMALL_STATE(494)] = 13416, - [SMALL_STATE(495)] = 13424, - [SMALL_STATE(496)] = 13432, + [SMALL_STATE(2)] = 0, + [SMALL_STATE(3)] = 62, + [SMALL_STATE(4)] = 124, + [SMALL_STATE(5)] = 186, + [SMALL_STATE(6)] = 248, + [SMALL_STATE(7)] = 310, + [SMALL_STATE(8)] = 372, + [SMALL_STATE(9)] = 434, + [SMALL_STATE(10)] = 496, + [SMALL_STATE(11)] = 558, + [SMALL_STATE(12)] = 620, + [SMALL_STATE(13)] = 682, + [SMALL_STATE(14)] = 744, + [SMALL_STATE(15)] = 803, + [SMALL_STATE(16)] = 857, + [SMALL_STATE(17)] = 911, + [SMALL_STATE(18)] = 965, + [SMALL_STATE(19)] = 1019, + [SMALL_STATE(20)] = 1073, + [SMALL_STATE(21)] = 1127, + [SMALL_STATE(22)] = 1181, + [SMALL_STATE(23)] = 1235, + [SMALL_STATE(24)] = 1289, + [SMALL_STATE(25)] = 1343, + [SMALL_STATE(26)] = 1397, + [SMALL_STATE(27)] = 1451, + [SMALL_STATE(28)] = 1505, + [SMALL_STATE(29)] = 1559, + [SMALL_STATE(30)] = 1613, + [SMALL_STATE(31)] = 1667, + [SMALL_STATE(32)] = 1721, + [SMALL_STATE(33)] = 1775, + [SMALL_STATE(34)] = 1829, + [SMALL_STATE(35)] = 1883, + [SMALL_STATE(36)] = 1937, + [SMALL_STATE(37)] = 1991, + [SMALL_STATE(38)] = 2045, + [SMALL_STATE(39)] = 2099, + [SMALL_STATE(40)] = 2153, + [SMALL_STATE(41)] = 2207, + [SMALL_STATE(42)] = 2261, + [SMALL_STATE(43)] = 2315, + [SMALL_STATE(44)] = 2369, + [SMALL_STATE(45)] = 2423, + [SMALL_STATE(46)] = 2477, + [SMALL_STATE(47)] = 2531, + [SMALL_STATE(48)] = 2585, + [SMALL_STATE(49)] = 2639, + [SMALL_STATE(50)] = 2693, + [SMALL_STATE(51)] = 2747, + [SMALL_STATE(52)] = 2801, + [SMALL_STATE(53)] = 2855, + [SMALL_STATE(54)] = 2909, + [SMALL_STATE(55)] = 2963, + [SMALL_STATE(56)] = 3017, + [SMALL_STATE(57)] = 3071, + [SMALL_STATE(58)] = 3125, + [SMALL_STATE(59)] = 3179, + [SMALL_STATE(60)] = 3233, + [SMALL_STATE(61)] = 3287, + [SMALL_STATE(62)] = 3341, + [SMALL_STATE(63)] = 3395, + [SMALL_STATE(64)] = 3449, + [SMALL_STATE(65)] = 3503, + [SMALL_STATE(66)] = 3556, + [SMALL_STATE(67)] = 3609, + [SMALL_STATE(68)] = 3662, + [SMALL_STATE(69)] = 3715, + [SMALL_STATE(70)] = 3768, + [SMALL_STATE(71)] = 3821, + [SMALL_STATE(72)] = 3874, + [SMALL_STATE(73)] = 3927, + [SMALL_STATE(74)] = 3980, + [SMALL_STATE(75)] = 4033, + [SMALL_STATE(76)] = 4086, + [SMALL_STATE(77)] = 4139, + [SMALL_STATE(78)] = 4192, + [SMALL_STATE(79)] = 4245, + [SMALL_STATE(80)] = 4298, + [SMALL_STATE(81)] = 4351, + [SMALL_STATE(82)] = 4404, + [SMALL_STATE(83)] = 4457, + [SMALL_STATE(84)] = 4510, + [SMALL_STATE(85)] = 4564, + [SMALL_STATE(86)] = 4618, + [SMALL_STATE(87)] = 4672, + [SMALL_STATE(88)] = 4726, + [SMALL_STATE(89)] = 4780, + [SMALL_STATE(90)] = 4834, + [SMALL_STATE(91)] = 4888, + [SMALL_STATE(92)] = 4942, + [SMALL_STATE(93)] = 4996, + [SMALL_STATE(94)] = 5050, + [SMALL_STATE(95)] = 5104, + [SMALL_STATE(96)] = 5158, + [SMALL_STATE(97)] = 5212, + [SMALL_STATE(98)] = 5266, + [SMALL_STATE(99)] = 5320, + [SMALL_STATE(100)] = 5374, + [SMALL_STATE(101)] = 5428, + [SMALL_STATE(102)] = 5482, + [SMALL_STATE(103)] = 5536, + [SMALL_STATE(104)] = 5590, + [SMALL_STATE(105)] = 5644, + [SMALL_STATE(106)] = 5698, + [SMALL_STATE(107)] = 5752, + [SMALL_STATE(108)] = 5806, + [SMALL_STATE(109)] = 5860, + [SMALL_STATE(110)] = 5914, + [SMALL_STATE(111)] = 5968, + [SMALL_STATE(112)] = 6022, + [SMALL_STATE(113)] = 6076, + [SMALL_STATE(114)] = 6130, + [SMALL_STATE(115)] = 6184, + [SMALL_STATE(116)] = 6238, + [SMALL_STATE(117)] = 6292, + [SMALL_STATE(118)] = 6346, + [SMALL_STATE(119)] = 6400, + [SMALL_STATE(120)] = 6454, + [SMALL_STATE(121)] = 6508, + [SMALL_STATE(122)] = 6562, + [SMALL_STATE(123)] = 6616, + [SMALL_STATE(124)] = 6670, + [SMALL_STATE(125)] = 6724, + [SMALL_STATE(126)] = 6778, + [SMALL_STATE(127)] = 6832, + [SMALL_STATE(128)] = 6886, + [SMALL_STATE(129)] = 6940, + [SMALL_STATE(130)] = 6994, + [SMALL_STATE(131)] = 7048, + [SMALL_STATE(132)] = 7102, + [SMALL_STATE(133)] = 7153, + [SMALL_STATE(134)] = 7204, + [SMALL_STATE(135)] = 7255, + [SMALL_STATE(136)] = 7306, + [SMALL_STATE(137)] = 7357, + [SMALL_STATE(138)] = 7408, + [SMALL_STATE(139)] = 7450, + [SMALL_STATE(140)] = 7492, + [SMALL_STATE(141)] = 7535, + [SMALL_STATE(142)] = 7578, + [SMALL_STATE(143)] = 7618, + [SMALL_STATE(144)] = 7658, + [SMALL_STATE(145)] = 7698, + [SMALL_STATE(146)] = 7738, + [SMALL_STATE(147)] = 7759, + [SMALL_STATE(148)] = 7780, + [SMALL_STATE(149)] = 7801, + [SMALL_STATE(150)] = 7822, + [SMALL_STATE(151)] = 7843, + [SMALL_STATE(152)] = 7864, + [SMALL_STATE(153)] = 7885, + [SMALL_STATE(154)] = 7906, + [SMALL_STATE(155)] = 7931, + [SMALL_STATE(156)] = 7950, + [SMALL_STATE(157)] = 7975, + [SMALL_STATE(158)] = 8000, + [SMALL_STATE(159)] = 8025, + [SMALL_STATE(160)] = 8050, + [SMALL_STATE(161)] = 8067, + [SMALL_STATE(162)] = 8086, + [SMALL_STATE(163)] = 8111, + [SMALL_STATE(164)] = 8136, + [SMALL_STATE(165)] = 8153, + [SMALL_STATE(166)] = 8170, + [SMALL_STATE(167)] = 8195, + [SMALL_STATE(168)] = 8220, + [SMALL_STATE(169)] = 8245, + [SMALL_STATE(170)] = 8262, + [SMALL_STATE(171)] = 8281, + [SMALL_STATE(172)] = 8306, + [SMALL_STATE(173)] = 8325, + [SMALL_STATE(174)] = 8344, + [SMALL_STATE(175)] = 8361, + [SMALL_STATE(176)] = 8377, + [SMALL_STATE(177)] = 8393, + [SMALL_STATE(178)] = 8409, + [SMALL_STATE(179)] = 8425, + [SMALL_STATE(180)] = 8441, + [SMALL_STATE(181)] = 8457, + [SMALL_STATE(182)] = 8473, + [SMALL_STATE(183)] = 8489, + [SMALL_STATE(184)] = 8505, + [SMALL_STATE(185)] = 8521, + [SMALL_STATE(186)] = 8537, + [SMALL_STATE(187)] = 8553, + [SMALL_STATE(188)] = 8569, + [SMALL_STATE(189)] = 8585, + [SMALL_STATE(190)] = 8601, + [SMALL_STATE(191)] = 8617, + [SMALL_STATE(192)] = 8633, + [SMALL_STATE(193)] = 8649, + [SMALL_STATE(194)] = 8665, + [SMALL_STATE(195)] = 8681, + [SMALL_STATE(196)] = 8697, + [SMALL_STATE(197)] = 8713, + [SMALL_STATE(198)] = 8729, + [SMALL_STATE(199)] = 8745, + [SMALL_STATE(200)] = 8761, + [SMALL_STATE(201)] = 8777, + [SMALL_STATE(202)] = 8793, + [SMALL_STATE(203)] = 8809, + [SMALL_STATE(204)] = 8823, + [SMALL_STATE(205)] = 8839, + [SMALL_STATE(206)] = 8853, + [SMALL_STATE(207)] = 8867, + [SMALL_STATE(208)] = 8881, + [SMALL_STATE(209)] = 8895, + [SMALL_STATE(210)] = 8909, + [SMALL_STATE(211)] = 8923, + [SMALL_STATE(212)] = 8937, + [SMALL_STATE(213)] = 8951, + [SMALL_STATE(214)] = 8965, + [SMALL_STATE(215)] = 8979, + [SMALL_STATE(216)] = 8993, + [SMALL_STATE(217)] = 9007, + [SMALL_STATE(218)] = 9021, + [SMALL_STATE(219)] = 9035, + [SMALL_STATE(220)] = 9049, + [SMALL_STATE(221)] = 9063, + [SMALL_STATE(222)] = 9077, + [SMALL_STATE(223)] = 9091, + [SMALL_STATE(224)] = 9105, + [SMALL_STATE(225)] = 9119, + [SMALL_STATE(226)] = 9133, + [SMALL_STATE(227)] = 9147, + [SMALL_STATE(228)] = 9161, + [SMALL_STATE(229)] = 9175, + [SMALL_STATE(230)] = 9189, + [SMALL_STATE(231)] = 9203, + [SMALL_STATE(232)] = 9217, + [SMALL_STATE(233)] = 9231, + [SMALL_STATE(234)] = 9245, + [SMALL_STATE(235)] = 9259, + [SMALL_STATE(236)] = 9273, + [SMALL_STATE(237)] = 9287, + [SMALL_STATE(238)] = 9301, + [SMALL_STATE(239)] = 9315, + [SMALL_STATE(240)] = 9329, + [SMALL_STATE(241)] = 9343, + [SMALL_STATE(242)] = 9357, + [SMALL_STATE(243)] = 9371, + [SMALL_STATE(244)] = 9385, + [SMALL_STATE(245)] = 9399, + [SMALL_STATE(246)] = 9413, + [SMALL_STATE(247)] = 9427, + [SMALL_STATE(248)] = 9441, + [SMALL_STATE(249)] = 9455, + [SMALL_STATE(250)] = 9469, + [SMALL_STATE(251)] = 9483, + [SMALL_STATE(252)] = 9497, + [SMALL_STATE(253)] = 9511, + [SMALL_STATE(254)] = 9525, + [SMALL_STATE(255)] = 9539, + [SMALL_STATE(256)] = 9553, + [SMALL_STATE(257)] = 9567, + [SMALL_STATE(258)] = 9581, + [SMALL_STATE(259)] = 9595, + [SMALL_STATE(260)] = 9609, + [SMALL_STATE(261)] = 9623, + [SMALL_STATE(262)] = 9637, + [SMALL_STATE(263)] = 9651, + [SMALL_STATE(264)] = 9665, + [SMALL_STATE(265)] = 9679, + [SMALL_STATE(266)] = 9693, + [SMALL_STATE(267)] = 9707, + [SMALL_STATE(268)] = 9721, + [SMALL_STATE(269)] = 9737, + [SMALL_STATE(270)] = 9753, + [SMALL_STATE(271)] = 9767, + [SMALL_STATE(272)] = 9783, + [SMALL_STATE(273)] = 9799, + [SMALL_STATE(274)] = 9815, + [SMALL_STATE(275)] = 9829, + [SMALL_STATE(276)] = 9843, + [SMALL_STATE(277)] = 9857, + [SMALL_STATE(278)] = 9871, + [SMALL_STATE(279)] = 9885, + [SMALL_STATE(280)] = 9899, + [SMALL_STATE(281)] = 9913, + [SMALL_STATE(282)] = 9929, + [SMALL_STATE(283)] = 9945, + [SMALL_STATE(284)] = 9961, + [SMALL_STATE(285)] = 9977, + [SMALL_STATE(286)] = 9993, + [SMALL_STATE(287)] = 10007, + [SMALL_STATE(288)] = 10021, + [SMALL_STATE(289)] = 10035, + [SMALL_STATE(290)] = 10049, + [SMALL_STATE(291)] = 10063, + [SMALL_STATE(292)] = 10077, + [SMALL_STATE(293)] = 10091, + [SMALL_STATE(294)] = 10105, + [SMALL_STATE(295)] = 10119, + [SMALL_STATE(296)] = 10133, + [SMALL_STATE(297)] = 10149, + [SMALL_STATE(298)] = 10163, + [SMALL_STATE(299)] = 10177, + [SMALL_STATE(300)] = 10193, + [SMALL_STATE(301)] = 10207, + [SMALL_STATE(302)] = 10223, + [SMALL_STATE(303)] = 10239, + [SMALL_STATE(304)] = 10255, + [SMALL_STATE(305)] = 10271, + [SMALL_STATE(306)] = 10285, + [SMALL_STATE(307)] = 10301, + [SMALL_STATE(308)] = 10315, + [SMALL_STATE(309)] = 10329, + [SMALL_STATE(310)] = 10345, + [SMALL_STATE(311)] = 10359, + [SMALL_STATE(312)] = 10373, + [SMALL_STATE(313)] = 10387, + [SMALL_STATE(314)] = 10401, + [SMALL_STATE(315)] = 10415, + [SMALL_STATE(316)] = 10431, + [SMALL_STATE(317)] = 10447, + [SMALL_STATE(318)] = 10463, + [SMALL_STATE(319)] = 10477, + [SMALL_STATE(320)] = 10491, + [SMALL_STATE(321)] = 10505, + [SMALL_STATE(322)] = 10519, + [SMALL_STATE(323)] = 10527, + [SMALL_STATE(324)] = 10535, + [SMALL_STATE(325)] = 10543, + [SMALL_STATE(326)] = 10551, + [SMALL_STATE(327)] = 10559, + [SMALL_STATE(328)] = 10567, + [SMALL_STATE(329)] = 10575, + [SMALL_STATE(330)] = 10583, + [SMALL_STATE(331)] = 10591, + [SMALL_STATE(332)] = 10599, + [SMALL_STATE(333)] = 10607, + [SMALL_STATE(334)] = 10615, + [SMALL_STATE(335)] = 10623, + [SMALL_STATE(336)] = 10631, + [SMALL_STATE(337)] = 10639, + [SMALL_STATE(338)] = 10647, + [SMALL_STATE(339)] = 10655, + [SMALL_STATE(340)] = 10663, + [SMALL_STATE(341)] = 10671, + [SMALL_STATE(342)] = 10679, + [SMALL_STATE(343)] = 10687, + [SMALL_STATE(344)] = 10695, + [SMALL_STATE(345)] = 10703, + [SMALL_STATE(346)] = 10711, + [SMALL_STATE(347)] = 10719, + [SMALL_STATE(348)] = 10727, + [SMALL_STATE(349)] = 10735, + [SMALL_STATE(350)] = 10743, + [SMALL_STATE(351)] = 10751, + [SMALL_STATE(352)] = 10759, + [SMALL_STATE(353)] = 10767, + [SMALL_STATE(354)] = 10775, + [SMALL_STATE(355)] = 10783, + [SMALL_STATE(356)] = 10791, + [SMALL_STATE(357)] = 10799, + [SMALL_STATE(358)] = 10807, + [SMALL_STATE(359)] = 10815, + [SMALL_STATE(360)] = 10823, + [SMALL_STATE(361)] = 10831, + [SMALL_STATE(362)] = 10839, + [SMALL_STATE(363)] = 10847, + [SMALL_STATE(364)] = 10855, + [SMALL_STATE(365)] = 10863, + [SMALL_STATE(366)] = 10871, + [SMALL_STATE(367)] = 10879, + [SMALL_STATE(368)] = 10887, + [SMALL_STATE(369)] = 10895, + [SMALL_STATE(370)] = 10903, + [SMALL_STATE(371)] = 10911, + [SMALL_STATE(372)] = 10919, + [SMALL_STATE(373)] = 10927, + [SMALL_STATE(374)] = 10935, + [SMALL_STATE(375)] = 10943, + [SMALL_STATE(376)] = 10951, + [SMALL_STATE(377)] = 10959, + [SMALL_STATE(378)] = 10967, + [SMALL_STATE(379)] = 10975, + [SMALL_STATE(380)] = 10983, + [SMALL_STATE(381)] = 10991, + [SMALL_STATE(382)] = 10999, + [SMALL_STATE(383)] = 11007, + [SMALL_STATE(384)] = 11015, + [SMALL_STATE(385)] = 11023, + [SMALL_STATE(386)] = 11031, + [SMALL_STATE(387)] = 11039, + [SMALL_STATE(388)] = 11047, + [SMALL_STATE(389)] = 11055, + [SMALL_STATE(390)] = 11063, + [SMALL_STATE(391)] = 11071, + [SMALL_STATE(392)] = 11079, + [SMALL_STATE(393)] = 11087, + [SMALL_STATE(394)] = 11095, + [SMALL_STATE(395)] = 11103, + [SMALL_STATE(396)] = 11111, + [SMALL_STATE(397)] = 11119, + [SMALL_STATE(398)] = 11127, + [SMALL_STATE(399)] = 11135, + [SMALL_STATE(400)] = 11143, + [SMALL_STATE(401)] = 11151, + [SMALL_STATE(402)] = 11159, + [SMALL_STATE(403)] = 11167, + [SMALL_STATE(404)] = 11175, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -16260,517 +10875,358 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(25), - [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(203), - [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(427), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(426), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(179), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(23), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(4), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(4), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(31), - [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [86] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(25), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(203), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(427), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(426), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(22), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(67), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(211), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(491), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(492), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(178), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(45), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(42), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_message_command_repeat1, 2), SHIFT_REPEAT(69), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(67), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(211), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(491), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(492), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(46), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(181), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(230), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(487), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(488), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(177), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(72), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(48), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2), SHIFT_REPEAT(182), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(392), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(465), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(464), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(486), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(485), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(484), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(476), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(438), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(439), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(181), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(230), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(487), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(488), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(71), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(193), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(206), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(489), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(490), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(180), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(174), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(196), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(486), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(485), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(476), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(448), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(449), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(457), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(458), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(467), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(468), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(475), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(474), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(477), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(478), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(193), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(206), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(489), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(490), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(175), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(259), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(216), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(493), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(494), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(185), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(253), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(232), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(495), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(496), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(188), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_element, 1), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 4), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_command, 3), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(389), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(246), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 3), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_command, 4), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1055] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(380), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(355), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(354), + [46] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), + [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(340), + [51] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(344), + [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(359), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(358), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(365), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(147), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(163), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(337), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(336), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(141), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(138), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_command_repeat1, 2), SHIFT_REPEAT(153), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(147), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(163), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(337), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(336), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(141), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(138), + [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(153), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(380), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(340), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(344), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(359), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(358), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(374), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(383), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(357), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(395), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(389), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(147), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(163), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(337), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(336), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(139), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(170), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(157), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(403), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(404), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(142), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(160), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(162), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(401), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(402), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(144), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_element, 1), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 3), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 3), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 4), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 4), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 4), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 4), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(270), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(154), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [666] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), }; #ifdef __cplusplus