From 9903ac891f3b3fd5c8a0d0bcfc51f70e5ccd4216 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 23 Aug 2023 13:36:18 -0400 Subject: [PATCH] chore: generate --- src/grammar.json | 1925 +- src/node-types.json | 160 +- src/parser.c | 247816 ++++++++++++++++++++--------------------- 3 files changed, 120242 insertions(+), 129659 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 7e20f705..bcde6ffe 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -584,17 +584,21 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } }, { "type": "SYMBOL", @@ -614,117 +618,121 @@ "name": "_c_expression_not_assignment" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "STRING", - "value": "**=" - }, - { - "type": "STRING", - "value": "<<=" - }, - { - "type": "STRING", - "value": ">>=" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "STRING", - "value": "|=" - }, - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "||" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "**" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "**=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "**" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + } + ] + } }, { "type": "SYMBOL", @@ -741,17 +749,21 @@ "name": "_c_expression_not_assignment" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } } ] }, @@ -2526,39 +2538,71 @@ "type": "SEQ", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "operator", "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "-" + } } - ] - } - } - }, - { - "type": "SYMBOL", + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "+" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "~" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "++" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "--" + } + } + } + ] + } + }, + { + "type": "SYMBOL", "name": "_expression" } ] @@ -2571,17 +2615,21 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "test_operator" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "SYMBOL", + "name": "test_operator" + } + ] + } }, { "type": "SYMBOL", @@ -2600,17 +2648,21 @@ "name": "_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } } ] }, @@ -2885,10 +2937,6 @@ "type": "SYMBOL", "name": "number" }, - { - "type": "SYMBOL", - "name": "test_operator" - }, { "type": "SYMBOL", "name": "subscript" @@ -3058,10 +3106,6 @@ { "type": "STRING", "value": "^=" - }, - { - "type": "SYMBOL", - "name": "test_operator" } ] } @@ -3130,35 +3174,67 @@ "type": "SEQ", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "operator", "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "-" + } } - ] - } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "+" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "~" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "++" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "--" + } + } + } + ] } }, { @@ -3175,8 +3251,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "!" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!" + } }, { "type": "SYMBOL", @@ -3195,17 +3275,21 @@ "name": "_arithmetic_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } } ] }, @@ -3580,26 +3664,6 @@ "type": "STRING", "value": "${" }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "=" - } - ] - } - }, { "type": "CHOICE", "members": [ @@ -3621,9 +3685,67 @@ "_expansion_body": { "type": "CHOICE", "members": [ + { + "type": "REPEAT1", + "content": { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_hash" + }, + "named": false, + "value": "#" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_bang" + }, + "named": false, + "value": "!" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_equal" + }, + "named": false, + "value": "=" + } + ] + } + } + }, { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!" + } + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -3631,9 +3753,17 @@ "type": "SYMBOL", "name": "variable_name" }, + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, { "type": "SYMBOL", "name": "_special_variable_name" + }, + { + "type": "SYMBOL", + "name": "subscript" } ] }, @@ -3641,371 +3771,28 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": ":-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": ":+" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": ":?" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "array" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "_expansion_expression" }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "##" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "%%" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": ")" - }, - "named": true, - "value": "regex" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "raw_string" - } - ] - } - ] + "type": "SYMBOL", + "name": "_expansion_regex" }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "//" - }, - { - "type": "STRING", - "value": "/#" - }, - { - "type": "STRING", - "value": "/%" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_regex_no_slash" - }, - "named": true, - "value": "regex" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "_expansion_regex_replacement" }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "STRING", - "value": ",," - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "^^" - } - ] - }, - { - "type": "SYMBOL", - "name": "regex" - } - ] + "type": "SYMBOL", + "name": "_expansion_regex_removal" }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "STRING", - "value": "\n" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - }, - { - "type": "STRING", - "value": "\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "_expansion_max_length" }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "U" - }, - { - "type": "STRING", - "value": "u" - }, - { - "type": "STRING", - "value": "L" - }, - { - "type": "STRING", - "value": "Q" - }, - { - "type": "STRING", - "value": "E" - }, - { - "type": "STRING", - "value": "P" - }, - { - "type": "STRING", - "value": "A" - }, - { - "type": "STRING", - "value": "K" - }, - { - "type": "STRING", - "value": "a" - }, - { - "type": "STRING", - "value": "k" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "_expansion_operator" } ] } @@ -4014,20 +3801,118 @@ { "type": "SEQ", "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!" + } + } + }, { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "subscript" - }, { "type": "SYMBOL", "name": "_simple_variable_name" }, { "type": "SYMBOL", - "name": "_special_variable_name" + "name": "variable_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "*" + } + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "#" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "=" + } + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "_special_variable_name" }, { "type": "SYMBOL", @@ -4036,174 +3921,716 @@ ] }, { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_hash" + }, + "named": false, + "value": "#" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_bang" + }, + "named": false, + "value": "!" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_external_expansion_sym_equal" + }, + "named": false, + "value": "=" + } + ] + } + } + } + ] + } + ] + }, + "_expansion_syms": { + "type": "REPEAT1", + "content": { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "#" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "=" + } + } + ] + } + } + }, + "_expansion_expression": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { "type": "CHOICE", "members": [ { - "type": "SEQ", + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":+" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "?" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ":?" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_concatenation_in_expansion" + }, + "named": true, + "value": "concatenation" + }, + { + "type": "SYMBOL", + "name": "command_substitution" + }, + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "simple_expansion" + }, + { + "type": "SYMBOL", + "name": "array" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + }, + { + "type": "SYMBOL", + "name": "ansi_c_string" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[\\s]+[\\w]*" + }, + "named": true, + "value": "word" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_expansion_regex": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_double_hash" + }, + "named": false, + "value": "##" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "%%" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ")" + }, + "named": true, + "value": "regex" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "\\s+" + }, + "named": true, + "value": "regex" + } + ] + } + ] + }, + "_expansion_regex_replacement": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "//" + }, + { + "type": "STRING", + "value": "/#" + }, + { + "type": "STRING", + "value": "/%" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_regex_no_slash" + }, + "named": true, + "value": "regex" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_expansion_regex_removal": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ",," + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "^^" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_expansion_max_length": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ":" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" + }, + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ":" + } + }, + { + "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "," - } - } - }, - "named": false, - "value": "," + "type": "SYMBOL", + "name": "_simple_variable_name" }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": ",," - } - } - }, - "named": false, - "value": ",," + "type": "SYMBOL", + "name": "number" }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "^" - } - } - }, - "named": false, - "value": "^" + "type": "SYMBOL", + "name": "arithmetic_expansion" }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "^^" - } - } - }, - "named": false, - "value": "^^" + "type": "STRING", + "value": "\n" } ] }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "BLANK" - } - ] + "type": "BLANK" } ] - }, - { - "type": "BLANK" } ] }, { - "type": "REPEAT", - "content": { - "type": "PREC_RIGHT", - "value": 0, + "type": "BLANK" + } + ] + } + ] + }, + "_expansion_operator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "@" + } + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "U" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "u" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "L" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "Q" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "E" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "P" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "A" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "K" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "a" + } + }, + { + "type": "IMMEDIATE_TOKEN", "content": { + "type": "STRING", + "value": "k" + } + } + ] + } + } + ] + }, + "_concatenation_in_expansion": { + "type": "PREC", + "value": -2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "SYMBOL", + "name": "variable_name" + }, + { + "type": "SYMBOL", + "name": "simple_expansion" + }, + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "raw_string" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "array" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ":?" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":-" - }, - { - "type": "STRING", - "value": "%" + "name": "_concat" }, { - "type": "STRING", - "value": "-" - }, + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "`\\s*`" + }, + "named": false, + "value": "``" + } + ] + }, + { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "#" + "type": "SYMBOL", + "name": "word" }, { - "type": "STRING", - "value": ";" + "type": "SYMBOL", + "name": "variable_name" }, { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "simple_expansion" }, { - "type": "STRING", - "value": "(" + "type": "SYMBOL", + "name": "expansion" }, { - "type": "STRING", - "value": ")" + "type": "SYMBOL", + "name": "string" }, { - "type": "STRING", - "value": "<" + "type": "SYMBOL", + "name": "raw_string" }, { - "type": "STRING", - "value": ">" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_word" + }, + "named": true, + "value": "word" } ] } - } + ] } - ] - } - ] + } + ] + } }, "command_substitution": { "type": "CHOICE", @@ -4424,6 +4851,14 @@ "type": "STRING", "value": "?" }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "#" + }, { "type": "STRING", "value": "-" @@ -4600,9 +5035,6 @@ [ "redirected_statement", "command_substitution" - ], - [ - "_expansion_body" ] ], "precedences": [], @@ -4667,6 +5099,22 @@ "type": "SYMBOL", "name": "_brace_start" }, + { + "type": "SYMBOL", + "name": "_immediate_double_hash" + }, + { + "type": "SYMBOL", + "name": "_external_expansion_sym_hash" + }, + { + "type": "SYMBOL", + "name": "_external_expansion_sym_bang" + }, + { + "type": "SYMBOL", + "name": "_external_expansion_sym_equal" + }, { "type": "STRING", "value": "}" @@ -4698,7 +5146,8 @@ "_multiline_variable_name", "_special_variable_name", "_c_word", - "_statement_not_subshell" + "_statement_not_subshell", + "_expansion_syms" ], "supertypes": [ "_statement", diff --git a/src/node-types.json b/src/node-types.json index a67d1d8e..7e6a513d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -209,10 +209,6 @@ "type": "ternary_expression", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "unary_expression", "named": true @@ -271,10 +267,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -283,7 +275,7 @@ }, "operator": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "!=", @@ -317,6 +309,10 @@ "type": "**", "named": false }, + { + "type": "**=", + "named": false + }, { "type": "*=", "named": false @@ -443,10 +439,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -910,6 +902,10 @@ { "type": "_primary_expression", "named": true + }, + { + "type": "variable_name", + "named": true } ] } @@ -991,9 +987,13 @@ "named": true, "fields": { "operator": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "!", + "named": false + }, { "type": "#", "named": false @@ -1010,14 +1010,46 @@ "type": "%%", "named": false }, + { + "type": "*", + "named": false + }, { "type": "+", "named": false }, + { + "type": ",", + "named": false + }, + { + "type": ",,", + "named": false + }, { "type": "-", "named": false }, + { + "type": "/", + "named": false + }, + { + "type": "/#", + "named": false + }, + { + "type": "/%", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": ":", + "named": false + }, { "type": ":+", "named": false @@ -1042,6 +1074,10 @@ "type": "?", "named": false }, + { + "type": "@", + "named": false + }, { "type": "A", "named": false @@ -1070,6 +1106,14 @@ "type": "U", "named": false }, + { + "type": "^", + "named": false + }, + { + "type": "^^", + "named": false + }, { "type": "a", "named": false @@ -1101,6 +1145,10 @@ "type": "concatenation", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "regex", "named": true @@ -1540,10 +1588,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_assignment", "named": true @@ -1573,7 +1617,22 @@ { "type": "postfix_expression", "named": true, - "fields": {}, + "fields": { + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "++", + "named": false + }, + { + "type": "--", + "named": false + } + ] + } + }, "children": { "multiple": false, "required": true, @@ -1606,10 +1665,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -1822,10 +1877,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -1856,10 +1907,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -1890,10 +1937,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -1939,9 +1982,44 @@ { "type": "unary_expression", "named": true, - "fields": {}, + "fields": { + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "test_operator", + "named": true + }, + { + "type": "~", + "named": false + } + ] + } + }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1972,10 +2050,6 @@ "type": "subscript", "named": true }, - { - "type": "test_operator", - "named": true - }, { "type": "variable_name", "named": true @@ -2739,5 +2813,9 @@ { "type": "}", "named": false + }, + { + "type": "~", + "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 31f5d08d..13d2b5c5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5041 -#define LARGE_STATE_COUNT 433 -#define SYMBOL_COUNT 248 +#define STATE_COUNT 4778 +#define LARGE_STATE_COUNT 422 +#define SYMBOL_COUNT 267 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 156 -#define EXTERNAL_TOKEN_COUNT 20 +#define TOKEN_COUNT 169 +#define EXTERNAL_TOKEN_COUNT 24 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 115 +#define PRODUCTION_ID_COUNT 118 enum { sym_word = 1, @@ -110,168 +110,187 @@ enum { anon_sym_CARET = 83, anon_sym_QMARK = 84, anon_sym_COLON = 85, - aux_sym_unary_expression_token1 = 86, - anon_sym_DOLLAR_LPAREN_LPAREN = 87, - aux_sym_brace_expression_token1 = 88, - anon_sym_DOT_DOT = 89, - anon_sym_RBRACE2 = 90, - aux_sym_concatenation_token1 = 91, - anon_sym_DOLLAR = 92, - sym__special_character = 93, - anon_sym_DQUOTE = 94, - sym__string_content = 95, - sym_raw_string = 96, - sym_ansi_c_string = 97, - aux_sym_number_token1 = 98, - aux_sym_number_token2 = 99, - anon_sym_POUND = 100, - anon_sym_DOLLAR_LBRACE = 101, - anon_sym_RBRACE3 = 102, - anon_sym_COLON_EQ = 103, - anon_sym_COLON_DASH = 104, - anon_sym_COLON_PLUS = 105, - anon_sym_COLON_QMARK = 106, - anon_sym_POUND_POUND = 107, - anon_sym_PERCENT_PERCENT = 108, - anon_sym_SLASH_SLASH = 109, - anon_sym_SLASH_POUND = 110, - anon_sym_SLASH_PERCENT = 111, - anon_sym_COMMA_COMMA = 112, - anon_sym_CARET_CARET = 113, - anon_sym_AT = 114, - anon_sym_U = 115, - anon_sym_u = 116, - anon_sym_L = 117, - anon_sym_Q = 118, - anon_sym_E = 119, - anon_sym_P = 120, - anon_sym_A = 121, - anon_sym_K = 122, - anon_sym_a = 123, - anon_sym_k = 124, - anon_sym_COMMA2 = 125, - anon_sym_COMMA_COMMA2 = 126, - anon_sym_CARET2 = 127, - anon_sym_CARET_CARET2 = 128, - anon_sym_DOLLAR_LPAREN = 129, - anon_sym_BQUOTE = 130, - anon_sym_DOLLAR_BQUOTE = 131, - anon_sym_LT_LPAREN = 132, - anon_sym_GT_LPAREN = 133, - sym_comment = 134, - sym__comment_word = 135, - aux_sym__simple_variable_name_token1 = 136, - aux_sym__multiline_variable_name_token1 = 137, - anon_sym_0 = 138, - anon_sym__ = 139, - sym_test_operator = 140, - sym_heredoc_start = 141, - sym_simple_heredoc_body = 142, - sym__heredoc_body_beginning = 143, - sym__heredoc_body_middle = 144, - sym_heredoc_end = 145, - sym_file_descriptor = 146, - sym__empty_value = 147, - sym__concat = 148, - sym_variable_name = 149, - sym_regex = 150, - sym__regex_no_slash = 151, - sym__regex_no_space = 152, - sym_extglob_pattern = 153, - sym__bare_dollar = 154, - sym__brace_start = 155, - sym_program = 156, - sym__statements = 157, - aux_sym__statements2 = 158, - sym__terminated_statement = 159, - sym_redirected_statement = 160, - sym_for_statement = 161, - sym_c_style_for_statement = 162, - sym__for_body = 163, - sym__c_expression = 164, - sym__c_expression_not_assignment = 165, - sym__c_variable_assignment = 166, - sym__c_unary_expression = 167, - sym__c_binary_expression = 168, - sym__c_postfix_expression = 169, - sym__c_parenthesized_expression = 170, - sym_while_statement = 171, - sym_do_group = 172, - sym_if_statement = 173, - sym_elif_clause = 174, - sym_else_clause = 175, - sym_case_statement = 176, - sym_case_item = 177, - sym_last_case_item = 178, - sym_function_definition = 179, - sym_compound_statement = 180, - sym_subshell = 181, - sym_pipeline = 182, - sym_list = 183, - sym_negated_command = 184, - sym_test_command = 185, - sym_declaration_command = 186, - sym_unset_command = 187, - sym_command = 188, - sym_command_name = 189, - sym_variable_assignment = 190, - sym_variable_assignments = 191, - sym_subscript = 192, - sym_file_redirect = 193, - sym_heredoc_redirect = 194, - sym__heredoc_pipeline = 195, - sym__heredoc_body = 196, - sym_heredoc_body = 197, - sym__simple_heredoc_body = 198, - sym_herestring_redirect = 199, - sym__expression = 200, - sym_binary_expression = 201, - sym_ternary_expression = 202, - sym_unary_expression = 203, - sym_postfix_expression = 204, - sym_parenthesized_expression = 205, - sym_arithmetic_expansion = 206, - sym_brace_expression = 207, - sym__arithmetic_expression = 208, - sym__arithmetic_literal = 209, - sym__arithmetic_binary_expression = 210, - sym__arithmetic_ternary_expression = 211, - sym__arithmetic_unary_expression = 212, - sym__arithmetic_postfix_expression = 213, - sym__arithmetic_parenthesized_expression = 214, - sym_concatenation = 215, - sym_string = 216, - sym_translated_string = 217, - sym_array = 218, - sym_number = 219, - sym_simple_expansion = 220, - sym_expansion = 221, - sym__expansion_body = 222, - sym_command_substitution = 223, - sym_process_substitution = 224, - sym__c_terminator = 225, - aux_sym__statements_repeat1 = 226, - aux_sym_redirected_statement_repeat1 = 227, - aux_sym_redirected_statement_repeat2 = 228, - aux_sym_for_statement_repeat1 = 229, - aux_sym__for_body_repeat1 = 230, - aux_sym_while_statement_repeat1 = 231, - aux_sym_if_statement_repeat1 = 232, - aux_sym_case_statement_repeat1 = 233, - aux_sym_case_item_repeat1 = 234, - aux_sym_declaration_command_repeat1 = 235, - aux_sym_unset_command_repeat1 = 236, - aux_sym_command_repeat1 = 237, - aux_sym_command_repeat2 = 238, - aux_sym_variable_assignments_repeat1 = 239, - aux_sym_heredoc_body_repeat1 = 240, - aux_sym__literal_repeat1 = 241, - aux_sym_arithmetic_expansion_repeat1 = 242, - aux_sym_concatenation_repeat1 = 243, - aux_sym_string_repeat1 = 244, - aux_sym_expansion_repeat1 = 245, - aux_sym__expansion_body_repeat1 = 246, - aux_sym__expansion_body_repeat2 = 247, + anon_sym_DASH2 = 86, + anon_sym_PLUS2 = 87, + anon_sym_TILDE = 88, + anon_sym_PLUS_PLUS2 = 89, + anon_sym_DASH_DASH2 = 90, + anon_sym_DOLLAR_LPAREN_LPAREN = 91, + aux_sym_brace_expression_token1 = 92, + anon_sym_DOT_DOT = 93, + anon_sym_RBRACE2 = 94, + aux_sym_concatenation_token1 = 95, + anon_sym_DOLLAR = 96, + sym__special_character = 97, + anon_sym_DQUOTE = 98, + sym__string_content = 99, + sym_raw_string = 100, + sym_ansi_c_string = 101, + aux_sym_number_token1 = 102, + aux_sym_number_token2 = 103, + anon_sym_POUND = 104, + anon_sym_DOLLAR_LBRACE = 105, + anon_sym_RBRACE3 = 106, + anon_sym_BANG2 = 107, + anon_sym_AT = 108, + anon_sym_STAR2 = 109, + anon_sym_POUND2 = 110, + anon_sym_EQ2 = 111, + anon_sym_COLON_EQ = 112, + anon_sym_DASH3 = 113, + anon_sym_COLON_DASH = 114, + anon_sym_PLUS3 = 115, + anon_sym_COLON_PLUS = 116, + anon_sym_QMARK2 = 117, + anon_sym_COLON_QMARK = 118, + aux_sym__expansion_expression_token1 = 119, + anon_sym_PERCENT_PERCENT = 120, + aux_sym__expansion_regex_token1 = 121, + anon_sym_SLASH_SLASH = 122, + anon_sym_SLASH_POUND = 123, + anon_sym_SLASH_PERCENT = 124, + anon_sym_COMMA_COMMA = 125, + anon_sym_CARET_CARET = 126, + anon_sym_U = 127, + anon_sym_u = 128, + anon_sym_L = 129, + anon_sym_Q = 130, + anon_sym_E = 131, + anon_sym_P = 132, + anon_sym_A = 133, + anon_sym_K = 134, + anon_sym_a = 135, + anon_sym_k = 136, + anon_sym_DOLLAR_LPAREN = 137, + anon_sym_BQUOTE = 138, + anon_sym_DOLLAR_BQUOTE = 139, + anon_sym_LT_LPAREN = 140, + anon_sym_GT_LPAREN = 141, + sym_comment = 142, + sym__comment_word = 143, + aux_sym__simple_variable_name_token1 = 144, + aux_sym__multiline_variable_name_token1 = 145, + anon_sym_AT2 = 146, + anon_sym_0 = 147, + anon_sym__ = 148, + sym_test_operator = 149, + sym_heredoc_start = 150, + sym_simple_heredoc_body = 151, + sym__heredoc_body_beginning = 152, + sym__heredoc_body_middle = 153, + sym_heredoc_end = 154, + sym_file_descriptor = 155, + sym__empty_value = 156, + sym__concat = 157, + sym_variable_name = 158, + sym_regex = 159, + sym__regex_no_slash = 160, + sym__regex_no_space = 161, + sym_extglob_pattern = 162, + sym__bare_dollar = 163, + sym__brace_start = 164, + sym__immediate_double_hash = 165, + sym__external_expansion_sym_hash = 166, + sym__external_expansion_sym_bang = 167, + sym__external_expansion_sym_equal = 168, + sym_program = 169, + sym__statements = 170, + aux_sym__statements2 = 171, + sym__terminated_statement = 172, + sym_redirected_statement = 173, + sym_for_statement = 174, + sym_c_style_for_statement = 175, + sym__for_body = 176, + sym__c_expression = 177, + sym__c_expression_not_assignment = 178, + sym__c_variable_assignment = 179, + sym__c_unary_expression = 180, + sym__c_binary_expression = 181, + sym__c_postfix_expression = 182, + sym__c_parenthesized_expression = 183, + sym_while_statement = 184, + sym_do_group = 185, + sym_if_statement = 186, + sym_elif_clause = 187, + sym_else_clause = 188, + sym_case_statement = 189, + sym_case_item = 190, + sym_last_case_item = 191, + sym_function_definition = 192, + sym_compound_statement = 193, + sym_subshell = 194, + sym_pipeline = 195, + sym_list = 196, + sym_negated_command = 197, + sym_test_command = 198, + sym_declaration_command = 199, + sym_unset_command = 200, + sym_command = 201, + sym_command_name = 202, + sym_variable_assignment = 203, + sym_variable_assignments = 204, + sym_subscript = 205, + sym_file_redirect = 206, + sym_heredoc_redirect = 207, + sym__heredoc_pipeline = 208, + sym__heredoc_body = 209, + sym_heredoc_body = 210, + sym__simple_heredoc_body = 211, + sym_herestring_redirect = 212, + sym__expression = 213, + sym_binary_expression = 214, + sym_ternary_expression = 215, + sym_unary_expression = 216, + sym_postfix_expression = 217, + sym_parenthesized_expression = 218, + sym_arithmetic_expansion = 219, + sym_brace_expression = 220, + sym__arithmetic_expression = 221, + sym__arithmetic_literal = 222, + sym__arithmetic_binary_expression = 223, + sym__arithmetic_ternary_expression = 224, + sym__arithmetic_unary_expression = 225, + sym__arithmetic_postfix_expression = 226, + sym__arithmetic_parenthesized_expression = 227, + sym_concatenation = 228, + sym_string = 229, + sym_translated_string = 230, + sym_array = 231, + sym_number = 232, + sym_simple_expansion = 233, + sym_expansion = 234, + sym__expansion_body = 235, + sym__expansion_expression = 236, + sym__expansion_regex = 237, + sym__expansion_regex_replacement = 238, + sym__expansion_regex_removal = 239, + sym__expansion_max_length = 240, + sym__expansion_operator = 241, + sym__concatenation_in_expansion = 242, + sym_command_substitution = 243, + sym_process_substitution = 244, + sym__c_terminator = 245, + aux_sym__statements_repeat1 = 246, + aux_sym_redirected_statement_repeat1 = 247, + aux_sym_redirected_statement_repeat2 = 248, + aux_sym_for_statement_repeat1 = 249, + aux_sym__for_body_repeat1 = 250, + aux_sym_while_statement_repeat1 = 251, + aux_sym_if_statement_repeat1 = 252, + aux_sym_case_statement_repeat1 = 253, + aux_sym_case_item_repeat1 = 254, + aux_sym_declaration_command_repeat1 = 255, + aux_sym_unset_command_repeat1 = 256, + aux_sym_command_repeat1 = 257, + aux_sym_command_repeat2 = 258, + aux_sym_variable_assignments_repeat1 = 259, + aux_sym_heredoc_body_repeat1 = 260, + aux_sym__literal_repeat1 = 261, + aux_sym_arithmetic_expansion_repeat1 = 262, + aux_sym_concatenation_repeat1 = 263, + aux_sym_string_repeat1 = 264, + aux_sym__expansion_body_repeat1 = 265, + aux_sym__concatenation_in_expansion_repeat1 = 266, }; static const char * const ts_symbol_names[] = { @@ -361,7 +380,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_CARET] = "^", [anon_sym_QMARK] = "\?", [anon_sym_COLON] = ":", - [aux_sym_unary_expression_token1] = "unary_expression_token1", + [anon_sym_DASH2] = "-", + [anon_sym_PLUS2] = "+", + [anon_sym_TILDE] = "~", + [anon_sym_PLUS_PLUS2] = "++", + [anon_sym_DASH_DASH2] = "--", [anon_sym_DOLLAR_LPAREN_LPAREN] = "$((", [aux_sym_brace_expression_token1] = "number", [anon_sym_DOT_DOT] = "..", @@ -378,18 +401,26 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_RBRACE3] = "}", + [anon_sym_BANG2] = "!", + [anon_sym_AT] = "@", + [anon_sym_STAR2] = "*", + [anon_sym_POUND2] = "#", + [anon_sym_EQ2] = "=", [anon_sym_COLON_EQ] = ":=", + [anon_sym_DASH3] = "-", [anon_sym_COLON_DASH] = ":-", + [anon_sym_PLUS3] = "+", [anon_sym_COLON_PLUS] = ":+", + [anon_sym_QMARK2] = "\?", [anon_sym_COLON_QMARK] = ":\?", - [anon_sym_POUND_POUND] = "##", + [aux_sym__expansion_expression_token1] = "word", [anon_sym_PERCENT_PERCENT] = "%%", + [aux_sym__expansion_regex_token1] = "regex", [anon_sym_SLASH_SLASH] = "//", [anon_sym_SLASH_POUND] = "/#", [anon_sym_SLASH_PERCENT] = "/%", [anon_sym_COMMA_COMMA] = ",,", [anon_sym_CARET_CARET] = "^^", - [anon_sym_AT] = "@", [anon_sym_U] = "U", [anon_sym_u] = "u", [anon_sym_L] = "L", @@ -400,10 +431,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_K] = "K", [anon_sym_a] = "a", [anon_sym_k] = "k", - [anon_sym_COMMA2] = ",", - [anon_sym_COMMA_COMMA2] = ",,", - [anon_sym_CARET2] = "^", - [anon_sym_CARET_CARET2] = "^^", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", [anon_sym_DOLLAR_BQUOTE] = "$`", @@ -413,6 +440,7 @@ static const char * const ts_symbol_names[] = { [sym__comment_word] = "word", [aux_sym__simple_variable_name_token1] = "variable_name", [aux_sym__multiline_variable_name_token1] = "variable_name", + [anon_sym_AT2] = "special_variable_name", [anon_sym_0] = "special_variable_name", [anon_sym__] = "special_variable_name", [sym_test_operator] = "test_operator", @@ -431,6 +459,10 @@ static const char * const ts_symbol_names[] = { [sym_extglob_pattern] = "extglob_pattern", [sym__bare_dollar] = "$", [sym__brace_start] = "{", + [sym__immediate_double_hash] = "##", + [sym__external_expansion_sym_hash] = "#", + [sym__external_expansion_sym_bang] = "!", + [sym__external_expansion_sym_equal] = "=", [sym_program] = "program", [sym__statements] = "_statements", [aux_sym__statements2] = "_statements2", @@ -498,6 +530,13 @@ static const char * const ts_symbol_names[] = { [sym_simple_expansion] = "simple_expansion", [sym_expansion] = "expansion", [sym__expansion_body] = "_expansion_body", + [sym__expansion_expression] = "_expansion_expression", + [sym__expansion_regex] = "_expansion_regex", + [sym__expansion_regex_replacement] = "_expansion_regex_replacement", + [sym__expansion_regex_removal] = "_expansion_regex_removal", + [sym__expansion_max_length] = "_expansion_max_length", + [sym__expansion_operator] = "_expansion_operator", + [sym__concatenation_in_expansion] = "concatenation", [sym_command_substitution] = "command_substitution", [sym_process_substitution] = "process_substitution", [sym__c_terminator] = "_c_terminator", @@ -520,9 +559,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_arithmetic_expansion_repeat1] = "arithmetic_expansion_repeat1", [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", - [aux_sym_expansion_repeat1] = "expansion_repeat1", [aux_sym__expansion_body_repeat1] = "_expansion_body_repeat1", - [aux_sym__expansion_body_repeat2] = "_expansion_body_repeat2", + [aux_sym__concatenation_in_expansion_repeat1] = "_concatenation_in_expansion_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -612,7 +650,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_CARET] = anon_sym_CARET, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_COLON] = anon_sym_COLON, - [aux_sym_unary_expression_token1] = aux_sym_unary_expression_token1, + [anon_sym_DASH2] = anon_sym_DASH, + [anon_sym_PLUS2] = anon_sym_PLUS, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_PLUS_PLUS2] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH2] = anon_sym_DASH_DASH, [anon_sym_DOLLAR_LPAREN_LPAREN] = anon_sym_DOLLAR_LPAREN_LPAREN, [aux_sym_brace_expression_token1] = sym_number, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, @@ -629,18 +671,26 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND] = anon_sym_POUND, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_RBRACE3] = anon_sym_RBRACE, + [anon_sym_BANG2] = anon_sym_BANG, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_STAR2] = anon_sym_STAR, + [anon_sym_POUND2] = anon_sym_POUND, + [anon_sym_EQ2] = anon_sym_EQ, [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_DASH3] = anon_sym_DASH, [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, + [anon_sym_PLUS3] = anon_sym_PLUS, [anon_sym_COLON_PLUS] = anon_sym_COLON_PLUS, + [anon_sym_QMARK2] = anon_sym_QMARK, [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, - [anon_sym_POUND_POUND] = anon_sym_POUND_POUND, + [aux_sym__expansion_expression_token1] = sym_word, [anon_sym_PERCENT_PERCENT] = anon_sym_PERCENT_PERCENT, + [aux_sym__expansion_regex_token1] = sym_regex, [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, [anon_sym_SLASH_POUND] = anon_sym_SLASH_POUND, [anon_sym_SLASH_PERCENT] = anon_sym_SLASH_PERCENT, [anon_sym_COMMA_COMMA] = anon_sym_COMMA_COMMA, [anon_sym_CARET_CARET] = anon_sym_CARET_CARET, - [anon_sym_AT] = anon_sym_AT, [anon_sym_U] = anon_sym_U, [anon_sym_u] = anon_sym_u, [anon_sym_L] = anon_sym_L, @@ -651,10 +701,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_K] = anon_sym_K, [anon_sym_a] = anon_sym_a, [anon_sym_k] = anon_sym_k, - [anon_sym_COMMA2] = anon_sym_COMMA, - [anon_sym_COMMA_COMMA2] = anon_sym_COMMA_COMMA, - [anon_sym_CARET2] = anon_sym_CARET, - [anon_sym_CARET_CARET2] = anon_sym_CARET_CARET, [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_DOLLAR_BQUOTE] = anon_sym_DOLLAR_BQUOTE, @@ -664,8 +710,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__comment_word] = sym_word, [aux_sym__simple_variable_name_token1] = sym_variable_name, [aux_sym__multiline_variable_name_token1] = sym_variable_name, - [anon_sym_0] = anon_sym_0, - [anon_sym__] = anon_sym_0, + [anon_sym_AT2] = anon_sym_AT2, + [anon_sym_0] = anon_sym_AT2, + [anon_sym__] = anon_sym_AT2, [sym_test_operator] = sym_test_operator, [sym_heredoc_start] = sym_heredoc_start, [sym_simple_heredoc_body] = sym_simple_heredoc_body, @@ -682,6 +729,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_extglob_pattern] = sym_extglob_pattern, [sym__bare_dollar] = anon_sym_DOLLAR, [sym__brace_start] = anon_sym_LBRACE, + [sym__immediate_double_hash] = sym__immediate_double_hash, + [sym__external_expansion_sym_hash] = anon_sym_POUND, + [sym__external_expansion_sym_bang] = anon_sym_BANG, + [sym__external_expansion_sym_equal] = anon_sym_EQ, [sym_program] = sym_program, [sym__statements] = sym__statements, [aux_sym__statements2] = aux_sym__statements2, @@ -749,6 +800,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_simple_expansion] = sym_simple_expansion, [sym_expansion] = sym_expansion, [sym__expansion_body] = sym__expansion_body, + [sym__expansion_expression] = sym__expansion_expression, + [sym__expansion_regex] = sym__expansion_regex, + [sym__expansion_regex_replacement] = sym__expansion_regex_replacement, + [sym__expansion_regex_removal] = sym__expansion_regex_removal, + [sym__expansion_max_length] = sym__expansion_max_length, + [sym__expansion_operator] = sym__expansion_operator, + [sym__concatenation_in_expansion] = sym_concatenation, [sym_command_substitution] = sym_command_substitution, [sym_process_substitution] = sym_process_substitution, [sym__c_terminator] = sym__c_terminator, @@ -771,9 +829,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_arithmetic_expansion_repeat1] = aux_sym_arithmetic_expansion_repeat1, [aux_sym_concatenation_repeat1] = aux_sym_concatenation_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, - [aux_sym_expansion_repeat1] = aux_sym_expansion_repeat1, [aux_sym__expansion_body_repeat1] = aux_sym__expansion_body_repeat1, - [aux_sym__expansion_body_repeat2] = aux_sym__expansion_body_repeat2, + [aux_sym__concatenation_in_expansion_repeat1] = aux_sym__concatenation_in_expansion_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1121,8 +1178,24 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_unary_expression_token1] = { - .visible = false, + [anon_sym_DASH2] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS2] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS2] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH2] = { + .visible = true, .named = false, }, [anon_sym_DOLLAR_LPAREN_LPAREN] = { @@ -1189,30 +1262,66 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_BANG2] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR2] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND2] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ2] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_EQ] = { .visible = true, .named = false, }, + [anon_sym_DASH3] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_DASH] = { .visible = true, .named = false, }, + [anon_sym_PLUS3] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_PLUS] = { .visible = true, .named = false, }, - [anon_sym_COLON_QMARK] = { + [anon_sym_QMARK2] = { .visible = true, .named = false, }, - [anon_sym_POUND_POUND] = { + [anon_sym_COLON_QMARK] = { .visible = true, .named = false, }, + [aux_sym__expansion_expression_token1] = { + .visible = true, + .named = true, + }, [anon_sym_PERCENT_PERCENT] = { .visible = true, .named = false, }, + [aux_sym__expansion_regex_token1] = { + .visible = true, + .named = true, + }, [anon_sym_SLASH_SLASH] = { .visible = true, .named = false, @@ -1233,10 +1342,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, [anon_sym_U] = { .visible = true, .named = false, @@ -1277,22 +1382,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COMMA2] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA_COMMA2] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET2] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_CARET2] = { - .visible = true, - .named = false, - }, [anon_sym_DOLLAR_LPAREN] = { .visible = true, .named = false, @@ -1329,6 +1418,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_AT2] = { + .visible = true, + .named = true, + }, [anon_sym_0] = { .visible = true, .named = true, @@ -1401,6 +1494,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__immediate_double_hash] = { + .visible = true, + .named = false, + }, + [sym__external_expansion_sym_hash] = { + .visible = true, + .named = false, + }, + [sym__external_expansion_sym_bang] = { + .visible = true, + .named = false, + }, + [sym__external_expansion_sym_equal] = { + .visible = true, + .named = false, + }, [sym_program] = { .visible = true, .named = true, @@ -1670,6 +1779,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__expansion_expression] = { + .visible = false, + .named = true, + }, + [sym__expansion_regex] = { + .visible = false, + .named = true, + }, + [sym__expansion_regex_replacement] = { + .visible = false, + .named = true, + }, + [sym__expansion_regex_removal] = { + .visible = false, + .named = true, + }, + [sym__expansion_max_length] = { + .visible = false, + .named = true, + }, + [sym__expansion_operator] = { + .visible = false, + .named = true, + }, + [sym__concatenation_in_expansion] = { + .visible = true, + .named = true, + }, [sym_command_substitution] = { .visible = true, .named = true, @@ -1758,15 +1895,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_expansion_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__expansion_body_repeat1] = { .visible = false, .named = false, }, - [aux_sym__expansion_body_repeat2] = { + [aux_sym__concatenation_in_expansion_repeat1] = { .visible = false, .named = false, }, @@ -1822,107 +1955,114 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 1, .length = 3}, [4] = {.index = 4, .length = 3}, [5] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 1}, - [10] = {.index = 10, .length = 1}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 1}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 2}, + [6] = {.index = 8, .length = 1}, + [8] = {.index = 9, .length = 1}, + [10] = {.index = 10, .length = 2}, + [11] = {.index = 12, .length = 1}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 13, .length = 2}, + [14] = {.index = 15, .length = 1}, [15] = {.index = 16, .length = 2}, [16] = {.index = 18, .length = 2}, - [17] = {.index = 20, .length = 2}, - [19] = {.index = 22, .length = 1}, - [20] = {.index = 22, .length = 1}, - [21] = {.index = 23, .length = 1}, - [22] = {.index = 24, .length = 2}, - [23] = {.index = 24, .length = 2}, - [24] = {.index = 26, .length = 2}, - [25] = {.index = 28, .length = 2}, - [26] = {.index = 30, .length = 2}, - [27] = {.index = 30, .length = 2}, - [28] = {.index = 32, .length = 2}, - [29] = {.index = 34, .length = 3}, - [30] = {.index = 37, .length = 1}, - [31] = {.index = 38, .length = 1}, - [32] = {.index = 38, .length = 1}, - [34] = {.index = 22, .length = 1}, - [35] = {.index = 39, .length = 1}, - [37] = {.index = 22, .length = 1}, - [38] = {.index = 39, .length = 1}, - [39] = {.index = 40, .length = 1}, - [40] = {.index = 41, .length = 2}, - [41] = {.index = 43, .length = 1}, - [42] = {.index = 43, .length = 1}, - [44] = {.index = 44, .length = 4}, - [45] = {.index = 48, .length = 1}, - [46] = {.index = 49, .length = 1}, - [47] = {.index = 50, .length = 1}, - [48] = {.index = 50, .length = 1}, - [49] = {.index = 51, .length = 2}, - [50] = {.index = 53, .length = 4}, - [51] = {.index = 57, .length = 2}, - [52] = {.index = 59, .length = 2}, - [53] = {.index = 61, .length = 2}, - [54] = {.index = 63, .length = 2}, - [55] = {.index = 65, .length = 2}, - [56] = {.index = 67, .length = 2}, - [57] = {.index = 69, .length = 3}, - [58] = {.index = 72, .length = 3}, - [59] = {.index = 75, .length = 2}, - [60] = {.index = 77, .length = 2}, - [61] = {.index = 79, .length = 2}, - [62] = {.index = 81, .length = 2}, - [63] = {.index = 75, .length = 2}, - [64] = {.index = 77, .length = 2}, - [65] = {.index = 79, .length = 2}, - [68] = {.index = 83, .length = 3}, - [69] = {.index = 86, .length = 3}, - [70] = {.index = 89, .length = 3}, - [71] = {.index = 92, .length = 3}, - [72] = {.index = 95, .length = 3}, - [73] = {.index = 98, .length = 3}, - [74] = {.index = 101, .length = 3}, - [75] = {.index = 104, .length = 2}, - [76] = {.index = 106, .length = 2}, - [77] = {.index = 108, .length = 3}, - [78] = {.index = 111, .length = 3}, - [79] = {.index = 114, .length = 2}, - [80] = {.index = 116, .length = 2}, - [81] = {.index = 118, .length = 2}, - [82] = {.index = 114, .length = 2}, - [83] = {.index = 116, .length = 2}, - [84] = {.index = 118, .length = 2}, - [85] = {.index = 104, .length = 2}, - [86] = {.index = 106, .length = 2}, - [87] = {.index = 108, .length = 3}, - [88] = {.index = 111, .length = 3}, - [89] = {.index = 120, .length = 4}, - [90] = {.index = 124, .length = 4}, - [91] = {.index = 128, .length = 4}, - [92] = {.index = 132, .length = 4}, - [93] = {.index = 136, .length = 4}, - [94] = {.index = 140, .length = 4}, - [95] = {.index = 144, .length = 3}, - [96] = {.index = 147, .length = 3}, - [97] = {.index = 150, .length = 2}, - [98] = {.index = 152, .length = 2}, - [99] = {.index = 154, .length = 3}, - [100] = {.index = 157, .length = 3}, - [101] = {.index = 150, .length = 2}, - [102] = {.index = 152, .length = 2}, - [103] = {.index = 154, .length = 3}, - [104] = {.index = 157, .length = 3}, - [105] = {.index = 144, .length = 3}, - [106] = {.index = 147, .length = 3}, - [107] = {.index = 160, .length = 5}, - [108] = {.index = 165, .length = 5}, - [109] = {.index = 170, .length = 5}, - [110] = {.index = 175, .length = 3}, - [111] = {.index = 178, .length = 3}, - [112] = {.index = 175, .length = 3}, - [113] = {.index = 178, .length = 3}, - [114] = {.index = 181, .length = 6}, + [17] = {.index = 18, .length = 2}, + [18] = {.index = 20, .length = 1}, + [19] = {.index = 21, .length = 2}, + [20] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 1}, + [23] = {.index = 25, .length = 1}, + [24] = {.index = 9, .length = 1}, + [25] = {.index = 26, .length = 2}, + [26] = {.index = 28, .length = 2}, + [27] = {.index = 28, .length = 2}, + [28] = {.index = 30, .length = 2}, + [29] = {.index = 32, .length = 2}, + [30] = {.index = 34, .length = 2}, + [31] = {.index = 34, .length = 2}, + [32] = {.index = 36, .length = 2}, + [33] = {.index = 38, .length = 3}, + [34] = {.index = 41, .length = 1}, + [35] = {.index = 42, .length = 1}, + [36] = {.index = 42, .length = 1}, + [37] = {.index = 9, .length = 1}, + [38] = {.index = 43, .length = 2}, + [39] = {.index = 45, .length = 2}, + [40] = {.index = 47, .length = 2}, + [41] = {.index = 47, .length = 2}, + [42] = {.index = 49, .length = 2}, + [43] = {.index = 51, .length = 1}, + [44] = {.index = 51, .length = 1}, + [46] = {.index = 52, .length = 4}, + [47] = {.index = 56, .length = 1}, + [48] = {.index = 57, .length = 1}, + [49] = {.index = 58, .length = 1}, + [50] = {.index = 58, .length = 1}, + [51] = {.index = 59, .length = 2}, + [52] = {.index = 61, .length = 4}, + [53] = {.index = 65, .length = 2}, + [54] = {.index = 67, .length = 2}, + [55] = {.index = 69, .length = 2}, + [56] = {.index = 71, .length = 2}, + [57] = {.index = 73, .length = 2}, + [58] = {.index = 75, .length = 2}, + [59] = {.index = 77, .length = 3}, + [60] = {.index = 80, .length = 3}, + [61] = {.index = 83, .length = 2}, + [62] = {.index = 85, .length = 2}, + [63] = {.index = 87, .length = 2}, + [64] = {.index = 89, .length = 2}, + [65] = {.index = 83, .length = 2}, + [66] = {.index = 85, .length = 2}, + [67] = {.index = 87, .length = 2}, + [68] = {.index = 45, .length = 2}, + [69] = {.index = 91, .length = 3}, + [70] = {.index = 94, .length = 3}, + [71] = {.index = 97, .length = 3}, + [72] = {.index = 100, .length = 3}, + [73] = {.index = 103, .length = 3}, + [74] = {.index = 106, .length = 3}, + [75] = {.index = 109, .length = 3}, + [76] = {.index = 112, .length = 2}, + [77] = {.index = 114, .length = 2}, + [78] = {.index = 116, .length = 3}, + [79] = {.index = 119, .length = 3}, + [80] = {.index = 122, .length = 2}, + [81] = {.index = 124, .length = 2}, + [82] = {.index = 126, .length = 2}, + [83] = {.index = 122, .length = 2}, + [84] = {.index = 124, .length = 2}, + [85] = {.index = 126, .length = 2}, + [86] = {.index = 112, .length = 2}, + [87] = {.index = 114, .length = 2}, + [88] = {.index = 116, .length = 3}, + [89] = {.index = 119, .length = 3}, + [90] = {.index = 128, .length = 3}, + [91] = {.index = 128, .length = 3}, + [92] = {.index = 131, .length = 4}, + [93] = {.index = 135, .length = 4}, + [94] = {.index = 139, .length = 4}, + [95] = {.index = 143, .length = 4}, + [96] = {.index = 147, .length = 4}, + [97] = {.index = 151, .length = 4}, + [98] = {.index = 155, .length = 3}, + [99] = {.index = 158, .length = 3}, + [100] = {.index = 161, .length = 2}, + [101] = {.index = 163, .length = 2}, + [102] = {.index = 165, .length = 3}, + [103] = {.index = 168, .length = 3}, + [104] = {.index = 161, .length = 2}, + [105] = {.index = 163, .length = 2}, + [106] = {.index = 165, .length = 3}, + [107] = {.index = 168, .length = 3}, + [108] = {.index = 155, .length = 3}, + [109] = {.index = 158, .length = 3}, + [110] = {.index = 171, .length = 5}, + [111] = {.index = 176, .length = 5}, + [112] = {.index = 181, .length = 5}, + [113] = {.index = 186, .length = 3}, + [114] = {.index = 189, .length = 3}, + [115] = {.index = 186, .length = 3}, + [116] = {.index = 189, .length = 3}, + [117] = {.index = 192, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1937,252 +2077,268 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 0, .inherited = true}, {field_consequence, 0, .inherited = true}, [7] = - {field_destination, 1}, + {field_operator, 0, .inherited = true}, [8] = + {field_destination, 1}, + [9] = + {field_operator, 0}, + [10] = {field_body, 0}, {field_redirect, 1}, - [10] = + [12] = {field_argument, 0}, - [11] = + [13] = {field_argument, 1, .inherited = true}, {field_name, 0}, - [13] = + [15] = {field_name, 1}, - [14] = + [16] = {field_descriptor, 0}, {field_destination, 2}, - [16] = + [18] = {field_name, 0}, {field_value, 2}, - [18] = + [20] = + {field_operator, 1}, + [21] = {field_body, 2}, {field_condition, 1}, - [20] = + [23] = {field_body, 2}, {field_name, 1}, - [22] = - {field_operator, 1}, - [23] = + [25] = {field_operator, 1, .inherited = true}, - [24] = + [26] = + {field_operator, 0, .inherited = true}, + {field_operator, 1, .inherited = true}, + [28] = {field_argument, 0}, {field_argument, 1}, - [26] = + [30] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [28] = + [32] = {field_argument, 2, .inherited = true}, {field_name, 1}, - [30] = + [34] = {field_index, 2}, {field_name, 0}, - [32] = + [36] = {field_body, 3}, {field_variable, 1}, - [34] = + [38] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [37] = + [41] = {field_condition, 1}, - [38] = + [42] = {field_value, 1}, - [39] = + [43] = + {field_operator, 0}, + {field_operator, 1}, + [45] = + {field_operator, 0}, {field_operator, 2}, - [40] = + [47] = + {field_operator, 0}, {field_operator, 2, .inherited = true}, - [41] = + [49] = {field_body, 3}, {field_name, 0}, - [43] = + [51] = {field_descriptor, 0}, - [44] = + [52] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [48] = + [56] = {field_initializer, 0}, - [49] = + [57] = {field_update, 2}, - [50] = + [58] = {field_value, 0}, - [51] = + [59] = {field_body, 4}, {field_name, 1}, - [53] = + [61] = {field_body, 5}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [57] = + [65] = {field_condition, 2}, {field_initializer, 0}, - [59] = + [67] = {field_initializer, 0}, {field_update, 3}, - [61] = + [69] = {field_initializer, 0}, {field_initializer, 1}, - [63] = + [71] = {field_condition, 1}, {field_update, 3}, - [65] = + [73] = {field_condition, 1}, {field_condition, 2}, - [67] = + [75] = {field_update, 2}, {field_update, 3}, - [69] = + [77] = {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [72] = + [80] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [75] = + [83] = {field_termination, 2}, {field_value, 0}, - [77] = + [85] = {field_fallthrough, 2}, {field_value, 0}, - [79] = + [87] = {field_value, 0}, {field_value, 1, .inherited = true}, - [81] = + [89] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [83] = + [91] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [86] = + [94] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, - [89] = + [97] = {field_initializer, 0}, {field_update, 3}, {field_update, 4}, - [92] = + [100] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, - [95] = + [103] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, - [98] = + [106] = {field_condition, 1}, {field_update, 3}, {field_update, 4}, - [101] = + [109] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, - [104] = + [112] = {field_termination, 3}, {field_value, 0}, - [106] = + [114] = {field_fallthrough, 3}, {field_value, 0}, - [108] = + [116] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [111] = + [119] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [114] = + [122] = {field_termination, 3}, {field_value, 1}, - [116] = + [124] = {field_fallthrough, 3}, {field_value, 1}, - [118] = + [126] = {field_value, 1}, {field_value, 2, .inherited = true}, - [120] = + [128] = + {field_operator, 0}, + {field_operator, 2}, + {field_operator, 4}, + [131] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, {field_update, 5}, - [124] = + [135] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, - [128] = + [139] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, - [132] = + [143] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, - [136] = + [147] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, {field_update, 5}, - [140] = + [151] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, - [144] = + [155] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [147] = + [158] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [150] = + [161] = {field_termination, 4}, {field_value, 1}, - [152] = + [163] = {field_fallthrough, 4}, {field_value, 1}, - [154] = + [165] = {field_termination, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [157] = + [168] = {field_fallthrough, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [160] = + [171] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, {field_update, 6}, - [165] = + [176] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, {field_update, 6}, - [170] = + [181] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 6}, - [175] = + [186] = {field_termination, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [178] = + [189] = {field_fallthrough, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [181] = + [192] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, @@ -2196,79 +2352,62 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_word, }, - [6] = { - [1] = anon_sym_0, - }, [7] = { - [0] = anon_sym_0, + [1] = anon_sym_AT2, }, - [10] = { + [9] = { + [0] = anon_sym_AT2, + }, + [12] = { [0] = sym_word, }, - [15] = { + [17] = { [2] = sym_word, }, - [18] = { + [21] = { [1] = sym_word, }, - [20] = { - [0] = anon_sym_0, - }, [23] = { - [1] = sym_word, + [0] = anon_sym_AT2, }, - [27] = { - [2] = sym_word, + [24] = { + [1] = anon_sym_AT2, }, - [32] = { + [27] = { [1] = sym_word, }, - [33] = { - [2] = sym_regex, - }, - [34] = { - [2] = sym_regex, + [31] = { + [2] = sym_word, }, [36] = { - [0] = anon_sym_0, - [2] = sym_regex, + [1] = sym_word, }, [37] = { - [0] = anon_sym_0, - [2] = sym_regex, + [1] = sym_regex, }, - [38] = { - [0] = anon_sym_0, + [41] = { + [1] = anon_sym_AT2, }, - [42] = { + [44] = { [2] = sym_word, }, - [43] = { + [45] = { [0] = sym_variable_name, }, - [48] = { - [0] = sym_word, - }, - [63] = { - [0] = sym_word, - }, - [64] = { + [50] = { [0] = sym_word, }, [65] = { [0] = sym_word, }, [66] = { - [2] = sym_regex, - [4] = sym_word, + [0] = sym_word, }, [67] = { - [0] = anon_sym_0, - [2] = sym_regex, - [4] = sym_word, + [0] = sym_word, }, - [82] = { - [1] = sym_word, + [68] = { + [3] = sym_word, }, [83] = { [1] = sym_word, @@ -2277,7 +2416,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = sym_word, }, [85] = { - [0] = sym_word, + [1] = sym_word, }, [86] = { [0] = sym_word, @@ -2288,28 +2427,34 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [88] = { [0] = sym_word, }, - [101] = { + [89] = { + [0] = sym_word, + }, + [91] = { + [3] = sym_word, + }, + [104] = { [1] = sym_word, }, - [102] = { + [105] = { [1] = sym_word, }, - [103] = { + [106] = { [1] = sym_word, }, - [104] = { + [107] = { [1] = sym_word, }, - [105] = { + [108] = { [0] = sym_word, }, - [106] = { + [109] = { [0] = sym_word, }, - [112] = { + [115] = { [1] = sym_word, }, - [113] = { + [116] = { [1] = sym_word, }, }; @@ -2326,26 +2471,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 3, - [6] = 2, - [7] = 3, + [4] = 3, + [5] = 2, + [6] = 3, + [7] = 2, [8] = 8, [9] = 9, [10] = 9, [11] = 8, [12] = 9, - [13] = 8, - [14] = 14, - [15] = 14, - [16] = 14, - [17] = 17, + [13] = 13, + [14] = 8, + [15] = 13, + [16] = 13, + [17] = 8, [18] = 18, [19] = 18, - [20] = 17, - [21] = 18, - [22] = 17, - [23] = 23, + [20] = 20, + [21] = 20, + [22] = 20, + [23] = 18, [24] = 24, [25] = 25, [26] = 26, @@ -2360,7 +2505,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 8, + [38] = 38, [39] = 39, [40] = 40, [41] = 41, @@ -2380,4989 +2525,4726 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [55] = 54, [56] = 54, [57] = 54, - [58] = 54, - [59] = 59, + [58] = 58, + [59] = 54, [60] = 54, [61] = 54, [62] = 54, [63] = 63, [64] = 64, - [65] = 63, + [65] = 65, [66] = 66, - [67] = 63, + [67] = 67, [68] = 68, - [69] = 66, - [70] = 66, - [71] = 63, - [72] = 68, - [73] = 66, - [74] = 63, - [75] = 68, - [76] = 66, - [77] = 63, - [78] = 78, - [79] = 68, - [80] = 64, - [81] = 66, + [69] = 69, + [70] = 69, + [71] = 65, + [72] = 72, + [73] = 67, + [74] = 64, + [75] = 63, + [76] = 68, + [77] = 77, + [78] = 66, + [79] = 72, + [80] = 68, + [81] = 77, [82] = 63, - [83] = 68, + [83] = 64, [84] = 84, - [85] = 64, - [86] = 66, - [87] = 87, - [88] = 88, - [89] = 63, - [90] = 68, - [91] = 64, - [92] = 66, - [93] = 93, - [94] = 78, - [95] = 63, - [96] = 68, - [97] = 64, - [98] = 98, - [99] = 66, - [100] = 63, - [101] = 68, + [85] = 63, + [86] = 64, + [87] = 84, + [88] = 69, + [89] = 66, + [90] = 72, + [91] = 77, + [92] = 63, + [93] = 64, + [94] = 84, + [95] = 66, + [96] = 77, + [97] = 63, + [98] = 64, + [99] = 84, + [100] = 77, + [101] = 63, [102] = 64, [103] = 84, - [104] = 66, + [104] = 77, [105] = 63, - [106] = 68, - [107] = 87, - [108] = 64, - [109] = 66, - [110] = 63, - [111] = 68, - [112] = 64, - [113] = 68, - [114] = 66, - [115] = 63, - [116] = 68, - [117] = 64, - [118] = 63, - [119] = 66, - [120] = 63, - [121] = 66, - [122] = 68, + [106] = 64, + [107] = 84, + [108] = 77, + [109] = 63, + [110] = 64, + [111] = 84, + [112] = 77, + [113] = 63, + [114] = 64, + [115] = 84, + [116] = 77, + [117] = 63, + [118] = 64, + [119] = 84, + [120] = 77, + [121] = 63, + [122] = 64, [123] = 84, - [124] = 64, - [125] = 66, - [126] = 63, - [127] = 68, - [128] = 64, - [129] = 66, - [130] = 63, - [131] = 68, - [132] = 64, - [133] = 64, - [134] = 88, - [135] = 66, - [136] = 136, + [124] = 77, + [125] = 63, + [126] = 64, + [127] = 84, + [128] = 77, + [129] = 63, + [130] = 64, + [131] = 84, + [132] = 77, + [133] = 63, + [134] = 64, + [135] = 84, + [136] = 77, [137] = 63, - [138] = 68, - [139] = 64, - [140] = 66, - [141] = 93, - [142] = 78, - [143] = 98, - [144] = 63, - [145] = 68, - [146] = 64, - [147] = 84, - [148] = 68, - [149] = 66, - [150] = 63, + [138] = 64, + [139] = 84, + [140] = 77, + [141] = 63, + [142] = 84, + [143] = 77, + [144] = 64, + [145] = 84, + [146] = 77, + [147] = 63, + [148] = 64, + [149] = 84, + [150] = 77, [151] = 63, - [152] = 68, - [153] = 64, - [154] = 66, - [155] = 66, - [156] = 63, - [157] = 68, - [158] = 64, - [159] = 66, - [160] = 63, - [161] = 64, - [162] = 68, - [163] = 64, - [164] = 66, - [165] = 63, - [166] = 68, - [167] = 64, - [168] = 66, - [169] = 63, - [170] = 68, - [171] = 64, - [172] = 66, - [173] = 63, - [174] = 68, - [175] = 64, - [176] = 66, - [177] = 63, - [178] = 68, - [179] = 64, - [180] = 66, - [181] = 63, - [182] = 68, - [183] = 64, - [184] = 68, - [185] = 66, - [186] = 186, - [187] = 63, - [188] = 68, - [189] = 63, - [190] = 93, - [191] = 64, + [152] = 64, + [153] = 84, + [154] = 77, + [155] = 63, + [156] = 64, + [157] = 84, + [158] = 77, + [159] = 63, + [160] = 64, + [161] = 84, + [162] = 77, + [163] = 63, + [164] = 64, + [165] = 84, + [166] = 77, + [167] = 63, + [168] = 168, + [169] = 64, + [170] = 84, + [171] = 77, + [172] = 63, + [173] = 64, + [174] = 84, + [175] = 77, + [176] = 63, + [177] = 64, + [178] = 84, + [179] = 77, + [180] = 63, + [181] = 64, + [182] = 84, + [183] = 77, + [184] = 63, + [185] = 64, + [186] = 84, + [187] = 77, + [188] = 63, + [189] = 64, + [190] = 84, + [191] = 77, [192] = 63, - [193] = 66, - [194] = 66, - [195] = 63, - [196] = 68, + [193] = 64, + [194] = 84, + [195] = 77, + [196] = 63, [197] = 64, - [198] = 88, - [199] = 66, - [200] = 63, - [201] = 40, - [202] = 68, - [203] = 66, - [204] = 64, - [205] = 64, - [206] = 66, - [207] = 63, - [208] = 68, - [209] = 64, - [210] = 66, - [211] = 63, - [212] = 68, - [213] = 63, - [214] = 68, + [198] = 84, + [199] = 67, + [200] = 77, + [201] = 63, + [202] = 64, + [203] = 84, + [204] = 77, + [205] = 63, + [206] = 64, + [207] = 84, + [208] = 77, + [209] = 63, + [210] = 44, + [211] = 64, + [212] = 84, + [213] = 77, + [214] = 63, [215] = 64, - [216] = 66, - [217] = 66, - [218] = 64, - [219] = 68, - [220] = 64, - [221] = 66, + [216] = 84, + [217] = 77, + [218] = 63, + [219] = 64, + [220] = 84, + [221] = 77, [222] = 63, - [223] = 68, - [224] = 64, - [225] = 66, + [223] = 64, + [224] = 84, + [225] = 77, [226] = 63, - [227] = 68, - [228] = 64, - [229] = 66, + [227] = 64, + [228] = 84, + [229] = 77, [230] = 63, - [231] = 98, - [232] = 68, - [233] = 64, - [234] = 66, - [235] = 63, - [236] = 68, - [237] = 64, - [238] = 66, - [239] = 63, - [240] = 68, - [241] = 68, - [242] = 64, - [243] = 63, - [244] = 66, - [245] = 87, - [246] = 66, - [247] = 63, - [248] = 68, - [249] = 64, - [250] = 66, - [251] = 63, - [252] = 68, - [253] = 64, - [254] = 66, - [255] = 63, - [256] = 68, - [257] = 64, - [258] = 64, - [259] = 66, - [260] = 68, - [261] = 63, - [262] = 68, - [263] = 64, - [264] = 66, - [265] = 63, - [266] = 68, + [231] = 64, + [232] = 84, + [233] = 77, + [234] = 63, + [235] = 64, + [236] = 84, + [237] = 77, + [238] = 63, + [239] = 64, + [240] = 84, + [241] = 77, + [242] = 63, + [243] = 64, + [244] = 84, + [245] = 77, + [246] = 64, + [247] = 84, + [248] = 77, + [249] = 63, + [250] = 64, + [251] = 84, + [252] = 77, + [253] = 253, + [254] = 63, + [255] = 65, + [256] = 64, + [257] = 84, + [258] = 77, + [259] = 63, + [260] = 64, + [261] = 84, + [262] = 77, + [263] = 63, + [264] = 77, + [265] = 64, + [266] = 63, [267] = 63, - [268] = 68, + [268] = 77, [269] = 64, - [270] = 63, - [271] = 66, - [272] = 66, + [270] = 84, + [271] = 77, + [272] = 64, [273] = 63, - [274] = 64, - [275] = 68, - [276] = 68, - [277] = 68, - [278] = 66, - [279] = 63, - [280] = 68, + [274] = 63, + [275] = 77, + [276] = 64, + [277] = 64, + [278] = 63, + [279] = 84, + [280] = 77, [281] = 64, - [282] = 66, - [283] = 63, - [284] = 68, - [285] = 64, - [286] = 66, - [287] = 63, - [288] = 68, - [289] = 64, - [290] = 66, - [291] = 63, - [292] = 68, - [293] = 64, - [294] = 66, + [282] = 63, + [283] = 77, + [284] = 64, + [285] = 77, + [286] = 63, + [287] = 64, + [288] = 77, + [289] = 63, + [290] = 290, + [291] = 291, + [292] = 290, + [293] = 290, + [294] = 294, [295] = 295, [296] = 295, [297] = 295, - [298] = 295, - [299] = 299, + [298] = 290, + [299] = 290, [300] = 300, [301] = 300, [302] = 302, - [303] = 295, - [304] = 300, - [305] = 305, - [306] = 306, - [307] = 305, - [308] = 306, - [309] = 305, - [310] = 305, - [311] = 306, - [312] = 306, - [313] = 305, - [314] = 306, + [303] = 300, + [304] = 302, + [305] = 302, + [306] = 300, + [307] = 300, + [308] = 302, + [309] = 302, + [310] = 300, + [311] = 302, + [312] = 300, + [313] = 313, + [314] = 302, [315] = 315, - [316] = 305, - [317] = 306, - [318] = 305, - [319] = 306, - [320] = 306, - [321] = 305, - [322] = 322, - [323] = 323, - [324] = 323, - [325] = 323, - [326] = 322, - [327] = 322, - [328] = 322, - [329] = 322, - [330] = 322, - [331] = 323, - [332] = 322, - [333] = 322, - [334] = 334, - [335] = 335, - [336] = 334, - [337] = 335, + [316] = 300, + [317] = 302, + [318] = 318, + [319] = 313, + [320] = 318, + [321] = 318, + [322] = 313, + [323] = 313, + [324] = 313, + [325] = 318, + [326] = 313, + [327] = 313, + [328] = 318, + [329] = 313, + [330] = 330, + [331] = 331, + [332] = 331, + [333] = 330, + [334] = 331, + [335] = 330, + [336] = 336, + [337] = 336, [338] = 338, - [339] = 334, - [340] = 335, - [341] = 338, + [339] = 338, + [340] = 340, + [341] = 336, [342] = 342, [343] = 343, [344] = 344, [345] = 345, - [346] = 342, + [346] = 346, [347] = 347, - [348] = 338, + [348] = 348, [349] = 349, [350] = 350, - [351] = 351, + [351] = 338, [352] = 352, [353] = 353, [354] = 354, - [355] = 347, + [355] = 342, [356] = 356, [357] = 357, [358] = 358, - [359] = 345, + [359] = 359, [360] = 344, [361] = 361, - [362] = 342, - [363] = 343, - [364] = 364, + [362] = 343, + [363] = 363, + [364] = 340, [365] = 365, [366] = 366, [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 349, - [375] = 364, - [376] = 365, - [377] = 377, - [378] = 373, - [379] = 377, - [380] = 372, - [381] = 354, - [382] = 368, + [368] = 356, + [369] = 345, + [370] = 346, + [371] = 352, + [372] = 353, + [373] = 365, + [374] = 374, + [375] = 363, + [376] = 374, + [377] = 358, + [378] = 357, + [379] = 367, + [380] = 350, + [381] = 347, + [382] = 349, [383] = 366, - [384] = 350, - [385] = 369, - [386] = 371, - [387] = 351, - [388] = 370, - [389] = 352, - [390] = 353, - [391] = 356, - [392] = 357, - [393] = 358, - [394] = 361, - [395] = 395, - [396] = 367, - [397] = 397, - [398] = 395, - [399] = 377, - [400] = 400, - [401] = 338, - [402] = 400, - [403] = 342, - [404] = 347, - [405] = 400, - [406] = 345, - [407] = 343, - [408] = 344, - [409] = 397, - [410] = 356, - [411] = 365, - [412] = 370, - [413] = 357, - [414] = 358, - [415] = 352, - [416] = 372, - [417] = 361, - [418] = 366, - [419] = 364, - [420] = 353, - [421] = 368, - [422] = 369, - [423] = 351, - [424] = 371, - [425] = 349, - [426] = 350, - [427] = 367, - [428] = 373, - [429] = 354, + [384] = 348, + [385] = 361, + [386] = 386, + [387] = 354, + [388] = 359, + [389] = 389, + [390] = 374, + [391] = 389, + [392] = 392, + [393] = 336, + [394] = 386, + [395] = 343, + [396] = 344, + [397] = 338, + [398] = 340, + [399] = 342, + [400] = 389, + [401] = 392, + [402] = 363, + [403] = 348, + [404] = 353, + [405] = 359, + [406] = 356, + [407] = 367, + [408] = 366, + [409] = 350, + [410] = 349, + [411] = 357, + [412] = 361, + [413] = 365, + [414] = 346, + [415] = 358, + [416] = 354, + [417] = 352, + [418] = 347, + [419] = 345, + [420] = 374, + [421] = 386, + [422] = 389, + [423] = 392, + [424] = 424, + [425] = 424, + [426] = 424, + [427] = 424, + [428] = 428, + [429] = 429, [430] = 430, - [431] = 377, - [432] = 395, - [433] = 397, - [434] = 400, - [435] = 435, - [436] = 435, - [437] = 435, - [438] = 435, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 441, - [443] = 443, - [444] = 439, - [445] = 440, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 446, - [451] = 449, - [452] = 448, - [453] = 443, - [454] = 439, - [455] = 447, - [456] = 439, - [457] = 441, - [458] = 441, - [459] = 440, - [460] = 440, - [461] = 335, - [462] = 334, - [463] = 334, - [464] = 448, - [465] = 465, - [466] = 466, - [467] = 449, - [468] = 468, - [469] = 469, - [470] = 448, - [471] = 471, - [472] = 443, - [473] = 446, - [474] = 443, - [475] = 449, - [476] = 447, - [477] = 439, - [478] = 335, - [479] = 441, - [480] = 440, - [481] = 446, - [482] = 440, - [483] = 441, - [484] = 447, - [485] = 485, - [486] = 471, - [487] = 334, - [488] = 446, - [489] = 471, - [490] = 334, - [491] = 449, - [492] = 443, - [493] = 335, - [494] = 448, - [495] = 446, - [496] = 465, - [497] = 469, - [498] = 334, - [499] = 335, - [500] = 468, - [501] = 334, - [502] = 466, - [503] = 447, - [504] = 485, - [505] = 443, - [506] = 449, - [507] = 469, - [508] = 335, - [509] = 448, - [510] = 468, - [511] = 335, - [512] = 465, - [513] = 466, - [514] = 485, - [515] = 335, - [516] = 334, - [517] = 469, - [518] = 471, - [519] = 469, - [520] = 468, - [521] = 471, - [522] = 469, - [523] = 471, - [524] = 334, - [525] = 335, - [526] = 468, - [527] = 465, - [528] = 335, - [529] = 334, - [530] = 468, - [531] = 334, - [532] = 466, - [533] = 335, - [534] = 335, - [535] = 334, - [536] = 485, - [537] = 335, - [538] = 439, - [539] = 466, + [431] = 431, + [432] = 432, + [433] = 429, + [434] = 434, + [435] = 430, + [436] = 436, + [437] = 428, + [438] = 438, + [439] = 429, + [440] = 330, + [441] = 429, + [442] = 430, + [443] = 436, + [444] = 431, + [445] = 331, + [446] = 428, + [447] = 434, + [448] = 432, + [449] = 430, + [450] = 428, + [451] = 438, + [452] = 452, + [453] = 331, + [454] = 431, + [455] = 432, + [456] = 434, + [457] = 436, + [458] = 430, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 430, + [463] = 434, + [464] = 428, + [465] = 438, + [466] = 330, + [467] = 429, + [468] = 432, + [469] = 431, + [470] = 436, + [471] = 428, + [472] = 472, + [473] = 473, + [474] = 438, + [475] = 436, + [476] = 472, + [477] = 459, + [478] = 460, + [479] = 452, + [480] = 432, + [481] = 331, + [482] = 331, + [483] = 473, + [484] = 330, + [485] = 330, + [486] = 330, + [487] = 460, + [488] = 432, + [489] = 461, + [490] = 436, + [491] = 452, + [492] = 472, + [493] = 330, + [494] = 331, + [495] = 434, + [496] = 438, + [497] = 431, + [498] = 331, + [499] = 431, + [500] = 438, + [501] = 461, + [502] = 330, + [503] = 331, + [504] = 330, + [505] = 330, + [506] = 460, + [507] = 473, + [508] = 459, + [509] = 461, + [510] = 331, + [511] = 473, + [512] = 452, + [513] = 452, + [514] = 472, + [515] = 459, + [516] = 472, + [517] = 472, + [518] = 452, + [519] = 330, + [520] = 331, + [521] = 330, + [522] = 331, + [523] = 331, + [524] = 460, + [525] = 460, + [526] = 526, + [527] = 526, + [528] = 330, + [529] = 472, + [530] = 428, + [531] = 461, + [532] = 459, + [533] = 331, + [534] = 330, + [535] = 459, + [536] = 452, + [537] = 537, + [538] = 460, + [539] = 331, [540] = 540, - [541] = 471, - [542] = 468, - [543] = 465, - [544] = 335, - [545] = 469, - [546] = 334, - [547] = 485, - [548] = 548, - [549] = 465, - [550] = 469, - [551] = 540, - [552] = 334, - [553] = 471, - [554] = 334, - [555] = 471, - [556] = 335, - [557] = 440, - [558] = 468, - [559] = 466, - [560] = 560, - [561] = 441, - [562] = 334, - [563] = 334, - [564] = 335, - [565] = 334, - [566] = 560, - [567] = 468, - [568] = 469, - [569] = 335, - [570] = 335, - [571] = 334, - [572] = 334, - [573] = 469, - [574] = 334, - [575] = 335, - [576] = 576, - [577] = 576, - [578] = 576, - [579] = 576, - [580] = 576, - [581] = 440, - [582] = 576, - [583] = 441, - [584] = 334, - [585] = 335, - [586] = 334, - [587] = 576, - [588] = 443, - [589] = 335, - [590] = 449, - [591] = 335, - [592] = 334, - [593] = 335, - [594] = 468, - [595] = 335, - [596] = 447, - [597] = 446, - [598] = 471, - [599] = 576, - [600] = 468, - [601] = 469, - [602] = 448, - [603] = 439, - [604] = 449, - [605] = 605, - [606] = 335, - [607] = 334, + [541] = 452, + [542] = 430, + [543] = 537, + [544] = 331, + [545] = 472, + [546] = 452, + [547] = 330, + [548] = 330, + [549] = 472, + [550] = 331, + [551] = 331, + [552] = 330, + [553] = 331, + [554] = 473, + [555] = 460, + [556] = 460, + [557] = 473, + [558] = 429, + [559] = 330, + [560] = 330, + [561] = 431, + [562] = 429, + [563] = 432, + [564] = 460, + [565] = 565, + [566] = 452, + [567] = 565, + [568] = 565, + [569] = 472, + [570] = 330, + [571] = 330, + [572] = 565, + [573] = 330, + [574] = 331, + [575] = 331, + [576] = 430, + [577] = 428, + [578] = 331, + [579] = 460, + [580] = 330, + [581] = 565, + [582] = 331, + [583] = 452, + [584] = 330, + [585] = 436, + [586] = 565, + [587] = 565, + [588] = 331, + [589] = 434, + [590] = 565, + [591] = 438, + [592] = 331, + [593] = 593, + [594] = 330, + [595] = 331, + [596] = 596, + [597] = 434, + [598] = 330, + [599] = 431, + [600] = 331, + [601] = 438, + [602] = 602, + [603] = 432, + [604] = 331, + [605] = 436, + [606] = 330, + [607] = 607, [608] = 608, - [609] = 447, - [610] = 610, - [611] = 446, - [612] = 443, - [613] = 613, - [614] = 334, - [615] = 448, - [616] = 616, - [617] = 334, - [618] = 335, - [619] = 335, - [620] = 468, + [609] = 540, + [610] = 472, + [611] = 611, + [612] = 459, + [613] = 461, + [614] = 602, + [615] = 460, + [616] = 452, + [617] = 611, + [618] = 593, + [619] = 611, + [620] = 472, [621] = 621, - [622] = 469, - [623] = 540, - [624] = 613, - [625] = 616, - [626] = 468, - [627] = 469, - [628] = 548, - [629] = 466, - [630] = 621, - [631] = 610, - [632] = 608, - [633] = 621, - [634] = 465, - [635] = 560, - [636] = 485, - [637] = 637, - [638] = 638, - [639] = 471, - [640] = 334, - [641] = 335, - [642] = 471, - [643] = 335, - [644] = 613, - [645] = 466, - [646] = 646, - [647] = 468, - [648] = 616, - [649] = 469, - [650] = 465, - [651] = 334, - [652] = 540, - [653] = 608, - [654] = 335, - [655] = 335, - [656] = 610, - [657] = 638, - [658] = 334, - [659] = 485, - [660] = 560, - [661] = 334, - [662] = 613, - [663] = 616, - [664] = 471, + [622] = 526, + [623] = 460, + [624] = 452, + [625] = 596, + [626] = 330, + [627] = 473, + [628] = 537, + [629] = 607, + [630] = 331, + [631] = 460, + [632] = 342, + [633] = 460, + [634] = 607, + [635] = 593, + [636] = 452, + [637] = 472, + [638] = 330, + [639] = 331, + [640] = 473, + [641] = 607, + [642] = 621, + [643] = 340, + [644] = 602, + [645] = 596, + [646] = 452, + [647] = 647, + [648] = 472, + [649] = 330, + [650] = 331, + [651] = 330, + [652] = 330, + [653] = 460, + [654] = 459, + [655] = 452, + [656] = 526, + [657] = 331, + [658] = 331, + [659] = 659, + [660] = 660, + [661] = 461, + [662] = 472, + [663] = 330, + [664] = 537, [665] = 665, - [666] = 666, - [667] = 335, - [668] = 334, - [669] = 471, - [670] = 469, - [671] = 468, - [672] = 471, - [673] = 673, - [674] = 610, - [675] = 675, - [676] = 608, - [677] = 335, - [678] = 678, - [679] = 343, - [680] = 347, + [666] = 331, + [667] = 667, + [668] = 593, + [669] = 596, + [670] = 670, + [671] = 671, + [672] = 343, + [673] = 602, + [674] = 344, + [675] = 602, + [676] = 331, + [677] = 331, + [678] = 331, + [679] = 330, + [680] = 621, [681] = 681, - [682] = 469, - [683] = 334, - [684] = 344, - [685] = 468, - [686] = 345, - [687] = 335, - [688] = 345, - [689] = 335, - [690] = 334, - [691] = 354, - [692] = 638, - [693] = 371, - [694] = 351, - [695] = 352, - [696] = 334, - [697] = 335, - [698] = 353, - [699] = 357, - [700] = 361, - [701] = 610, - [702] = 356, - [703] = 616, - [704] = 358, - [705] = 364, + [682] = 340, + [683] = 349, + [684] = 684, + [685] = 340, + [686] = 357, + [687] = 472, + [688] = 688, + [689] = 361, + [690] = 347, + [691] = 691, + [692] = 452, + [693] = 330, + [694] = 330, + [695] = 367, + [696] = 363, + [697] = 697, + [698] = 460, + [699] = 593, + [700] = 330, + [701] = 352, + [702] = 358, + [703] = 607, + [704] = 331, + [705] = 331, [706] = 706, - [707] = 344, - [708] = 345, + [707] = 697, + [708] = 330, [709] = 709, - [710] = 347, - [711] = 370, - [712] = 349, - [713] = 365, - [714] = 372, - [715] = 335, - [716] = 373, - [717] = 367, - [718] = 350, - [719] = 335, - [720] = 369, - [721] = 368, - [722] = 334, - [723] = 366, - [724] = 343, - [725] = 344, - [726] = 334, - [727] = 727, - [728] = 678, - [729] = 681, - [730] = 730, - [731] = 347, - [732] = 732, - [733] = 343, - [734] = 665, - [735] = 334, - [736] = 335, - [737] = 334, - [738] = 335, - [739] = 666, - [740] = 468, - [741] = 334, - [742] = 613, - [743] = 608, - [744] = 334, - [745] = 335, - [746] = 469, - [747] = 747, - [748] = 748, - [749] = 334, - [750] = 335, - [751] = 638, - [752] = 471, - [753] = 753, - [754] = 610, - [755] = 732, - [756] = 616, - [757] = 675, - [758] = 673, + [710] = 366, + [711] = 697, + [712] = 330, + [713] = 621, + [714] = 342, + [715] = 596, + [716] = 350, + [717] = 345, + [718] = 331, + [719] = 330, + [720] = 665, + [721] = 330, + [722] = 354, + [723] = 353, + [724] = 667, + [725] = 346, + [726] = 726, + [727] = 342, + [728] = 671, + [729] = 344, + [730] = 670, + [731] = 607, + [732] = 709, + [733] = 348, + [734] = 593, + [735] = 330, + [736] = 343, + [737] = 659, + [738] = 660, + [739] = 359, + [740] = 331, + [741] = 331, + [742] = 330, + [743] = 344, + [744] = 726, + [745] = 356, + [746] = 343, + [747] = 331, + [748] = 331, + [749] = 365, + [750] = 354, + [751] = 356, + [752] = 367, + [753] = 347, + [754] = 367, + [755] = 361, + [756] = 357, + [757] = 757, + [758] = 363, [759] = 759, - [760] = 334, - [761] = 335, - [762] = 762, - [763] = 732, - [764] = 759, - [765] = 753, - [766] = 367, - [767] = 344, - [768] = 638, - [769] = 673, - [770] = 727, - [771] = 345, - [772] = 730, - [773] = 675, - [774] = 673, - [775] = 373, - [776] = 675, - [777] = 666, - [778] = 665, - [779] = 747, - [780] = 748, - [781] = 347, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 747, - [787] = 748, - [788] = 343, - [789] = 365, - [790] = 681, - [791] = 334, - [792] = 792, - [793] = 335, - [794] = 665, - [795] = 678, - [796] = 395, - [797] = 344, - [798] = 345, - [799] = 347, - [800] = 681, - [801] = 678, - [802] = 354, - [803] = 371, - [804] = 351, - [805] = 352, - [806] = 353, - [807] = 344, - [808] = 345, - [809] = 809, - [810] = 347, - [811] = 343, - [812] = 357, - [813] = 345, - [814] = 344, - [815] = 361, - [816] = 343, - [817] = 817, - [818] = 818, - [819] = 354, - [820] = 356, - [821] = 371, - [822] = 351, - [823] = 358, - [824] = 824, - [825] = 352, - [826] = 364, - [827] = 353, - [828] = 666, - [829] = 638, - [830] = 357, - [831] = 831, - [832] = 370, - [833] = 349, - [834] = 361, - [835] = 372, - [836] = 347, - [837] = 356, - [838] = 350, - [839] = 358, - [840] = 369, - [841] = 368, - [842] = 364, - [843] = 366, - [844] = 343, - [845] = 365, - [846] = 347, - [847] = 367, - [848] = 370, - [849] = 349, - [850] = 372, - [851] = 373, - [852] = 350, - [853] = 369, - [854] = 368, - [855] = 345, - [856] = 344, - [857] = 334, - [858] = 335, - [859] = 366, - [860] = 860, - [861] = 861, - [862] = 334, - [863] = 335, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 343, - [868] = 868, + [760] = 760, + [761] = 670, + [762] = 671, + [763] = 358, + [764] = 667, + [765] = 352, + [766] = 621, + [767] = 343, + [768] = 768, + [769] = 342, + [770] = 671, + [771] = 670, + [772] = 359, + [773] = 344, + [774] = 340, + [775] = 365, + [776] = 660, + [777] = 330, + [778] = 778, + [779] = 779, + [780] = 344, + [781] = 344, + [782] = 343, + [783] = 343, + [784] = 331, + [785] = 356, + [786] = 688, + [787] = 386, + [788] = 691, + [789] = 366, + [790] = 363, + [791] = 343, + [792] = 659, + [793] = 354, + [794] = 794, + [795] = 345, + [796] = 344, + [797] = 691, + [798] = 688, + [799] = 342, + [800] = 350, + [801] = 681, + [802] = 684, + [803] = 665, + [804] = 366, + [805] = 344, + [806] = 343, + [807] = 359, + [808] = 342, + [809] = 353, + [810] = 342, + [811] = 347, + [812] = 346, + [813] = 361, + [814] = 342, + [815] = 357, + [816] = 340, + [817] = 340, + [818] = 348, + [819] = 330, + [820] = 331, + [821] = 358, + [822] = 352, + [823] = 349, + [824] = 621, + [825] = 340, + [826] = 353, + [827] = 349, + [828] = 348, + [829] = 346, + [830] = 667, + [831] = 345, + [832] = 659, + [833] = 660, + [834] = 340, + [835] = 350, + [836] = 665, + [837] = 330, + [838] = 331, + [839] = 365, + [840] = 691, + [841] = 342, + [842] = 343, + [843] = 688, + [844] = 691, + [845] = 349, + [846] = 342, + [847] = 359, + [848] = 348, + [849] = 354, + [850] = 688, + [851] = 851, + [852] = 354, + [853] = 348, + [854] = 367, + [855] = 346, + [856] = 363, + [857] = 366, + [858] = 356, + [859] = 859, + [860] = 345, + [861] = 358, + [862] = 367, + [863] = 340, + [864] = 367, + [865] = 386, + [866] = 350, + [867] = 342, + [868] = 363, [869] = 869, - [870] = 365, - [871] = 364, - [872] = 397, - [873] = 354, - [874] = 371, - [875] = 351, - [876] = 352, - [877] = 353, - [878] = 354, - [879] = 357, - [880] = 371, - [881] = 351, - [882] = 347, - [883] = 345, - [884] = 352, - [885] = 361, + [870] = 346, + [871] = 349, + [872] = 347, + [873] = 681, + [874] = 359, + [875] = 684, + [876] = 353, + [877] = 877, + [878] = 878, + [879] = 361, + [880] = 357, + [881] = 352, + [882] = 877, + [883] = 366, + [884] = 354, + [885] = 691, [886] = 365, - [887] = 353, - [888] = 344, - [889] = 344, - [890] = 748, - [891] = 345, - [892] = 747, - [893] = 343, - [894] = 894, - [895] = 730, - [896] = 894, - [897] = 347, - [898] = 727, - [899] = 894, - [900] = 900, - [901] = 356, - [902] = 343, - [903] = 344, - [904] = 395, - [905] = 357, - [906] = 358, - [907] = 792, - [908] = 894, - [909] = 361, - [910] = 364, - [911] = 345, - [912] = 347, - [913] = 784, - [914] = 785, - [915] = 747, - [916] = 343, - [917] = 356, - [918] = 367, - [919] = 748, - [920] = 358, - [921] = 370, - [922] = 349, - [923] = 364, - [924] = 809, - [925] = 344, - [926] = 354, - [927] = 372, - [928] = 356, - [929] = 373, - [930] = 345, - [931] = 364, - [932] = 343, - [933] = 817, - [934] = 678, - [935] = 681, - [936] = 818, - [937] = 344, - [938] = 366, + [887] = 340, + [888] = 356, + [889] = 794, + [890] = 340, + [891] = 343, + [892] = 344, + [893] = 347, + [894] = 345, + [895] = 353, + [896] = 344, + [897] = 340, + [898] = 665, + [899] = 343, + [900] = 344, + [901] = 348, + [902] = 342, + [903] = 343, + [904] = 349, + [905] = 349, + [906] = 367, + [907] = 365, + [908] = 365, + [909] = 344, + [910] = 363, + [911] = 667, + [912] = 344, + [913] = 877, + [914] = 366, + [915] = 778, + [916] = 779, + [917] = 358, + [918] = 363, + [919] = 361, + [920] = 357, + [921] = 392, + [922] = 877, + [923] = 359, + [924] = 352, + [925] = 386, + [926] = 347, + [927] = 877, + [928] = 359, + [929] = 929, + [930] = 354, + [931] = 688, + [932] = 877, + [933] = 353, + [934] = 671, + [935] = 670, + [936] = 356, + [937] = 757, + [938] = 346, [939] = 345, - [940] = 831, - [941] = 894, - [942] = 784, - [943] = 785, - [944] = 675, - [945] = 673, + [940] = 347, + [941] = 343, + [942] = 340, + [943] = 354, + [944] = 358, + [945] = 348, [946] = 353, - [947] = 366, - [948] = 347, - [949] = 894, - [950] = 950, - [951] = 368, - [952] = 369, - [953] = 366, - [954] = 368, - [955] = 357, - [956] = 365, - [957] = 894, - [958] = 666, - [959] = 665, - [960] = 354, - [961] = 367, + [947] = 356, + [948] = 356, + [949] = 361, + [950] = 357, + [951] = 346, + [952] = 359, + [953] = 877, + [954] = 345, + [955] = 365, + [956] = 778, + [957] = 349, + [958] = 342, + [959] = 348, + [960] = 361, + [961] = 779, [962] = 350, - [963] = 748, - [964] = 747, - [965] = 395, - [966] = 371, - [967] = 351, - [968] = 371, - [969] = 351, - [970] = 369, - [971] = 350, - [972] = 358, - [973] = 369, - [974] = 974, - [975] = 350, - [976] = 370, - [977] = 349, - [978] = 352, - [979] = 368, - [980] = 367, - [981] = 370, - [982] = 373, - [983] = 372, - [984] = 349, - [985] = 352, - [986] = 366, - [987] = 353, - [988] = 373, - [989] = 372, - [990] = 373, - [991] = 372, - [992] = 344, - [993] = 345, - [994] = 349, - [995] = 361, - [996] = 996, - [997] = 370, - [998] = 367, - [999] = 730, - [1000] = 727, - [1001] = 365, - [1002] = 894, - [1003] = 1003, - [1004] = 347, - [1005] = 361, - [1006] = 372, - [1007] = 373, - [1008] = 354, - [1009] = 356, - [1010] = 367, - [1011] = 350, - [1012] = 364, + [963] = 353, + [964] = 363, + [965] = 367, + [966] = 345, + [967] = 366, + [968] = 684, + [969] = 343, + [970] = 352, + [971] = 358, + [972] = 365, + [973] = 350, + [974] = 344, + [975] = 340, + [976] = 759, + [977] = 760, + [978] = 681, + [979] = 357, + [980] = 347, + [981] = 352, + [982] = 358, + [983] = 366, + [984] = 346, + [985] = 350, + [986] = 659, + [987] = 660, + [988] = 361, + [989] = 350, + [990] = 352, + [991] = 357, + [992] = 877, + [993] = 768, + [994] = 344, + [995] = 349, + [996] = 361, + [997] = 779, + [998] = 357, + [999] = 999, + [1000] = 386, + [1001] = 367, + [1002] = 348, + [1003] = 356, + [1004] = 363, + [1005] = 356, + [1006] = 340, + [1007] = 358, + [1008] = 878, + [1009] = 352, + [1010] = 344, + [1011] = 869, + [1012] = 386, [1013] = 343, - [1014] = 350, - [1015] = 353, - [1016] = 357, - [1017] = 369, - [1018] = 368, - [1019] = 361, - [1020] = 366, - [1021] = 357, - [1022] = 371, - [1023] = 351, - [1024] = 358, - [1025] = 343, - [1026] = 1026, - [1027] = 356, - [1028] = 358, - [1029] = 369, - [1030] = 368, - [1031] = 365, - [1032] = 370, - [1033] = 349, - [1034] = 352, - [1035] = 370, - [1036] = 397, - [1037] = 347, - [1038] = 370, - [1039] = 349, - [1040] = 364, - [1041] = 352, - [1042] = 372, - [1043] = 358, - [1044] = 616, - [1045] = 356, - [1046] = 350, - [1047] = 354, - [1048] = 356, - [1049] = 395, - [1050] = 357, - [1051] = 354, - [1052] = 358, - [1053] = 349, - [1054] = 369, - [1055] = 368, - [1056] = 361, - [1057] = 364, - [1058] = 366, - [1059] = 809, - [1060] = 351, - [1061] = 395, - [1062] = 373, - [1063] = 371, - [1064] = 344, - [1065] = 370, - [1066] = 357, - [1067] = 345, - [1068] = 395, - [1069] = 352, - [1070] = 361, - [1071] = 371, - [1072] = 747, - [1073] = 343, - [1074] = 748, - [1075] = 353, - [1076] = 353, - [1077] = 367, - [1078] = 343, - [1079] = 792, - [1080] = 817, - [1081] = 343, - [1082] = 365, - [1083] = 356, - [1084] = 365, - [1085] = 367, - [1086] = 358, - [1087] = 370, - [1088] = 349, - [1089] = 364, - [1090] = 1090, - [1091] = 818, - [1092] = 372, - [1093] = 373, - [1094] = 351, - [1095] = 372, - [1096] = 831, - [1097] = 351, - [1098] = 373, - [1099] = 371, - [1100] = 357, - [1101] = 344, - [1102] = 345, - [1103] = 1103, - [1104] = 831, - [1105] = 354, - [1106] = 367, - [1107] = 365, - [1108] = 365, - [1109] = 350, - [1110] = 347, - [1111] = 369, - [1112] = 367, - [1113] = 350, - [1114] = 369, - [1115] = 368, - [1116] = 368, - [1117] = 361, - [1118] = 349, - [1119] = 366, - [1120] = 366, - [1121] = 372, - [1122] = 784, - [1123] = 373, - [1124] = 785, - [1125] = 343, - [1126] = 344, + [1014] = 794, + [1015] = 365, + [1016] = 363, + [1017] = 366, + [1018] = 342, + [1019] = 365, + [1020] = 859, + [1021] = 593, + [1022] = 356, + [1023] = 342, + [1024] = 346, + [1025] = 367, + [1026] = 358, + [1027] = 358, + [1028] = 348, + [1029] = 349, + [1030] = 352, + [1031] = 366, + [1032] = 366, + [1033] = 367, + [1034] = 347, + [1035] = 999, + [1036] = 356, + [1037] = 344, + [1038] = 768, + [1039] = 352, + [1040] = 365, + [1041] = 353, + [1042] = 760, + [1043] = 345, + [1044] = 340, + [1045] = 343, + [1046] = 344, + [1047] = 346, + [1048] = 342, + [1049] = 759, + [1050] = 851, + [1051] = 759, + [1052] = 363, + [1053] = 999, + [1054] = 343, + [1055] = 350, + [1056] = 348, + [1057] = 367, + [1058] = 778, + [1059] = 363, + [1060] = 345, + [1061] = 344, + [1062] = 392, + [1063] = 348, + [1064] = 343, + [1065] = 999, + [1066] = 999, + [1067] = 342, + [1068] = 343, + [1069] = 350, + [1070] = 859, + [1071] = 340, + [1072] = 359, + [1073] = 1073, + [1074] = 386, + [1075] = 340, + [1076] = 349, + [1077] = 354, + [1078] = 688, + [1079] = 1079, + [1080] = 347, + [1081] = 354, + [1082] = 760, + [1083] = 361, + [1084] = 357, + [1085] = 688, + [1086] = 607, + [1087] = 367, + [1088] = 342, + [1089] = 688, + [1090] = 353, + [1091] = 691, + [1092] = 349, + [1093] = 1093, + [1094] = 691, + [1095] = 768, + [1096] = 999, + [1097] = 929, + [1098] = 359, + [1099] = 359, + [1100] = 340, + [1101] = 359, + [1102] = 346, + [1103] = 345, + [1104] = 353, + [1105] = 347, + [1106] = 345, + [1107] = 356, + [1108] = 778, + [1109] = 347, + [1110] = 348, + [1111] = 386, + [1112] = 352, + [1113] = 757, + [1114] = 354, + [1115] = 350, + [1116] = 340, + [1117] = 350, + [1118] = 358, + [1119] = 346, + [1120] = 353, + [1121] = 999, + [1122] = 365, + [1123] = 684, + [1124] = 779, + [1125] = 778, + [1126] = 1126, [1127] = 345, - [1128] = 785, - [1129] = 784, - [1130] = 900, - [1131] = 347, - [1132] = 397, - [1133] = 352, - [1134] = 353, - [1135] = 818, - [1136] = 817, - [1137] = 1137, - [1138] = 350, - [1139] = 792, - [1140] = 1140, - [1141] = 369, - [1142] = 368, - [1143] = 366, - [1144] = 354, - [1145] = 344, - [1146] = 950, - [1147] = 345, - [1148] = 353, - [1149] = 395, - [1150] = 371, - [1151] = 351, - [1152] = 357, - [1153] = 352, - [1154] = 809, - [1155] = 353, - [1156] = 343, - [1157] = 366, - [1158] = 361, - [1159] = 344, - [1160] = 364, - [1161] = 356, - [1162] = 368, - [1163] = 369, - [1164] = 350, - [1165] = 345, - [1166] = 747, - [1167] = 373, - [1168] = 372, - [1169] = 748, - [1170] = 349, - [1171] = 370, - [1172] = 352, - [1173] = 367, - [1174] = 730, - [1175] = 344, - [1176] = 727, - [1177] = 358, - [1178] = 785, - [1179] = 784, - [1180] = 365, - [1181] = 345, - [1182] = 357, - [1183] = 974, - [1184] = 610, - [1185] = 347, - [1186] = 395, - [1187] = 358, - [1188] = 747, - [1189] = 748, - [1190] = 354, - [1191] = 356, - [1192] = 900, - [1193] = 996, + [1128] = 999, + [1129] = 779, + [1130] = 681, + [1131] = 358, + [1132] = 344, + [1133] = 357, + [1134] = 757, + [1135] = 1135, + [1136] = 346, + [1137] = 361, + [1138] = 353, + [1139] = 359, + [1140] = 392, + [1141] = 357, + [1142] = 352, + [1143] = 354, + [1144] = 350, + [1145] = 366, + [1146] = 343, + [1147] = 365, + [1148] = 354, + [1149] = 386, + [1150] = 361, + [1151] = 1151, + [1152] = 347, + [1153] = 349, + [1154] = 691, + [1155] = 361, + [1156] = 363, + [1157] = 357, + [1158] = 794, + [1159] = 366, + [1160] = 342, + [1161] = 354, + [1162] = 386, + [1163] = 859, + [1164] = 392, + [1165] = 350, + [1166] = 348, + [1167] = 607, + [1168] = 1168, + [1169] = 350, + [1170] = 1170, + [1171] = 365, + [1172] = 851, + [1173] = 346, + [1174] = 345, + [1175] = 359, + [1176] = 1079, + [1177] = 345, + [1178] = 353, + [1179] = 621, + [1180] = 347, + [1181] = 1073, + [1182] = 361, + [1183] = 357, + [1184] = 392, + [1185] = 386, + [1186] = 356, + [1187] = 1170, + [1188] = 354, + [1189] = 1093, + [1190] = 1151, + [1191] = 349, + [1192] = 356, + [1193] = 859, [1194] = 1194, - [1195] = 343, - [1196] = 361, - [1197] = 364, - [1198] = 371, - [1199] = 1199, - [1200] = 1003, - [1201] = 351, + [1195] = 357, + [1196] = 340, + [1197] = 359, + [1198] = 361, + [1199] = 358, + [1200] = 349, + [1201] = 352, [1202] = 347, - [1203] = 357, - [1204] = 1140, - [1205] = 351, - [1206] = 371, - [1207] = 372, - [1208] = 373, - [1209] = 353, - [1210] = 747, - [1211] = 748, - [1212] = 784, - [1213] = 785, - [1214] = 356, - [1215] = 350, - [1216] = 1216, - [1217] = 344, - [1218] = 345, - [1219] = 343, - [1220] = 352, - [1221] = 349, - [1222] = 1137, - [1223] = 357, + [1203] = 869, + [1204] = 365, + [1205] = 359, + [1206] = 1093, + [1207] = 363, + [1208] = 347, + [1209] = 367, + [1210] = 366, + [1211] = 356, + [1212] = 367, + [1213] = 363, + [1214] = 348, + [1215] = 354, + [1216] = 359, + [1217] = 366, + [1218] = 1170, + [1219] = 353, + [1220] = 1220, + [1221] = 345, + [1222] = 347, + [1223] = 352, [1224] = 358, - [1225] = 369, - [1226] = 1103, - [1227] = 368, - [1228] = 370, + [1225] = 1151, + [1226] = 346, + [1227] = 350, + [1228] = 1228, [1229] = 361, - [1230] = 364, - [1231] = 345, - [1232] = 351, - [1233] = 350, - [1234] = 367, - [1235] = 371, - [1236] = 817, - [1237] = 366, - [1238] = 357, - [1239] = 344, - [1240] = 900, - [1241] = 373, - [1242] = 818, - [1243] = 370, - [1244] = 349, - [1245] = 372, - [1246] = 365, - [1247] = 352, - [1248] = 395, - [1249] = 367, - [1250] = 367, - [1251] = 370, - [1252] = 349, - [1253] = 354, - [1254] = 1140, - [1255] = 1194, - [1256] = 343, - [1257] = 365, - [1258] = 1199, - [1259] = 372, - [1260] = 373, - [1261] = 1199, - [1262] = 1194, - [1263] = 350, - [1264] = 369, - [1265] = 974, - [1266] = 368, - [1267] = 366, - [1268] = 395, - [1269] = 366, - [1270] = 785, - [1271] = 368, - [1272] = 356, - [1273] = 369, - [1274] = 397, - [1275] = 1003, - [1276] = 354, - [1277] = 350, - [1278] = 950, - [1279] = 351, - [1280] = 364, - [1281] = 343, - [1282] = 397, - [1283] = 638, - [1284] = 358, - [1285] = 373, - [1286] = 372, - [1287] = 784, - [1288] = 356, - [1289] = 996, - [1290] = 349, - [1291] = 1291, - [1292] = 353, - [1293] = 352, - [1294] = 370, - [1295] = 900, - [1296] = 351, - [1297] = 371, - [1298] = 361, - [1299] = 1137, - [1300] = 369, - [1301] = 367, - [1302] = 354, - [1303] = 344, - [1304] = 366, - [1305] = 368, - [1306] = 369, - [1307] = 350, - [1308] = 367, - [1309] = 373, - [1310] = 345, - [1311] = 347, - [1312] = 372, - [1313] = 365, - [1314] = 353, - [1315] = 365, - [1316] = 364, - [1317] = 361, - [1318] = 352, - [1319] = 349, - [1320] = 370, - [1321] = 368, - [1322] = 616, - [1323] = 358, - [1324] = 610, - [1325] = 351, - [1326] = 371, - [1327] = 357, + [1230] = 357, + [1231] = 346, + [1232] = 361, + [1233] = 365, + [1234] = 593, + [1235] = 386, + [1236] = 1194, + [1237] = 357, + [1238] = 759, + [1239] = 365, + [1240] = 345, + [1241] = 1168, + [1242] = 778, + [1243] = 779, + [1244] = 353, + [1245] = 1220, + [1246] = 1246, + [1247] = 1228, + [1248] = 350, + [1249] = 1194, + [1250] = 348, + [1251] = 1251, + [1252] = 1079, + [1253] = 1073, + [1254] = 392, + [1255] = 1228, + [1256] = 1135, + [1257] = 349, + [1258] = 354, + [1259] = 1168, + [1260] = 356, + [1261] = 366, + [1262] = 1220, + [1263] = 356, + [1264] = 367, + [1265] = 363, + [1266] = 386, + [1267] = 878, + [1268] = 358, + [1269] = 352, + [1270] = 1220, + [1271] = 1228, + [1272] = 348, + [1273] = 688, + [1274] = 691, + [1275] = 1194, + [1276] = 346, + [1277] = 363, + [1278] = 367, + [1279] = 349, + [1280] = 1280, + [1281] = 366, + [1282] = 1282, + [1283] = 365, + [1284] = 1251, + [1285] = 1285, + [1286] = 1168, + [1287] = 779, + [1288] = 778, + [1289] = 1170, + [1290] = 354, + [1291] = 392, + [1292] = 779, + [1293] = 778, + [1294] = 340, + [1295] = 344, + [1296] = 343, + [1297] = 343, + [1298] = 344, + [1299] = 1285, + [1300] = 1251, + [1301] = 1285, + [1302] = 340, + [1303] = 363, + [1304] = 1220, + [1305] = 1170, + [1306] = 1251, + [1307] = 1285, + [1308] = 1220, + [1309] = 349, + [1310] = 343, + [1311] = 344, + [1312] = 342, + [1313] = 1251, + [1314] = 1285, + [1315] = 1170, + [1316] = 367, + [1317] = 760, + [1318] = 340, + [1319] = 359, + [1320] = 1168, + [1321] = 1251, + [1322] = 1285, + [1323] = 353, + [1324] = 1220, + [1325] = 352, + [1326] = 358, + [1327] = 1228, [1328] = 1328, - [1329] = 364, - [1330] = 353, - [1331] = 356, - [1332] = 361, - [1333] = 354, - [1334] = 343, - [1335] = 358, - [1336] = 996, - [1337] = 785, - [1338] = 356, - [1339] = 784, - [1340] = 364, - [1341] = 1003, - [1342] = 950, - [1343] = 371, + [1329] = 1194, + [1330] = 859, + [1331] = 1282, + [1332] = 345, + [1333] = 366, + [1334] = 353, + [1335] = 344, + [1336] = 1285, + [1337] = 929, + [1338] = 343, + [1339] = 392, + [1340] = 1251, + [1341] = 386, + [1342] = 347, + [1343] = 352, [1344] = 358, - [1345] = 395, + [1345] = 346, [1346] = 361, - [1347] = 397, - [1348] = 900, - [1349] = 357, - [1350] = 395, - [1351] = 354, - [1352] = 397, - [1353] = 344, - [1354] = 345, - [1355] = 365, - [1356] = 347, - [1357] = 397, - [1358] = 974, - [1359] = 353, - [1360] = 366, - [1361] = 395, - [1362] = 352, - [1363] = 352, - [1364] = 350, - [1365] = 1291, - [1366] = 343, - [1367] = 397, - [1368] = 1137, - [1369] = 678, - [1370] = 900, - [1371] = 1194, - [1372] = 395, - [1373] = 395, - [1374] = 397, - [1375] = 784, - [1376] = 1137, - [1377] = 681, - [1378] = 675, - [1379] = 785, - [1380] = 343, - [1381] = 343, - [1382] = 673, - [1383] = 345, - [1384] = 344, - [1385] = 1199, - [1386] = 1140, - [1387] = 638, - [1388] = 1194, - [1389] = 1199, - [1390] = 1103, - [1391] = 366, - [1392] = 344, - [1393] = 345, - [1394] = 1137, - [1395] = 354, - [1396] = 371, - [1397] = 666, - [1398] = 368, - [1399] = 351, - [1400] = 353, - [1401] = 356, - [1402] = 357, - [1403] = 358, - [1404] = 395, - [1405] = 361, - [1406] = 369, - [1407] = 665, - [1408] = 1216, - [1409] = 364, - [1410] = 350, - [1411] = 373, - [1412] = 372, - [1413] = 334, - [1414] = 335, - [1415] = 395, - [1416] = 347, - [1417] = 349, - [1418] = 370, - [1419] = 395, - [1420] = 365, - [1421] = 1103, - [1422] = 367, - [1423] = 397, - [1424] = 397, - [1425] = 367, - [1426] = 370, - [1427] = 349, - [1428] = 365, - [1429] = 372, - [1430] = 373, - [1431] = 354, - [1432] = 1199, - [1433] = 371, - [1434] = 1194, - [1435] = 351, - [1436] = 369, - [1437] = 364, - [1438] = 1140, - [1439] = 368, - [1440] = 358, - [1441] = 352, - [1442] = 366, - [1443] = 1140, - [1444] = 356, - [1445] = 353, - [1446] = 900, - [1447] = 397, - [1448] = 357, - [1449] = 361, - [1450] = 1450, - [1451] = 1199, - [1452] = 1450, - [1453] = 1450, - [1454] = 1137, - [1455] = 1450, - [1456] = 1450, - [1457] = 1194, - [1458] = 343, - [1459] = 678, - [1460] = 681, - [1461] = 1216, - [1462] = 1450, - [1463] = 471, - [1464] = 1450, - [1465] = 395, - [1466] = 1450, - [1467] = 469, - [1468] = 397, - [1469] = 1450, - [1470] = 347, - [1471] = 675, - [1472] = 343, - [1473] = 356, - [1474] = 1450, - [1475] = 673, - [1476] = 1450, - [1477] = 1450, - [1478] = 1450, - [1479] = 1450, - [1480] = 357, - [1481] = 1450, - [1482] = 354, - [1483] = 1450, - [1484] = 1216, - [1485] = 371, - [1486] = 397, - [1487] = 397, - [1488] = 351, - [1489] = 1450, - [1490] = 1450, - [1491] = 358, - [1492] = 1450, - [1493] = 1450, - [1494] = 1450, - [1495] = 1194, - [1496] = 395, - [1497] = 343, - [1498] = 1450, - [1499] = 1291, - [1500] = 1450, - [1501] = 1450, - [1502] = 397, - [1503] = 1450, - [1504] = 370, - [1505] = 349, - [1506] = 352, - [1507] = 343, - [1508] = 1450, - [1509] = 1450, - [1510] = 1450, - [1511] = 361, - [1512] = 1450, - [1513] = 343, - [1514] = 1450, - [1515] = 748, - [1516] = 1450, - [1517] = 747, - [1518] = 343, - [1519] = 1140, - [1520] = 468, - [1521] = 347, - [1522] = 364, - [1523] = 1450, - [1524] = 345, - [1525] = 344, - [1526] = 1450, - [1527] = 343, - [1528] = 365, - [1529] = 1450, - [1530] = 727, - [1531] = 1450, - [1532] = 343, - [1533] = 730, - [1534] = 1450, - [1535] = 1450, - [1536] = 1450, - [1537] = 353, - [1538] = 1450, - [1539] = 666, - [1540] = 1450, - [1541] = 1450, - [1542] = 366, - [1543] = 1450, - [1544] = 665, - [1545] = 368, - [1546] = 344, - [1547] = 345, - [1548] = 1199, - [1549] = 1450, - [1550] = 1450, - [1551] = 369, - [1552] = 1450, - [1553] = 1450, - [1554] = 1450, - [1555] = 1140, - [1556] = 1450, - [1557] = 1557, - [1558] = 350, - [1559] = 1450, - [1560] = 1137, - [1561] = 367, - [1562] = 1450, - [1563] = 1450, - [1564] = 397, - [1565] = 345, - [1566] = 373, - [1567] = 1450, - [1568] = 1450, - [1569] = 372, - [1570] = 1291, - [1571] = 1450, - [1572] = 344, - [1573] = 818, - [1574] = 1574, - [1575] = 343, - [1576] = 343, - [1577] = 748, - [1578] = 747, - [1579] = 785, - [1580] = 784, - [1581] = 747, - [1582] = 748, - [1583] = 1557, - [1584] = 1557, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 730, - [1589] = 727, - [1590] = 1590, - [1591] = 397, - [1592] = 1574, - [1593] = 1557, - [1594] = 344, - [1595] = 345, - [1596] = 345, + [1347] = 357, + [1348] = 1168, + [1349] = 1170, + [1350] = 1168, + [1351] = 929, + [1352] = 878, + [1353] = 350, + [1354] = 1251, + [1355] = 1170, + [1356] = 1282, + [1357] = 1168, + [1358] = 1285, + [1359] = 869, + [1360] = 851, + [1361] = 348, + [1362] = 1246, + [1363] = 1135, + [1364] = 392, + [1365] = 1151, + [1366] = 386, + [1367] = 1151, + [1368] = 344, + [1369] = 343, + [1370] = 342, + [1371] = 392, + [1372] = 1079, + [1373] = 1073, + [1374] = 1093, + [1375] = 340, + [1376] = 779, + [1377] = 778, + [1378] = 1079, + [1379] = 386, + [1380] = 621, + [1381] = 349, + [1382] = 357, + [1383] = 1328, + [1384] = 361, + [1385] = 859, + [1386] = 343, + [1387] = 392, + [1388] = 347, + [1389] = 344, + [1390] = 340, + [1391] = 359, + [1392] = 348, + [1393] = 350, + [1394] = 665, + [1395] = 392, + [1396] = 346, + [1397] = 386, + [1398] = 1151, + [1399] = 365, + [1400] = 345, + [1401] = 353, + [1402] = 366, + [1403] = 1073, + [1404] = 367, + [1405] = 354, + [1406] = 340, + [1407] = 363, + [1408] = 352, + [1409] = 358, + [1410] = 356, + [1411] = 358, + [1412] = 392, + [1413] = 347, + [1414] = 356, + [1415] = 363, + [1416] = 354, + [1417] = 365, + [1418] = 352, + [1419] = 353, + [1420] = 1093, + [1421] = 346, + [1422] = 859, + [1423] = 660, + [1424] = 659, + [1425] = 348, + [1426] = 361, + [1427] = 1135, + [1428] = 357, + [1429] = 670, + [1430] = 1073, + [1431] = 671, + [1432] = 366, + [1433] = 345, + [1434] = 386, + [1435] = 1093, + [1436] = 667, + [1437] = 386, + [1438] = 1079, + [1439] = 350, + [1440] = 349, + [1441] = 367, + [1442] = 359, + [1443] = 340, + [1444] = 1444, + [1445] = 1073, + [1446] = 1444, + [1447] = 386, + [1448] = 1444, + [1449] = 1093, + [1450] = 1151, + [1451] = 1246, + [1452] = 340, + [1453] = 1444, + [1454] = 392, + [1455] = 1444, + [1456] = 343, + [1457] = 344, + [1458] = 1093, + [1459] = 1246, + [1460] = 1444, + [1461] = 1444, + [1462] = 1444, + [1463] = 1444, + [1464] = 1444, + [1465] = 1444, + [1466] = 1444, + [1467] = 365, + [1468] = 1328, + [1469] = 1444, + [1470] = 1444, + [1471] = 386, + [1472] = 1444, + [1473] = 1444, + [1474] = 340, + [1475] = 1444, + [1476] = 1444, + [1477] = 1444, + [1478] = 1444, + [1479] = 349, + [1480] = 392, + [1481] = 348, + [1482] = 1444, + [1483] = 1444, + [1484] = 1444, + [1485] = 366, + [1486] = 356, + [1487] = 340, + [1488] = 344, + [1489] = 343, + [1490] = 1151, + [1491] = 367, + [1492] = 1444, + [1493] = 363, + [1494] = 1328, + [1495] = 392, + [1496] = 1444, + [1497] = 1444, + [1498] = 354, + [1499] = 1444, + [1500] = 340, + [1501] = 1444, + [1502] = 1444, + [1503] = 342, + [1504] = 344, + [1505] = 343, + [1506] = 665, + [1507] = 340, + [1508] = 1444, + [1509] = 667, + [1510] = 1444, + [1511] = 1444, + [1512] = 1444, + [1513] = 340, + [1514] = 1444, + [1515] = 1444, + [1516] = 392, + [1517] = 359, + [1518] = 1444, + [1519] = 353, + [1520] = 460, + [1521] = 342, + [1522] = 1444, + [1523] = 1523, + [1524] = 671, + [1525] = 670, + [1526] = 345, + [1527] = 1444, + [1528] = 452, + [1529] = 1444, + [1530] = 472, + [1531] = 1444, + [1532] = 347, + [1533] = 352, + [1534] = 1444, + [1535] = 358, + [1536] = 1444, + [1537] = 1444, + [1538] = 681, + [1539] = 684, + [1540] = 346, + [1541] = 1079, + [1542] = 659, + [1543] = 660, + [1544] = 691, + [1545] = 688, + [1546] = 1444, + [1547] = 340, + [1548] = 1444, + [1549] = 1444, + [1550] = 1444, + [1551] = 1073, + [1552] = 361, + [1553] = 357, + [1554] = 392, + [1555] = 1444, + [1556] = 1444, + [1557] = 1444, + [1558] = 1444, + [1559] = 1444, + [1560] = 350, + [1561] = 1079, + [1562] = 1444, + [1563] = 1563, + [1564] = 331, + [1565] = 691, + [1566] = 365, + [1567] = 363, + [1568] = 361, + [1569] = 1569, + [1570] = 1569, + [1571] = 366, + [1572] = 1572, + [1573] = 1573, + [1574] = 1523, + [1575] = 356, + [1576] = 688, + [1577] = 344, + [1578] = 343, + [1579] = 1579, + [1580] = 1246, + [1581] = 367, + [1582] = 779, + [1583] = 778, + [1584] = 365, + [1585] = 1328, + [1586] = 363, + [1587] = 357, + [1588] = 352, + [1589] = 340, + [1590] = 386, + [1591] = 358, + [1592] = 358, + [1593] = 1523, + [1594] = 392, + [1595] = 354, + [1596] = 356, [1597] = 344, - [1598] = 395, - [1599] = 1557, - [1600] = 395, - [1601] = 1601, - [1602] = 347, - [1603] = 1587, - [1604] = 1585, - [1605] = 354, - [1606] = 344, - [1607] = 345, - [1608] = 1608, - [1609] = 1609, - [1610] = 371, - [1611] = 351, - [1612] = 345, - [1613] = 1574, - [1614] = 352, - [1615] = 1574, - [1616] = 353, - [1617] = 1617, - [1618] = 1291, - [1619] = 344, - [1620] = 784, - [1621] = 1621, - [1622] = 785, - [1623] = 1623, - [1624] = 366, - [1625] = 357, - [1626] = 344, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 345, - [1631] = 368, - [1632] = 369, + [1598] = 1579, + [1599] = 1523, + [1600] = 354, + [1601] = 1569, + [1602] = 1573, + [1603] = 681, + [1604] = 386, + [1605] = 350, + [1606] = 345, + [1607] = 684, + [1608] = 691, + [1609] = 1523, + [1610] = 778, + [1611] = 343, + [1612] = 779, + [1613] = 352, + [1614] = 386, + [1615] = 348, + [1616] = 344, + [1617] = 342, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 344, + [1622] = 1618, + [1623] = 1619, + [1624] = 1579, + [1625] = 343, + [1626] = 342, + [1627] = 330, + [1628] = 344, + [1629] = 343, + [1630] = 1619, + [1631] = 353, + [1632] = 1632, [1633] = 1633, - [1634] = 361, - [1635] = 1557, - [1636] = 1586, - [1637] = 1557, - [1638] = 397, - [1639] = 350, + [1634] = 1618, + [1635] = 345, + [1636] = 342, + [1637] = 340, + [1638] = 343, + [1639] = 392, [1640] = 1640, - [1641] = 1586, - [1642] = 1574, - [1643] = 1574, - [1644] = 373, - [1645] = 372, - [1646] = 349, - [1647] = 370, - [1648] = 344, - [1649] = 356, - [1650] = 1609, - [1651] = 345, - [1652] = 1608, - [1653] = 358, - [1654] = 367, - [1655] = 1585, - [1656] = 343, - [1657] = 1587, - [1658] = 364, - [1659] = 365, - [1660] = 345, - [1661] = 1661, - [1662] = 344, - [1663] = 1663, - [1664] = 395, - [1665] = 1216, - [1666] = 364, - [1667] = 361, - [1668] = 345, - [1669] = 358, - [1670] = 357, - [1671] = 365, - [1672] = 356, - [1673] = 1574, - [1674] = 353, - [1675] = 367, - [1676] = 352, - [1677] = 370, - [1678] = 349, - [1679] = 351, - [1680] = 371, - [1681] = 354, - [1682] = 372, + [1641] = 1641, + [1642] = 367, + [1643] = 340, + [1644] = 353, + [1645] = 344, + [1646] = 346, + [1647] = 344, + [1648] = 1523, + [1649] = 343, + [1650] = 1569, + [1651] = 350, + [1652] = 1579, + [1653] = 1573, + [1654] = 1579, + [1655] = 348, + [1656] = 688, + [1657] = 1563, + [1658] = 1572, + [1659] = 340, + [1660] = 349, + [1661] = 1572, + [1662] = 346, + [1663] = 359, + [1664] = 359, + [1665] = 1523, + [1666] = 344, + [1667] = 347, + [1668] = 1569, + [1669] = 340, + [1670] = 1563, + [1671] = 344, + [1672] = 343, + [1673] = 347, + [1674] = 343, + [1675] = 344, + [1676] = 361, + [1677] = 343, + [1678] = 357, + [1679] = 366, + [1680] = 759, + [1681] = 760, + [1682] = 349, [1683] = 343, - [1684] = 1574, - [1685] = 373, - [1686] = 1627, - [1687] = 817, - [1688] = 350, - [1689] = 369, - [1690] = 368, - [1691] = 366, - [1692] = 344, - [1693] = 347, - [1694] = 345, + [1684] = 1573, + [1685] = 794, + [1686] = 354, + [1687] = 778, + [1688] = 778, + [1689] = 365, + [1690] = 779, + [1691] = 386, + [1692] = 366, + [1693] = 1693, + [1694] = 778, [1695] = 345, - [1696] = 344, - [1697] = 343, - [1698] = 1587, - [1699] = 1585, - [1700] = 1608, - [1701] = 1609, - [1702] = 1621, - [1703] = 347, - [1704] = 1621, - [1705] = 1627, - [1706] = 344, - [1707] = 334, - [1708] = 335, - [1709] = 1709, - [1710] = 345, - [1711] = 1557, + [1696] = 779, + [1697] = 363, + [1698] = 359, + [1699] = 343, + [1700] = 367, + [1701] = 363, + [1702] = 354, + [1703] = 344, + [1704] = 353, + [1705] = 353, + [1706] = 1706, + [1707] = 356, + [1708] = 345, + [1709] = 342, + [1710] = 349, + [1711] = 386, [1712] = 352, - [1713] = 373, - [1714] = 1714, - [1715] = 1715, - [1716] = 1715, - [1717] = 1717, - [1718] = 1715, - [1719] = 1715, - [1720] = 353, - [1721] = 351, - [1722] = 373, - [1723] = 1715, - [1724] = 365, - [1725] = 1725, - [1726] = 1715, - [1727] = 356, - [1728] = 371, - [1729] = 343, - [1730] = 1715, - [1731] = 831, - [1732] = 1715, - [1733] = 357, + [1713] = 1573, + [1714] = 340, + [1715] = 358, + [1716] = 346, + [1717] = 342, + [1718] = 343, + [1719] = 347, + [1720] = 358, + [1721] = 357, + [1722] = 361, + [1723] = 348, + [1724] = 352, + [1725] = 344, + [1726] = 343, + [1727] = 344, + [1728] = 366, + [1729] = 1729, + [1730] = 347, + [1731] = 688, + [1732] = 343, + [1733] = 346, [1734] = 367, - [1735] = 1735, - [1736] = 1715, - [1737] = 1715, - [1738] = 358, - [1739] = 1715, - [1740] = 1740, - [1741] = 1709, - [1742] = 1742, - [1743] = 1715, - [1744] = 1744, - [1745] = 343, - [1746] = 361, - [1747] = 1747, - [1748] = 364, - [1749] = 1749, - [1750] = 1715, - [1751] = 1715, - [1752] = 1714, - [1753] = 1747, - [1754] = 1714, - [1755] = 1715, - [1756] = 818, - [1757] = 354, - [1758] = 817, - [1759] = 1715, - [1760] = 1715, - [1761] = 1735, - [1762] = 1715, - [1763] = 784, - [1764] = 1740, - [1765] = 809, - [1766] = 371, - [1767] = 351, - [1768] = 1715, - [1769] = 1717, - [1770] = 785, - [1771] = 747, - [1772] = 748, - [1773] = 347, - [1774] = 1742, - [1775] = 1715, - [1776] = 352, - [1777] = 1715, - [1778] = 345, - [1779] = 1742, - [1780] = 344, - [1781] = 1715, - [1782] = 353, - [1783] = 343, - [1784] = 365, - [1785] = 1725, - [1786] = 1735, - [1787] = 1747, - [1788] = 344, - [1789] = 356, - [1790] = 345, - [1791] = 367, - [1792] = 354, - [1793] = 345, - [1794] = 1794, - [1795] = 357, - [1796] = 354, - [1797] = 344, - [1798] = 1725, - [1799] = 347, - [1800] = 358, - [1801] = 1735, - [1802] = 1715, - [1803] = 1714, - [1804] = 370, + [1735] = 340, + [1736] = 691, + [1737] = 359, + [1738] = 363, + [1739] = 367, + [1740] = 347, + [1741] = 768, + [1742] = 386, + [1743] = 757, + [1744] = 348, + [1745] = 366, + [1746] = 342, + [1747] = 392, + [1748] = 361, + [1749] = 356, + [1750] = 350, + [1751] = 759, + [1752] = 760, + [1753] = 357, + [1754] = 359, + [1755] = 346, + [1756] = 340, + [1757] = 365, + [1758] = 344, + [1759] = 392, + [1760] = 340, + [1761] = 345, + [1762] = 354, + [1763] = 353, + [1764] = 348, + [1765] = 1765, + [1766] = 1766, + [1767] = 1523, + [1768] = 350, + [1769] = 392, + [1770] = 349, + [1771] = 349, + [1772] = 350, + [1773] = 352, + [1774] = 356, + [1775] = 358, + [1776] = 344, + [1777] = 343, + [1778] = 365, + [1779] = 357, + [1780] = 361, + [1781] = 779, + [1782] = 346, + [1783] = 350, + [1784] = 1784, + [1785] = 349, + [1786] = 359, + [1787] = 1787, + [1788] = 1788, + [1789] = 347, + [1790] = 851, + [1791] = 340, + [1792] = 361, + [1793] = 869, + [1794] = 357, + [1795] = 1620, + [1796] = 1787, + [1797] = 1787, + [1798] = 1788, + [1799] = 386, + [1800] = 349, + [1801] = 1787, + [1802] = 878, + [1803] = 1787, + [1804] = 1787, [1805] = 349, - [1806] = 1714, - [1807] = 361, - [1808] = 1747, - [1809] = 364, - [1810] = 356, - [1811] = 1747, - [1812] = 347, - [1813] = 350, - [1814] = 1714, - [1815] = 372, - [1816] = 373, - [1817] = 1717, - [1818] = 1715, - [1819] = 1740, - [1820] = 1715, - [1821] = 1715, - [1822] = 350, - [1823] = 397, - [1824] = 395, - [1825] = 1715, - [1826] = 792, - [1827] = 345, - [1828] = 397, - [1829] = 1715, - [1830] = 344, - [1831] = 1586, - [1832] = 369, - [1833] = 368, - [1834] = 372, - [1835] = 1715, - [1836] = 1725, - [1837] = 1715, - [1838] = 1715, - [1839] = 1839, - [1840] = 1735, - [1841] = 366, - [1842] = 369, - [1843] = 1715, - [1844] = 365, - [1845] = 368, - [1846] = 1846, - [1847] = 1735, - [1848] = 1848, - [1849] = 370, - [1850] = 1715, - [1851] = 367, - [1852] = 349, - [1853] = 371, - [1854] = 395, - [1855] = 1735, - [1856] = 351, - [1857] = 358, - [1858] = 1725, - [1859] = 1709, - [1860] = 1742, - [1861] = 1861, - [1862] = 1862, - [1863] = 1715, - [1864] = 370, - [1865] = 349, - [1866] = 1715, - [1867] = 350, - [1868] = 1735, - [1869] = 1715, - [1870] = 1747, - [1871] = 1871, - [1872] = 1715, - [1873] = 1715, - [1874] = 1715, - [1875] = 372, - [1876] = 373, - [1877] = 352, - [1878] = 784, - [1879] = 1715, - [1880] = 785, - [1881] = 364, - [1882] = 350, - [1883] = 397, - [1884] = 1714, - [1885] = 353, - [1886] = 1715, - [1887] = 1715, - [1888] = 1725, - [1889] = 1747, - [1890] = 365, - [1891] = 784, - [1892] = 369, - [1893] = 368, - [1894] = 785, - [1895] = 1742, - [1896] = 1715, - [1897] = 1715, - [1898] = 1714, - [1899] = 1899, - [1900] = 361, - [1901] = 366, - [1902] = 366, - [1903] = 367, - [1904] = 1715, - [1905] = 1715, - [1906] = 1747, - [1907] = 366, - [1908] = 368, - [1909] = 1715, - [1910] = 395, - [1911] = 1715, - [1912] = 1742, - [1913] = 1740, - [1914] = 1709, - [1915] = 372, - [1916] = 369, - [1917] = 1742, - [1918] = 343, - [1919] = 1725, - [1920] = 357, - [1921] = 1715, - [1922] = 1725, - [1923] = 1586, - [1924] = 1924, + [1806] = 366, + [1807] = 356, + [1808] = 357, + [1809] = 361, + [1810] = 1810, + [1811] = 386, + [1812] = 367, + [1813] = 363, + [1814] = 1814, + [1815] = 357, + [1816] = 347, + [1817] = 361, + [1818] = 1787, + [1819] = 1819, + [1820] = 1810, + [1821] = 359, + [1822] = 347, + [1823] = 859, + [1824] = 1824, + [1825] = 345, + [1826] = 1787, + [1827] = 1827, + [1828] = 348, + [1829] = 359, + [1830] = 1787, + [1831] = 1831, + [1832] = 392, + [1833] = 1787, + [1834] = 350, + [1835] = 1787, + [1836] = 348, + [1837] = 1787, + [1838] = 929, + [1839] = 346, + [1840] = 1810, + [1841] = 778, + [1842] = 779, + [1843] = 1787, + [1844] = 1844, + [1845] = 345, + [1846] = 1787, + [1847] = 353, + [1848] = 350, + [1849] = 1787, + [1850] = 331, + [1851] = 330, + [1852] = 1787, + [1853] = 1853, + [1854] = 1854, + [1855] = 1810, + [1856] = 1856, + [1857] = 1787, + [1858] = 1858, + [1859] = 1787, + [1860] = 392, + [1861] = 1632, + [1862] = 1640, + [1863] = 345, + [1864] = 353, + [1865] = 1787, + [1866] = 1641, + [1867] = 1787, + [1868] = 1868, + [1869] = 1787, + [1870] = 1787, + [1871] = 348, + [1872] = 1787, + [1873] = 1787, + [1874] = 1787, + [1875] = 346, + [1876] = 1787, + [1877] = 353, + [1878] = 365, + [1879] = 354, + [1880] = 1787, + [1881] = 354, + [1882] = 342, + [1883] = 1787, + [1884] = 392, + [1885] = 1787, + [1886] = 356, + [1887] = 356, + [1888] = 1788, + [1889] = 365, + [1890] = 1890, + [1891] = 366, + [1892] = 1787, + [1893] = 1787, + [1894] = 344, + [1895] = 343, + [1896] = 1787, + [1897] = 1787, + [1898] = 358, + [1899] = 352, + [1900] = 1900, + [1901] = 367, + [1902] = 1787, + [1903] = 358, + [1904] = 352, + [1905] = 1787, + [1906] = 1787, + [1907] = 1814, + [1908] = 363, + [1909] = 367, + [1910] = 1787, + [1911] = 354, + [1912] = 1787, + [1913] = 363, + [1914] = 367, + [1915] = 366, + [1916] = 1787, + [1917] = 356, + [1918] = 1787, + [1919] = 1919, + [1920] = 354, + [1921] = 365, + [1922] = 366, + [1923] = 1787, + [1924] = 1787, [1925] = 1925, - [1926] = 344, - [1927] = 1715, - [1928] = 352, - [1929] = 1629, - [1930] = 350, - [1931] = 347, - [1932] = 345, - [1933] = 373, - [1934] = 372, - [1935] = 344, - [1936] = 369, - [1937] = 368, - [1938] = 366, - [1939] = 368, - [1940] = 366, - [1941] = 1941, - [1942] = 366, - [1943] = 369, - [1944] = 350, + [1926] = 1926, + [1927] = 1787, + [1928] = 365, + [1929] = 358, + [1930] = 1093, + [1931] = 1810, + [1932] = 352, + [1933] = 363, + [1934] = 1787, + [1935] = 1787, + [1936] = 1824, + [1937] = 1827, + [1938] = 1787, + [1939] = 1787, + [1940] = 1787, + [1941] = 392, + [1942] = 1824, + [1943] = 1943, + [1944] = 1706, [1945] = 1945, - [1946] = 349, - [1947] = 370, - [1948] = 1941, - [1949] = 368, - [1950] = 369, - [1951] = 343, - [1952] = 350, - [1953] = 367, - [1954] = 1941, - [1955] = 373, - [1956] = 372, - [1957] = 365, + [1946] = 348, + [1947] = 1620, + [1948] = 1827, + [1949] = 1633, + [1950] = 330, + [1951] = 1824, + [1952] = 331, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1729, + [1957] = 1945, [1958] = 349, - [1959] = 370, - [1960] = 364, - [1961] = 1617, - [1962] = 1661, - [1963] = 373, - [1964] = 372, - [1965] = 1663, - [1966] = 367, - [1967] = 1967, - [1968] = 1140, - [1969] = 365, - [1970] = 1003, - [1971] = 364, - [1972] = 1590, - [1973] = 1973, - [1974] = 1973, - [1975] = 358, - [1976] = 900, - [1977] = 356, - [1978] = 1623, - [1979] = 364, - [1980] = 1980, - [1981] = 361, - [1982] = 1973, - [1983] = 395, - [1984] = 358, - [1985] = 1967, - [1986] = 996, - [1987] = 357, - [1988] = 356, - [1989] = 1989, - [1990] = 1990, - [1991] = 974, - [1992] = 353, - [1993] = 395, - [1994] = 361, - [1995] = 349, - [1996] = 370, - [1997] = 335, - [1998] = 351, - [1999] = 371, - [2000] = 357, - [2001] = 334, - [2002] = 354, - [2003] = 1990, - [2004] = 1989, - [2005] = 354, - [2006] = 353, - [2007] = 367, - [2008] = 371, - [2009] = 397, - [2010] = 351, - [2011] = 352, - [2012] = 352, - [2013] = 353, - [2014] = 950, - [2015] = 351, - [2016] = 365, - [2017] = 371, - [2018] = 356, - [2019] = 397, - [2020] = 784, - [2021] = 785, - [2022] = 357, - [2023] = 1601, - [2024] = 358, - [2025] = 1601, - [2026] = 1633, - [2027] = 1617, - [2028] = 1973, - [2029] = 397, - [2030] = 1663, - [2031] = 361, - [2032] = 354, - [2033] = 1661, - [2034] = 1628, - [2035] = 1137, - [2036] = 1794, - [2037] = 2037, - [2038] = 1989, - [2039] = 364, - [2040] = 1749, - [2041] = 2041, - [2042] = 369, - [2043] = 351, - [2044] = 1839, - [2045] = 2045, - [2046] = 1899, - [2047] = 370, - [2048] = 349, - [2049] = 371, - [2050] = 1640, - [2051] = 1989, - [2052] = 2052, - [2053] = 900, - [2054] = 1990, - [2055] = 370, - [2056] = 2056, - [2057] = 1989, - [2058] = 1839, - [2059] = 1925, - [2060] = 1990, - [2061] = 1899, - [2062] = 2037, - [2063] = 2052, - [2064] = 1744, - [2065] = 1628, - [2066] = 1924, - [2067] = 2041, - [2068] = 1749, - [2069] = 395, - [2070] = 365, - [2071] = 1633, - [2072] = 365, - [2073] = 1623, - [2074] = 2074, - [2075] = 2056, - [2076] = 1199, - [2077] = 352, - [2078] = 1744, - [2079] = 2045, - [2080] = 1629, - [2081] = 395, - [2082] = 372, - [2083] = 373, - [2084] = 353, - [2085] = 2052, - [2086] = 372, - [2087] = 373, - [2088] = 1633, - [2089] = 334, - [2090] = 335, - [2091] = 1871, - [2092] = 2037, - [2093] = 1629, - [2094] = 1140, - [2095] = 2074, - [2096] = 1990, - [2097] = 1989, - [2098] = 366, - [2099] = 1846, - [2100] = 1967, - [2101] = 357, - [2102] = 1967, - [2103] = 367, - [2104] = 1862, - [2105] = 1291, - [2106] = 2037, - [2107] = 1967, - [2108] = 361, - [2109] = 334, - [2110] = 1861, - [2111] = 1640, - [2112] = 2045, - [2113] = 367, - [2114] = 397, - [2115] = 349, - [2116] = 2116, - [2117] = 1623, - [2118] = 1103, - [2119] = 350, - [2120] = 2037, - [2121] = 335, - [2122] = 1990, - [2123] = 397, - [2124] = 1194, - [2125] = 1989, - [2126] = 354, - [2127] = 350, - [2128] = 2037, - [2129] = 2052, - [2130] = 1990, - [2131] = 1628, - [2132] = 368, - [2133] = 1967, - [2134] = 1140, - [2135] = 2037, - [2136] = 356, - [2137] = 2116, - [2138] = 358, - [2139] = 2037, - [2140] = 1967, - [2141] = 366, - [2142] = 395, - [2143] = 2074, - [2144] = 2056, - [2145] = 1848, - [2146] = 369, - [2147] = 368, - [2148] = 2148, - [2149] = 1967, - [2150] = 397, - [2151] = 335, - [2152] = 2152, - [2153] = 2148, - [2154] = 1216, + [1959] = 386, + [1960] = 357, + [1961] = 361, + [1962] = 346, + [1963] = 1693, + [1964] = 1632, + [1965] = 1640, + [1966] = 1641, + [1967] = 1093, + [1968] = 1814, + [1969] = 1954, + [1970] = 353, + [1971] = 347, + [1972] = 1827, + [1973] = 359, + [1974] = 1093, + [1975] = 354, + [1976] = 1824, + [1977] = 1943, + [1978] = 386, + [1979] = 1827, + [1980] = 1814, + [1981] = 1953, + [1982] = 356, + [1983] = 1983, + [1984] = 1827, + [1985] = 1814, + [1986] = 1079, + [1987] = 1641, + [1988] = 1640, + [1989] = 1073, + [1990] = 358, + [1991] = 352, + [1992] = 1824, + [1993] = 1633, + [1994] = 1954, + [1995] = 1765, + [1996] = 1983, + [1997] = 386, + [1998] = 1945, + [1999] = 1814, + [2000] = 1827, + [2001] = 1824, + [2002] = 1953, + [2003] = 363, + [2004] = 1151, + [2005] = 1954, + [2006] = 1943, + [2007] = 1632, + [2008] = 367, + [2009] = 1954, + [2010] = 1954, + [2011] = 1328, + [2012] = 1945, + [2013] = 1945, + [2014] = 330, + [2015] = 365, + [2016] = 366, + [2017] = 331, + [2018] = 1620, + [2019] = 1983, + [2020] = 1954, + [2021] = 1766, + [2022] = 859, + [2023] = 350, + [2024] = 1954, + [2025] = 1814, + [2026] = 392, + [2027] = 345, + [2028] = 1135, + [2029] = 2029, + [2030] = 1824, + [2031] = 1246, + [2032] = 330, + [2033] = 331, + [2034] = 1827, + [2035] = 1858, + [2036] = 331, + [2037] = 330, + [2038] = 1819, + [2039] = 2039, + [2040] = 354, + [2041] = 331, + [2042] = 1856, + [2043] = 356, + [2044] = 1814, + [2045] = 330, + [2046] = 2046, + [2047] = 1854, + [2048] = 2048, + [2049] = 1900, + [2050] = 1890, + [2051] = 1784, + [2052] = 2039, + [2053] = 2046, + [2054] = 392, + [2055] = 1844, + [2056] = 2046, + [2057] = 1919, + [2058] = 331, + [2059] = 2048, + [2060] = 1926, + [2061] = 2061, + [2062] = 363, + [2063] = 367, + [2064] = 1925, + [2065] = 366, + [2066] = 2048, + [2067] = 2067, + [2068] = 1079, + [2069] = 392, + [2070] = 2061, + [2071] = 330, + [2072] = 1073, + [2073] = 2061, + [2074] = 2029, + [2075] = 2029, + [2076] = 1868, + [2077] = 1328, + [2078] = 1151, + [2079] = 386, + [2080] = 392, + [2081] = 2067, + [2082] = 2082, + [2083] = 1831, + [2084] = 1093, + [2085] = 1853, + [2086] = 365, + [2087] = 2087, + [2088] = 331, + [2089] = 2087, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, + [2095] = 2093, + [2096] = 2090, + [2097] = 2090, + [2098] = 2098, + [2099] = 2099, + [2100] = 2099, + [2101] = 330, + [2102] = 2102, + [2103] = 2098, + [2104] = 331, + [2105] = 2087, + [2106] = 2094, + [2107] = 2091, + [2108] = 2091, + [2109] = 2099, + [2110] = 331, + [2111] = 472, + [2112] = 330, + [2113] = 330, + [2114] = 2094, + [2115] = 2093, + [2116] = 330, + [2117] = 331, + [2118] = 2098, + [2119] = 392, + [2120] = 2120, + [2121] = 365, + [2122] = 2120, + [2123] = 2120, + [2124] = 2124, + [2125] = 2125, + [2126] = 356, + [2127] = 2120, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2120, + [2132] = 2120, + [2133] = 2120, + [2134] = 353, + [2135] = 2120, + [2136] = 2120, + [2137] = 2120, + [2138] = 2138, + [2139] = 330, + [2140] = 2140, + [2141] = 2120, + [2142] = 331, + [2143] = 2120, + [2144] = 2120, + [2145] = 352, + [2146] = 358, + [2147] = 2120, + [2148] = 2120, + [2149] = 331, + [2150] = 2120, + [2151] = 330, + [2152] = 2120, + [2153] = 2153, + [2154] = 2154, [2155] = 2155, - [2156] = 395, - [2157] = 2157, - [2158] = 2157, - [2159] = 335, - [2160] = 343, - [2161] = 334, - [2162] = 334, - [2163] = 1990, - [2164] = 334, - [2165] = 2165, - [2166] = 334, - [2167] = 335, - [2168] = 2148, - [2169] = 1194, - [2170] = 1137, - [2171] = 2165, - [2172] = 397, - [2173] = 2173, - [2174] = 2152, - [2175] = 1291, - [2176] = 397, - [2177] = 1199, - [2178] = 1140, - [2179] = 344, - [2180] = 345, - [2181] = 1989, - [2182] = 2152, - [2183] = 2157, - [2184] = 2165, - [2185] = 347, - [2186] = 335, - [2187] = 2187, - [2188] = 369, - [2189] = 372, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 350, - [2195] = 2195, - [2196] = 471, - [2197] = 364, - [2198] = 335, - [2199] = 334, - [2200] = 373, - [2201] = 2201, - [2202] = 2191, - [2203] = 368, - [2204] = 2204, - [2205] = 349, - [2206] = 370, - [2207] = 2193, - [2208] = 2190, - [2209] = 361, - [2210] = 2204, - [2211] = 2211, - [2212] = 334, - [2213] = 397, - [2214] = 2214, - [2215] = 2190, - [2216] = 335, - [2217] = 366, - [2218] = 335, - [2219] = 334, - [2220] = 2193, - [2221] = 335, - [2222] = 2192, - [2223] = 2214, - [2224] = 358, - [2225] = 367, - [2226] = 334, - [2227] = 2204, - [2228] = 357, - [2229] = 356, - [2230] = 2191, - [2231] = 365, - [2232] = 2195, - [2233] = 2192, - [2234] = 353, - [2235] = 352, - [2236] = 2214, - [2237] = 2195, - [2238] = 354, - [2239] = 371, - [2240] = 351, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 356, - [2246] = 2246, - [2247] = 358, - [2248] = 334, - [2249] = 364, - [2250] = 335, - [2251] = 2243, - [2252] = 2243, - [2253] = 2243, - [2254] = 366, - [2255] = 349, - [2256] = 370, - [2257] = 368, - [2258] = 369, - [2259] = 365, - [2260] = 2260, - [2261] = 2243, + [2156] = 354, + [2157] = 348, + [2158] = 2120, + [2159] = 346, + [2160] = 366, + [2161] = 2120, + [2162] = 2120, + [2163] = 2163, + [2164] = 2120, + [2165] = 367, + [2166] = 363, + [2167] = 2120, + [2168] = 2168, + [2169] = 2120, + [2170] = 2170, + [2171] = 2171, + [2172] = 2102, + [2173] = 2102, + [2174] = 2174, + [2175] = 365, + [2176] = 2170, + [2177] = 472, + [2178] = 691, + [2179] = 2153, + [2180] = 2180, + [2181] = 2181, + [2182] = 2180, + [2183] = 2181, + [2184] = 2180, + [2185] = 2181, + [2186] = 2180, + [2187] = 2181, + [2188] = 2154, + [2189] = 2180, + [2190] = 460, + [2191] = 452, + [2192] = 2181, + [2193] = 2180, + [2194] = 2181, + [2195] = 472, + [2196] = 2180, + [2197] = 2181, + [2198] = 2198, + [2199] = 2180, + [2200] = 2181, + [2201] = 2181, + [2202] = 2180, + [2203] = 2138, + [2204] = 2181, + [2205] = 2129, + [2206] = 2180, + [2207] = 2181, + [2208] = 2130, + [2209] = 330, + [2210] = 2180, + [2211] = 2180, + [2212] = 2181, + [2213] = 331, + [2214] = 340, + [2215] = 2153, + [2216] = 2154, + [2217] = 343, + [2218] = 344, + [2219] = 342, + [2220] = 2155, + [2221] = 2171, + [2222] = 2140, + [2223] = 779, + [2224] = 778, + [2225] = 2138, + [2226] = 688, + [2227] = 366, + [2228] = 2181, + [2229] = 2180, + [2230] = 2180, + [2231] = 348, + [2232] = 346, + [2233] = 353, + [2234] = 367, + [2235] = 363, + [2236] = 352, + [2237] = 358, + [2238] = 2180, + [2239] = 2129, + [2240] = 365, + [2241] = 354, + [2242] = 356, + [2243] = 356, + [2244] = 366, + [2245] = 2130, + [2246] = 367, + [2247] = 363, + [2248] = 348, + [2249] = 354, + [2250] = 2181, + [2251] = 2155, + [2252] = 2170, + [2253] = 2171, + [2254] = 353, + [2255] = 2140, + [2256] = 358, + [2257] = 352, + [2258] = 2181, + [2259] = 346, + [2260] = 357, + [2261] = 2261, [2262] = 2262, - [2263] = 2243, - [2264] = 2243, + [2263] = 358, + [2264] = 367, [2265] = 2265, - [2266] = 2243, - [2267] = 2243, - [2268] = 2268, - [2269] = 2269, - [2270] = 350, - [2271] = 2243, - [2272] = 2243, - [2273] = 2243, - [2274] = 373, - [2275] = 372, - [2276] = 2276, - [2277] = 2277, - [2278] = 367, - [2279] = 2243, - [2280] = 335, - [2281] = 334, - [2282] = 2243, - [2283] = 2243, - [2284] = 2243, - [2285] = 2243, - [2286] = 2243, - [2287] = 2243, - [2288] = 2243, - [2289] = 2289, - [2290] = 2243, - [2291] = 395, - [2292] = 2292, - [2293] = 2243, - [2294] = 2243, - [2295] = 2295, - [2296] = 2201, - [2297] = 1199, - [2298] = 1194, - [2299] = 397, - [2300] = 2201, - [2301] = 2260, - [2302] = 2302, - [2303] = 2269, - [2304] = 358, - [2305] = 364, - [2306] = 2302, - [2307] = 2307, - [2308] = 2302, - [2309] = 335, - [2310] = 471, - [2311] = 358, - [2312] = 2307, - [2313] = 2302, - [2314] = 334, - [2315] = 2292, - [2316] = 369, - [2317] = 2307, - [2318] = 334, - [2319] = 2244, - [2320] = 364, - [2321] = 2307, - [2322] = 2241, - [2323] = 2302, - [2324] = 2302, - [2325] = 2307, - [2326] = 335, - [2327] = 2302, - [2328] = 2307, - [2329] = 2307, - [2330] = 2302, - [2331] = 365, - [2332] = 2241, - [2333] = 367, - [2334] = 2307, - [2335] = 2302, - [2336] = 748, - [2337] = 370, - [2338] = 356, - [2339] = 2246, - [2340] = 2244, - [2341] = 2302, - [2342] = 370, - [2343] = 356, - [2344] = 349, - [2345] = 747, - [2346] = 2292, - [2347] = 2302, - [2348] = 2307, - [2349] = 471, - [2350] = 2307, - [2351] = 349, - [2352] = 365, - [2353] = 372, - [2354] = 373, - [2355] = 372, - [2356] = 2302, - [2357] = 2307, - [2358] = 366, - [2359] = 367, - [2360] = 2246, - [2361] = 373, - [2362] = 350, - [2363] = 785, - [2364] = 2302, - [2365] = 2307, - [2366] = 369, - [2367] = 368, - [2368] = 784, - [2369] = 366, - [2370] = 2307, - [2371] = 2269, - [2372] = 2302, - [2373] = 368, - [2374] = 2307, - [2375] = 2307, - [2376] = 344, - [2377] = 345, - [2378] = 468, - [2379] = 2302, - [2380] = 469, - [2381] = 350, - [2382] = 343, - [2383] = 2307, - [2384] = 347, - [2385] = 2260, - [2386] = 2386, - [2387] = 334, - [2388] = 335, - [2389] = 354, - [2390] = 334, - [2391] = 2391, - [2392] = 2391, - [2393] = 2393, - [2394] = 2386, - [2395] = 352, - [2396] = 2393, - [2397] = 2386, - [2398] = 2398, - [2399] = 353, - [2400] = 2393, - [2401] = 335, - [2402] = 2391, - [2403] = 2386, - [2404] = 2386, - [2405] = 2393, - [2406] = 356, - [2407] = 2393, - [2408] = 2391, - [2409] = 357, - [2410] = 2410, - [2411] = 2393, - [2412] = 358, - [2413] = 361, - [2414] = 364, - [2415] = 2386, - [2416] = 2393, - [2417] = 2417, - [2418] = 2386, - [2419] = 2393, - [2420] = 351, - [2421] = 2386, - [2422] = 2393, - [2423] = 2417, - [2424] = 2386, - [2425] = 365, - [2426] = 2426, - [2427] = 2393, - [2428] = 367, - [2429] = 2391, - [2430] = 2393, - [2431] = 2386, - [2432] = 2393, - [2433] = 2386, - [2434] = 2386, - [2435] = 2393, - [2436] = 2386, - [2437] = 2417, - [2438] = 370, - [2439] = 2391, - [2440] = 349, - [2441] = 2386, - [2442] = 2393, - [2443] = 371, - [2444] = 372, - [2445] = 335, - [2446] = 373, - [2447] = 2391, - [2448] = 350, - [2449] = 2386, - [2450] = 334, - [2451] = 2393, - [2452] = 2393, - [2453] = 2386, - [2454] = 369, - [2455] = 368, - [2456] = 335, - [2457] = 334, - [2458] = 334, - [2459] = 366, - [2460] = 335, - [2461] = 2393, - [2462] = 2462, - [2463] = 2386, - [2464] = 2464, - [2465] = 2386, - [2466] = 2393, - [2467] = 2386, - [2468] = 2393, - [2469] = 2469, - [2470] = 2469, - [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 2469, - [2475] = 2471, - [2476] = 2471, - [2477] = 2469, - [2478] = 2478, - [2479] = 2479, - [2480] = 335, - [2481] = 334, - [2482] = 2469, - [2483] = 900, - [2484] = 2471, - [2485] = 2469, - [2486] = 2471, - [2487] = 2472, - [2488] = 2473, - [2489] = 2469, - [2490] = 2471, - [2491] = 2471, - [2492] = 2479, - [2493] = 2478, - [2494] = 2469, - [2495] = 1140, - [2496] = 2472, - [2497] = 2479, - [2498] = 2471, - [2499] = 2478, - [2500] = 2479, - [2501] = 2478, - [2502] = 395, - [2503] = 2469, - [2504] = 2473, - [2505] = 2471, - [2506] = 2506, - [2507] = 2507, - [2508] = 2506, - [2509] = 2509, - [2510] = 397, - [2511] = 2509, - [2512] = 2507, - [2513] = 2507, - [2514] = 2506, - [2515] = 2507, - [2516] = 2516, - [2517] = 2509, - [2518] = 2506, - [2519] = 2507, - [2520] = 2507, - [2521] = 2507, - [2522] = 2506, - [2523] = 2506, - [2524] = 2506, - [2525] = 2509, - [2526] = 2509, - [2527] = 2506, - [2528] = 2507, - [2529] = 2506, - [2530] = 1137, - [2531] = 2506, - [2532] = 2507, - [2533] = 2506, - [2534] = 2509, - [2535] = 2507, - [2536] = 2509, - [2537] = 2506, - [2538] = 2506, - [2539] = 2507, - [2540] = 2507, - [2541] = 2506, - [2542] = 2507, - [2543] = 2506, - [2544] = 2544, - [2545] = 2507, - [2546] = 2506, - [2547] = 2509, - [2548] = 2507, - [2549] = 2509, - [2550] = 2506, - [2551] = 2507, - [2552] = 2506, - [2553] = 2506, - [2554] = 2507, - [2555] = 2507, - [2556] = 2506, - [2557] = 2509, - [2558] = 2509, - [2559] = 2506, - [2560] = 2506, - [2561] = 2507, - [2562] = 2509, - [2563] = 2506, - [2564] = 2507, - [2565] = 2506, - [2566] = 2507, - [2567] = 2506, - [2568] = 2507, - [2569] = 2507, - [2570] = 2507, - [2571] = 2506, - [2572] = 2506, - [2573] = 2507, - [2574] = 2506, - [2575] = 2507, - [2576] = 2509, - [2577] = 2506, - [2578] = 2507, - [2579] = 2507, - [2580] = 2507, - [2581] = 2506, - [2582] = 2506, - [2583] = 2507, - [2584] = 2509, - [2585] = 2509, - [2586] = 2507, - [2587] = 2507, - [2588] = 2507, - [2589] = 2506, - [2590] = 2509, - [2591] = 2506, - [2592] = 2509, - [2593] = 2509, - [2594] = 2507, - [2595] = 2509, - [2596] = 2506, - [2597] = 2506, - [2598] = 2506, - [2599] = 2506, - [2600] = 2509, - [2601] = 2509, - [2602] = 2507, - [2603] = 343, - [2604] = 2506, - [2605] = 1199, - [2606] = 2509, - [2607] = 2506, - [2608] = 2507, - [2609] = 2506, - [2610] = 2509, - [2611] = 2509, - [2612] = 1194, - [2613] = 2507, - [2614] = 2506, - [2615] = 2509, - [2616] = 2507, - [2617] = 2506, - [2618] = 2507, - [2619] = 2509, - [2620] = 2506, - [2621] = 2509, - [2622] = 2507, - [2623] = 2507, - [2624] = 2506, - [2625] = 2509, - [2626] = 2507, - [2627] = 2509, - [2628] = 2509, - [2629] = 2507, - [2630] = 2509, - [2631] = 2507, - [2632] = 2506, - [2633] = 2506, - [2634] = 2507, - [2635] = 2506, - [2636] = 2509, - [2637] = 2507, - [2638] = 2506, - [2639] = 2506, - [2640] = 2507, - [2641] = 2506, - [2642] = 2507, - [2643] = 2509, - [2644] = 2506, + [2266] = 366, + [2267] = 352, + [2268] = 365, + [2269] = 356, + [2270] = 2270, + [2271] = 2261, + [2272] = 2261, + [2273] = 330, + [2274] = 354, + [2275] = 346, + [2276] = 2262, + [2277] = 2262, + [2278] = 2262, + [2279] = 2261, + [2280] = 330, + [2281] = 2262, + [2282] = 2261, + [2283] = 331, + [2284] = 353, + [2285] = 2265, + [2286] = 2262, + [2287] = 2265, + [2288] = 345, + [2289] = 2261, + [2290] = 2261, + [2291] = 2262, + [2292] = 2265, + [2293] = 2293, + [2294] = 2270, + [2295] = 350, + [2296] = 330, + [2297] = 331, + [2298] = 331, + [2299] = 348, + [2300] = 2265, + [2301] = 330, + [2302] = 2261, + [2303] = 359, + [2304] = 2262, + [2305] = 2261, + [2306] = 2261, + [2307] = 2262, + [2308] = 347, + [2309] = 330, + [2310] = 2262, + [2311] = 2261, + [2312] = 331, + [2313] = 2270, + [2314] = 2262, + [2315] = 2262, + [2316] = 2261, + [2317] = 2261, + [2318] = 2262, + [2319] = 2261, + [2320] = 331, + [2321] = 2262, + [2322] = 361, + [2323] = 363, + [2324] = 2262, + [2325] = 349, + [2326] = 2261, + [2327] = 2262, + [2328] = 2261, + [2329] = 2265, + [2330] = 2261, + [2331] = 2262, + [2332] = 2332, + [2333] = 2261, + [2334] = 2262, + [2335] = 2335, + [2336] = 2265, + [2337] = 2337, + [2338] = 2262, + [2339] = 2261, + [2340] = 2340, + [2341] = 2341, + [2342] = 331, + [2343] = 2341, + [2344] = 2344, + [2345] = 2345, + [2346] = 2341, + [2347] = 2344, + [2348] = 2348, + [2349] = 2349, + [2350] = 386, + [2351] = 2340, + [2352] = 2348, + [2353] = 2348, + [2354] = 2345, + [2355] = 2344, + [2356] = 2341, + [2357] = 859, + [2358] = 330, + [2359] = 2348, + [2360] = 2348, + [2361] = 2349, + [2362] = 2345, + [2363] = 2348, + [2364] = 2345, + [2365] = 2348, + [2366] = 2366, + [2367] = 2345, + [2368] = 2341, + [2369] = 2340, + [2370] = 2345, + [2371] = 2345, + [2372] = 2348, + [2373] = 2345, + [2374] = 2344, + [2375] = 1093, + [2376] = 2348, + [2377] = 2345, + [2378] = 2344, + [2379] = 2349, + [2380] = 2380, + [2381] = 2381, + [2382] = 2380, + [2383] = 2381, + [2384] = 2384, + [2385] = 2380, + [2386] = 2384, + [2387] = 2381, + [2388] = 2381, + [2389] = 2381, + [2390] = 2381, + [2391] = 2384, + [2392] = 2384, + [2393] = 2381, + [2394] = 2381, + [2395] = 2380, + [2396] = 2384, + [2397] = 2384, + [2398] = 2384, + [2399] = 2384, + [2400] = 2381, + [2401] = 2380, + [2402] = 2381, + [2403] = 2381, + [2404] = 2381, + [2405] = 2380, + [2406] = 2384, + [2407] = 2380, + [2408] = 1151, + [2409] = 2384, + [2410] = 2380, + [2411] = 2380, + [2412] = 2381, + [2413] = 2381, + [2414] = 2380, + [2415] = 2384, + [2416] = 2380, + [2417] = 2381, + [2418] = 2381, + [2419] = 2380, + [2420] = 2381, + [2421] = 2384, + [2422] = 2384, + [2423] = 2381, + [2424] = 2380, + [2425] = 2384, + [2426] = 2384, + [2427] = 2381, + [2428] = 2380, + [2429] = 2384, + [2430] = 2381, + [2431] = 2384, + [2432] = 2381, + [2433] = 2384, + [2434] = 2384, + [2435] = 2381, + [2436] = 2384, + [2437] = 2380, + [2438] = 2384, + [2439] = 2384, + [2440] = 1079, + [2441] = 1073, + [2442] = 2381, + [2443] = 2381, + [2444] = 2381, + [2445] = 2380, + [2446] = 2380, + [2447] = 2380, + [2448] = 2384, + [2449] = 2381, + [2450] = 2381, + [2451] = 2384, + [2452] = 2384, + [2453] = 2384, + [2454] = 392, + [2455] = 2380, + [2456] = 2384, + [2457] = 2380, + [2458] = 2381, + [2459] = 2380, + [2460] = 2381, + [2461] = 2384, + [2462] = 2384, + [2463] = 2380, + [2464] = 2384, + [2465] = 2380, + [2466] = 2384, + [2467] = 2381, + [2468] = 2381, + [2469] = 2384, + [2470] = 2380, + [2471] = 2384, + [2472] = 2381, + [2473] = 2381, + [2474] = 2384, + [2475] = 2381, + [2476] = 2381, + [2477] = 2384, + [2478] = 2381, + [2479] = 2384, + [2480] = 2381, + [2481] = 2380, + [2482] = 2384, + [2483] = 2380, + [2484] = 2381, + [2485] = 2380, + [2486] = 2486, + [2487] = 2381, + [2488] = 2384, + [2489] = 2380, + [2490] = 2381, + [2491] = 2384, + [2492] = 2381, + [2493] = 2381, + [2494] = 2381, + [2495] = 2384, + [2496] = 2384, + [2497] = 2381, + [2498] = 2380, + [2499] = 2381, + [2500] = 2381, + [2501] = 2380, + [2502] = 2384, + [2503] = 2384, + [2504] = 340, + [2505] = 2380, + [2506] = 2384, + [2507] = 2384, + [2508] = 2384, + [2509] = 2384, + [2510] = 2381, + [2511] = 2381, + [2512] = 2512, + [2513] = 2380, + [2514] = 2384, + [2515] = 2384, + [2516] = 2381, + [2517] = 2380, + [2518] = 2381, + [2519] = 2381, + [2520] = 2380, + [2521] = 2380, + [2522] = 2381, + [2523] = 2384, + [2524] = 2380, + [2525] = 2381, + [2526] = 2381, + [2527] = 2380, + [2528] = 2381, + [2529] = 2384, + [2530] = 2384, + [2531] = 2381, + [2532] = 2384, + [2533] = 2381, + [2534] = 2384, + [2535] = 2384, + [2536] = 2381, + [2537] = 2384, + [2538] = 2384, + [2539] = 2380, + [2540] = 2384, + [2541] = 2381, + [2542] = 2384, + [2543] = 2384, + [2544] = 2380, + [2545] = 2381, + [2546] = 2381, + [2547] = 2381, + [2548] = 2384, + [2549] = 2384, + [2550] = 2380, + [2551] = 2384, + [2552] = 2381, + [2553] = 2381, + [2554] = 2384, + [2555] = 2381, + [2556] = 2380, + [2557] = 2380, + [2558] = 2381, + [2559] = 2380, + [2560] = 2384, + [2561] = 2381, + [2562] = 2562, + [2563] = 2384, + [2564] = 2380, + [2565] = 2384, + [2566] = 2381, + [2567] = 2381, + [2568] = 2380, + [2569] = 2384, + [2570] = 2381, + [2571] = 2384, + [2572] = 2384, + [2573] = 2384, + [2574] = 2380, + [2575] = 2381, + [2576] = 2384, + [2577] = 2381, + [2578] = 691, + [2579] = 2579, + [2580] = 340, + [2581] = 343, + [2582] = 344, + [2583] = 2583, + [2584] = 342, + [2585] = 2585, + [2586] = 2586, + [2587] = 340, + [2588] = 1766, + [2589] = 1765, + [2590] = 342, + [2591] = 2591, + [2592] = 2592, + [2593] = 2593, + [2594] = 1693, + [2595] = 1706, + [2596] = 688, + [2597] = 2597, + [2598] = 340, + [2599] = 359, + [2600] = 2579, + [2601] = 2601, + [2602] = 386, + [2603] = 348, + [2604] = 363, + [2605] = 367, + [2606] = 859, + [2607] = 386, + [2608] = 2608, + [2609] = 1925, + [2610] = 340, + [2611] = 1926, + [2612] = 358, + [2613] = 352, + [2614] = 345, + [2615] = 349, + [2616] = 350, + [2617] = 359, + [2618] = 1784, + [2619] = 688, + [2620] = 2583, + [2621] = 347, + [2622] = 346, + [2623] = 366, + [2624] = 2586, + [2625] = 365, + [2626] = 2591, + [2627] = 1819, + [2628] = 358, + [2629] = 353, + [2630] = 859, + [2631] = 2597, + [2632] = 356, + [2633] = 366, + [2634] = 347, + [2635] = 342, + [2636] = 353, + [2637] = 346, + [2638] = 361, + [2639] = 357, + [2640] = 365, + [2641] = 354, + [2642] = 691, + [2643] = 349, + [2644] = 348, [2645] = 2645, - [2646] = 2507, - [2647] = 2509, - [2648] = 2506, - [2649] = 2507, - [2650] = 2507, - [2651] = 2507, - [2652] = 2507, - [2653] = 2509, - [2654] = 2506, - [2655] = 2506, - [2656] = 2509, - [2657] = 2506, - [2658] = 2506, - [2659] = 2509, - [2660] = 2507, - [2661] = 2507, - [2662] = 2506, - [2663] = 2507, - [2664] = 2507, - [2665] = 2507, - [2666] = 2506, - [2667] = 2507, - [2668] = 2506, - [2669] = 2507, - [2670] = 2509, - [2671] = 2506, - [2672] = 2509, - [2673] = 2506, - [2674] = 2507, - [2675] = 2506, - [2676] = 2507, - [2677] = 2509, - [2678] = 2509, - [2679] = 2506, - [2680] = 2507, - [2681] = 2507, - [2682] = 2506, - [2683] = 2507, - [2684] = 2506, - [2685] = 2509, - [2686] = 2506, - [2687] = 2507, - [2688] = 2507, - [2689] = 2509, - [2690] = 2507, - [2691] = 2506, - [2692] = 2507, - [2693] = 2509, - [2694] = 2506, - [2695] = 2506, - [2696] = 2507, - [2697] = 2506, - [2698] = 2507, - [2699] = 2509, - [2700] = 2506, - [2701] = 2507, - [2702] = 2509, - [2703] = 2506, - [2704] = 2509, - [2705] = 2509, - [2706] = 2506, - [2707] = 2507, - [2708] = 2507, - [2709] = 2506, - [2710] = 2710, - [2711] = 2711, - [2712] = 347, - [2713] = 343, - [2714] = 2714, - [2715] = 2715, - [2716] = 2716, - [2717] = 747, - [2718] = 748, - [2719] = 2719, - [2720] = 2720, - [2721] = 343, - [2722] = 2722, - [2723] = 347, - [2724] = 345, - [2725] = 344, - [2726] = 347, - [2727] = 2716, - [2728] = 356, - [2729] = 353, - [2730] = 354, - [2731] = 371, - [2732] = 350, - [2733] = 343, - [2734] = 369, - [2735] = 368, - [2736] = 351, - [2737] = 352, - [2738] = 395, - [2739] = 366, - [2740] = 368, - [2741] = 366, - [2742] = 343, - [2743] = 358, - [2744] = 345, - [2745] = 353, - [2746] = 365, - [2747] = 373, - [2748] = 2711, - [2749] = 2722, - [2750] = 2719, - [2751] = 372, - [2752] = 2714, - [2753] = 369, - [2754] = 357, - [2755] = 350, - [2756] = 900, - [2757] = 361, - [2758] = 395, - [2759] = 2710, - [2760] = 349, - [2761] = 370, - [2762] = 347, - [2763] = 352, - [2764] = 357, - [2765] = 2765, - [2766] = 2766, - [2767] = 367, - [2768] = 356, - [2769] = 367, - [2770] = 364, - [2771] = 358, - [2772] = 373, - [2773] = 343, - [2774] = 361, - [2775] = 372, - [2776] = 343, - [2777] = 344, - [2778] = 365, - [2779] = 2779, - [2780] = 2720, - [2781] = 354, - [2782] = 370, - [2783] = 2715, - [2784] = 364, - [2785] = 349, - [2786] = 747, - [2787] = 748, - [2788] = 900, - [2789] = 371, - [2790] = 344, - [2791] = 2791, - [2792] = 345, - [2793] = 351, - [2794] = 747, - [2795] = 343, - [2796] = 2719, - [2797] = 2715, - [2798] = 2716, - [2799] = 2799, - [2800] = 2720, + [2646] = 340, + [2647] = 345, + [2648] = 354, + [2649] = 344, + [2650] = 343, + [2651] = 367, + [2652] = 361, + [2653] = 350, + [2654] = 2654, + [2655] = 2585, + [2656] = 363, + [2657] = 2593, + [2658] = 2592, + [2659] = 356, + [2660] = 340, + [2661] = 342, + [2662] = 357, + [2663] = 352, + [2664] = 344, + [2665] = 343, + [2666] = 357, + [2667] = 346, + [2668] = 365, + [2669] = 366, + [2670] = 352, + [2671] = 2671, + [2672] = 367, + [2673] = 363, + [2674] = 356, + [2675] = 354, + [2676] = 2671, + [2677] = 2671, + [2678] = 392, + [2679] = 353, + [2680] = 346, + [2681] = 348, + [2682] = 344, + [2683] = 386, + [2684] = 386, + [2685] = 2585, + [2686] = 345, + [2687] = 2671, + [2688] = 2688, + [2689] = 2671, + [2690] = 350, + [2691] = 2671, + [2692] = 342, + [2693] = 2693, + [2694] = 2671, + [2695] = 2671, + [2696] = 2671, + [2697] = 2671, + [2698] = 2671, + [2699] = 2671, + [2700] = 688, + [2701] = 2671, + [2702] = 691, + [2703] = 2671, + [2704] = 2597, + [2705] = 359, + [2706] = 347, + [2707] = 2707, + [2708] = 2671, + [2709] = 2671, + [2710] = 2671, + [2711] = 354, + [2712] = 356, + [2713] = 361, + [2714] = 2671, + [2715] = 2586, + [2716] = 349, + [2717] = 2591, + [2718] = 2671, + [2719] = 2671, + [2720] = 2671, + [2721] = 358, + [2722] = 358, + [2723] = 2671, + [2724] = 352, + [2725] = 2671, + [2726] = 340, + [2727] = 2597, + [2728] = 2579, + [2729] = 363, + [2730] = 367, + [2731] = 366, + [2732] = 2671, + [2733] = 2671, + [2734] = 2671, + [2735] = 365, + [2736] = 2736, + [2737] = 2591, + [2738] = 2671, + [2739] = 2739, + [2740] = 2671, + [2741] = 343, + [2742] = 2671, + [2743] = 340, + [2744] = 2671, + [2745] = 2671, + [2746] = 2671, + [2747] = 2747, + [2748] = 353, + [2749] = 2671, + [2750] = 2671, + [2751] = 2671, + [2752] = 2671, + [2753] = 2671, + [2754] = 345, + [2755] = 349, + [2756] = 2671, + [2757] = 2671, + [2758] = 2671, + [2759] = 2671, + [2760] = 2671, + [2761] = 2671, + [2762] = 350, + [2763] = 2671, + [2764] = 348, + [2765] = 359, + [2766] = 2671, + [2767] = 347, + [2768] = 361, + [2769] = 2592, + [2770] = 2579, + [2771] = 2591, + [2772] = 2592, + [2773] = 357, + [2774] = 344, + [2775] = 343, + [2776] = 344, + [2777] = 343, + [2778] = 340, + [2779] = 688, + [2780] = 691, + [2781] = 2781, + [2782] = 2608, + [2783] = 2601, + [2784] = 2654, + [2785] = 2645, + [2786] = 2671, + [2787] = 2583, + [2788] = 2593, + [2789] = 2671, + [2790] = 2790, + [2791] = 2671, + [2792] = 2597, + [2793] = 2671, + [2794] = 779, + [2795] = 2671, + [2796] = 778, + [2797] = 2593, + [2798] = 2583, + [2799] = 2586, + [2800] = 2592, [2801] = 2801, [2802] = 2802, - [2803] = 2803, - [2804] = 748, - [2805] = 748, - [2806] = 365, - [2807] = 2711, - [2808] = 367, - [2809] = 2715, - [2810] = 367, - [2811] = 784, - [2812] = 785, + [2803] = 340, + [2804] = 343, + [2805] = 344, + [2806] = 343, + [2807] = 2585, + [2808] = 2671, + [2809] = 2579, + [2810] = 344, + [2811] = 2811, + [2812] = 2747, [2813] = 2813, - [2814] = 2719, - [2815] = 357, - [2816] = 344, - [2817] = 370, - [2818] = 397, - [2819] = 2722, - [2820] = 345, - [2821] = 2716, - [2822] = 357, - [2823] = 349, - [2824] = 361, - [2825] = 2710, - [2826] = 343, - [2827] = 373, - [2828] = 372, - [2829] = 2829, - [2830] = 343, - [2831] = 344, - [2832] = 345, - [2833] = 2711, - [2834] = 2834, - [2835] = 344, - [2836] = 345, - [2837] = 364, - [2838] = 356, - [2839] = 372, - [2840] = 349, - [2841] = 2841, - [2842] = 370, - [2843] = 373, - [2844] = 371, - [2845] = 2710, - [2846] = 353, - [2847] = 2841, - [2848] = 343, - [2849] = 358, - [2850] = 361, - [2851] = 2711, - [2852] = 352, - [2853] = 350, - [2854] = 2720, - [2855] = 2716, - [2856] = 345, - [2857] = 344, - [2858] = 365, - [2859] = 2859, - [2860] = 344, - [2861] = 2714, - [2862] = 350, - [2863] = 369, - [2864] = 2813, + [2814] = 340, + [2815] = 2585, + [2816] = 2586, + [2817] = 2671, + [2818] = 2671, + [2819] = 2593, + [2820] = 2811, + [2821] = 2583, + [2822] = 688, + [2823] = 392, + [2824] = 2824, + [2825] = 2671, + [2826] = 691, + [2827] = 2654, + [2828] = 2645, + [2829] = 1151, + [2830] = 2593, + [2831] = 2583, + [2832] = 340, + [2833] = 343, + [2834] = 344, + [2835] = 2835, + [2836] = 2592, + [2837] = 2837, + [2838] = 2838, + [2839] = 2838, + [2840] = 344, + [2841] = 2645, + [2842] = 2842, + [2843] = 2838, + [2844] = 2654, + [2845] = 1079, + [2846] = 1073, + [2847] = 2601, + [2848] = 2838, + [2849] = 2849, + [2850] = 2608, + [2851] = 343, + [2852] = 2838, + [2853] = 2585, + [2854] = 2854, + [2855] = 2855, + [2856] = 2824, + [2857] = 2790, + [2858] = 343, + [2859] = 2838, + [2860] = 2860, + [2861] = 344, + [2862] = 2849, + [2863] = 2860, + [2864] = 2838, [2865] = 2865, - [2866] = 347, - [2867] = 368, - [2868] = 2714, - [2869] = 748, - [2870] = 747, - [2871] = 2710, - [2872] = 2872, - [2873] = 2715, - [2874] = 2719, - [2875] = 351, - [2876] = 395, - [2877] = 369, - [2878] = 351, - [2879] = 366, - [2880] = 368, - [2881] = 397, - [2882] = 2882, - [2883] = 747, - [2884] = 2779, - [2885] = 2714, - [2886] = 2886, - [2887] = 364, - [2888] = 371, - [2889] = 354, - [2890] = 2791, - [2891] = 345, - [2892] = 2722, - [2893] = 353, - [2894] = 2765, - [2895] = 395, - [2896] = 356, - [2897] = 343, - [2898] = 366, - [2899] = 2766, - [2900] = 2722, - [2901] = 354, - [2902] = 2720, - [2903] = 352, - [2904] = 358, - [2905] = 2719, - [2906] = 345, - [2907] = 397, - [2908] = 365, - [2909] = 2909, - [2910] = 1199, - [2911] = 367, - [2912] = 2912, - [2913] = 345, - [2914] = 2914, - [2915] = 344, - [2916] = 344, - [2917] = 343, - [2918] = 345, - [2919] = 2765, - [2920] = 2765, - [2921] = 2766, - [2922] = 370, + [2866] = 2866, + [2867] = 2835, + [2868] = 2838, + [2869] = 1151, + [2870] = 1079, + [2871] = 365, + [2872] = 1073, + [2873] = 343, + [2874] = 2838, + [2875] = 344, + [2876] = 2835, + [2877] = 2838, + [2878] = 2579, + [2879] = 2838, + [2880] = 2880, + [2881] = 2837, + [2882] = 2838, + [2883] = 2586, + [2884] = 366, + [2885] = 2885, + [2886] = 2838, + [2887] = 2838, + [2888] = 2838, + [2889] = 2889, + [2890] = 2838, + [2891] = 367, + [2892] = 363, + [2893] = 2838, + [2894] = 2838, + [2895] = 352, + [2896] = 358, + [2897] = 2838, + [2898] = 356, + [2899] = 2838, + [2900] = 2838, + [2901] = 361, + [2902] = 354, + [2903] = 2838, + [2904] = 2837, + [2905] = 2838, + [2906] = 2838, + [2907] = 2838, + [2908] = 2838, + [2909] = 2838, + [2910] = 2601, + [2911] = 2838, + [2912] = 2855, + [2913] = 2838, + [2914] = 2608, + [2915] = 2838, + [2916] = 2838, + [2917] = 2854, + [2918] = 353, + [2919] = 2838, + [2920] = 2838, + [2921] = 2838, + [2922] = 2922, [2923] = 349, - [2924] = 2791, - [2925] = 2714, - [2926] = 364, - [2927] = 2779, - [2928] = 371, - [2929] = 351, - [2930] = 344, - [2931] = 397, - [2932] = 2766, - [2933] = 358, - [2934] = 2914, - [2935] = 2791, - [2936] = 2909, - [2937] = 2937, - [2938] = 372, - [2939] = 373, - [2940] = 2779, - [2941] = 2715, - [2942] = 2942, - [2943] = 2943, - [2944] = 2944, - [2945] = 2710, - [2946] = 356, - [2947] = 2947, - [2948] = 2937, - [2949] = 1199, - [2950] = 2950, - [2951] = 1137, - [2952] = 354, - [2953] = 2720, - [2954] = 2954, - [2955] = 747, - [2956] = 2909, - [2957] = 2943, - [2958] = 350, - [2959] = 2912, - [2960] = 345, - [2961] = 1194, - [2962] = 361, - [2963] = 2944, - [2964] = 366, - [2965] = 344, - [2966] = 2791, - [2967] = 2937, - [2968] = 1194, - [2969] = 357, - [2970] = 2886, - [2971] = 2765, - [2972] = 2766, - [2973] = 748, - [2974] = 2799, - [2975] = 1137, - [2976] = 2943, - [2977] = 2722, - [2978] = 2944, - [2979] = 353, - [2980] = 352, - [2981] = 368, - [2982] = 369, - [2983] = 2779, - [2984] = 2984, + [2924] = 2924, + [2925] = 2838, + [2926] = 691, + [2927] = 688, + [2928] = 2838, + [2929] = 2929, + [2930] = 2930, + [2931] = 346, + [2932] = 2838, + [2933] = 2838, + [2934] = 2838, + [2935] = 2838, + [2936] = 2838, + [2937] = 2838, + [2938] = 2838, + [2939] = 2939, + [2940] = 348, + [2941] = 2838, + [2942] = 2838, + [2943] = 2885, + [2944] = 2939, + [2945] = 2645, + [2946] = 345, + [2947] = 2654, + [2948] = 2930, + [2949] = 350, + [2950] = 2865, + [2951] = 2924, + [2952] = 2601, + [2953] = 359, + [2954] = 2608, + [2955] = 347, + [2956] = 2838, + [2957] = 2849, + [2958] = 2838, + [2959] = 2854, + [2960] = 2929, + [2961] = 357, + [2962] = 392, + [2963] = 392, + [2964] = 2838, + [2965] = 2965, + [2966] = 344, + [2967] = 2967, + [2968] = 2968, + [2969] = 2969, + [2970] = 2970, + [2971] = 2922, + [2972] = 2972, + [2973] = 2889, + [2974] = 2880, + [2975] = 2975, + [2976] = 2976, + [2977] = 2977, + [2978] = 2978, + [2979] = 2979, + [2980] = 2824, + [2981] = 2981, + [2982] = 2982, + [2983] = 386, + [2984] = 2977, [2985] = 2985, [2986] = 2986, - [2987] = 343, + [2987] = 2987, [2988] = 2988, - [2989] = 2791, + [2989] = 2989, [2990] = 2990, [2991] = 2991, [2992] = 2992, - [2993] = 2993, - [2994] = 2985, + [2993] = 2979, + [2994] = 2986, [2995] = 2995, [2996] = 2996, [2997] = 2997, - [2998] = 2799, - [2999] = 2999, - [3000] = 2986, - [3001] = 2992, - [3002] = 3002, + [2998] = 2987, + [2999] = 2981, + [3000] = 2995, + [3001] = 2982, + [3002] = 2968, [3003] = 3003, [3004] = 3004, - [3005] = 3005, - [3006] = 2947, - [3007] = 2950, - [3008] = 2993, - [3009] = 3009, - [3010] = 2942, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 344, - [3017] = 345, - [3018] = 3015, - [3019] = 3019, - [3020] = 344, - [3021] = 3003, + [3005] = 2965, + [3006] = 3006, + [3007] = 3007, + [3008] = 3008, + [3009] = 3004, + [3010] = 2988, + [3011] = 3008, + [3012] = 3003, + [3013] = 2985, + [3014] = 343, + [3015] = 2790, + [3016] = 2996, + [3017] = 3017, + [3018] = 2824, + [3019] = 2969, + [3020] = 3020, + [3021] = 3021, [3022] = 3022, - [3023] = 3023, - [3024] = 345, + [3023] = 3006, + [3024] = 3024, [3025] = 3025, [3026] = 3026, - [3027] = 3027, - [3028] = 2990, - [3029] = 3029, - [3030] = 2766, - [3031] = 3031, - [3032] = 2886, - [3033] = 3033, - [3034] = 2886, - [3035] = 3022, - [3036] = 3025, - [3037] = 2991, - [3038] = 3038, - [3039] = 3039, + [3027] = 2967, + [3028] = 3028, + [3029] = 2790, + [3030] = 3030, + [3031] = 2978, + [3032] = 3017, + [3033] = 2970, + [3034] = 2645, + [3035] = 3007, + [3036] = 3036, + [3037] = 2654, + [3038] = 2975, + [3039] = 2824, [3040] = 3040, - [3041] = 3041, + [3041] = 3020, [3042] = 3042, [3043] = 3043, [3044] = 3044, - [3045] = 3041, - [3046] = 2997, - [3047] = 3047, - [3048] = 3048, - [3049] = 2799, - [3050] = 3050, - [3051] = 3013, - [3052] = 3039, - [3053] = 3012, - [3054] = 2995, - [3055] = 3014, - [3056] = 3056, - [3057] = 3004, - [3058] = 3044, - [3059] = 2765, - [3060] = 2779, - [3061] = 3011, - [3062] = 3040, - [3063] = 3002, - [3064] = 2988, - [3065] = 3065, - [3066] = 3066, - [3067] = 3027, - [3068] = 3019, - [3069] = 3043, - [3070] = 3009, - [3071] = 3031, - [3072] = 3033, - [3073] = 2996, - [3074] = 2984, - [3075] = 3038, - [3076] = 3048, - [3077] = 395, - [3078] = 3078, - [3079] = 3042, - [3080] = 3080, - [3081] = 3050, - [3082] = 3066, - [3083] = 2799, - [3084] = 3056, - [3085] = 3023, - [3086] = 3080, - [3087] = 3026, - [3088] = 3065, - [3089] = 3078, - [3090] = 1140, - [3091] = 2886, - [3092] = 3029, - [3093] = 347, - [3094] = 345, - [3095] = 352, + [3045] = 2601, + [3046] = 2976, + [3047] = 3040, + [3048] = 3030, + [3049] = 2989, + [3050] = 3028, + [3051] = 3024, + [3052] = 2990, + [3053] = 2972, + [3054] = 3044, + [3055] = 3043, + [3056] = 3042, + [3057] = 3021, + [3058] = 2991, + [3059] = 3022, + [3060] = 3025, + [3061] = 2790, + [3062] = 3026, + [3063] = 2608, + [3064] = 3036, + [3065] = 2997, + [3066] = 2992, + [3067] = 1093, + [3068] = 3068, + [3069] = 2889, + [3070] = 3068, + [3071] = 340, + [3072] = 2922, + [3073] = 2880, + [3074] = 2880, + [3075] = 343, + [3076] = 344, + [3077] = 2922, + [3078] = 340, + [3079] = 3068, + [3080] = 342, + [3081] = 392, + [3082] = 2790, + [3083] = 2824, + [3084] = 779, + [3085] = 778, + [3086] = 2880, + [3087] = 3087, + [3088] = 3087, + [3089] = 340, + [3090] = 2889, + [3091] = 779, + [3092] = 778, + [3093] = 343, + [3094] = 2922, + [3095] = 3087, [3096] = 344, - [3097] = 343, - [3098] = 785, - [3099] = 2886, - [3100] = 356, - [3101] = 2799, - [3102] = 784, - [3103] = 345, - [3104] = 367, - [3105] = 397, - [3106] = 3106, - [3107] = 366, - [3108] = 3106, - [3109] = 371, - [3110] = 2950, - [3111] = 2942, - [3112] = 370, - [3113] = 349, - [3114] = 347, - [3115] = 368, - [3116] = 343, - [3117] = 369, - [3118] = 351, - [3119] = 2947, - [3120] = 344, - [3121] = 357, - [3122] = 365, - [3123] = 2947, - [3124] = 2950, - [3125] = 354, - [3126] = 3126, - [3127] = 3126, - [3128] = 3106, - [3129] = 2942, - [3130] = 353, - [3131] = 3126, - [3132] = 364, - [3133] = 350, - [3134] = 2942, - [3135] = 2950, + [3097] = 2889, + [3098] = 3098, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 357, + [3103] = 3103, + [3104] = 361, + [3105] = 3105, + [3106] = 365, + [3107] = 347, + [3108] = 3108, + [3109] = 2592, + [3110] = 3110, + [3111] = 366, + [3112] = 3112, + [3113] = 3113, + [3114] = 340, + [3115] = 3115, + [3116] = 3116, + [3117] = 367, + [3118] = 363, + [3119] = 2579, + [3120] = 2593, + [3121] = 3121, + [3122] = 359, + [3123] = 2880, + [3124] = 2889, + [3125] = 3125, + [3126] = 2922, + [3127] = 3127, + [3128] = 352, + [3129] = 349, + [3130] = 348, + [3131] = 356, + [3132] = 2586, + [3133] = 691, + [3134] = 344, + [3135] = 350, [3136] = 343, - [3137] = 358, - [3138] = 785, - [3139] = 784, - [3140] = 373, - [3141] = 372, - [3142] = 361, - [3143] = 2947, - [3144] = 3144, - [3145] = 3144, - [3146] = 3146, - [3147] = 3144, - [3148] = 2715, - [3149] = 3149, - [3150] = 353, - [3151] = 747, - [3152] = 3144, - [3153] = 356, + [3137] = 340, + [3138] = 3138, + [3139] = 340, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 2585, + [3145] = 2593, + [3146] = 2583, + [3147] = 358, + [3148] = 3148, + [3149] = 354, + [3150] = 3150, + [3151] = 3151, + [3152] = 3152, + [3153] = 688, [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 2942, - [3158] = 3158, - [3159] = 3144, + [3155] = 346, + [3156] = 345, + [3157] = 353, + [3158] = 2592, + [3159] = 3105, [3160] = 3160, - [3161] = 352, - [3162] = 2950, + [3161] = 3105, + [3162] = 3162, [3163] = 3163, - [3164] = 3144, - [3165] = 3165, - [3166] = 3144, - [3167] = 357, - [3168] = 3168, - [3169] = 2722, - [3170] = 358, - [3171] = 361, - [3172] = 3144, - [3173] = 3144, - [3174] = 351, - [3175] = 3175, - [3176] = 3144, - [3177] = 3177, - [3178] = 371, - [3179] = 2947, - [3180] = 364, - [3181] = 3144, - [3182] = 3144, - [3183] = 354, - [3184] = 3144, - [3185] = 3144, - [3186] = 748, - [3187] = 3144, - [3188] = 3188, + [3164] = 386, + [3165] = 2601, + [3166] = 2608, + [3167] = 2608, + [3168] = 2601, + [3169] = 3169, + [3170] = 2654, + [3171] = 2645, + [3172] = 2586, + [3173] = 2654, + [3174] = 3174, + [3175] = 2645, + [3176] = 2583, + [3177] = 2579, + [3178] = 3178, + [3179] = 3179, + [3180] = 343, + [3181] = 3181, + [3182] = 3182, + [3183] = 344, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3187, + [3188] = 342, [3189] = 3189, [3190] = 3190, - [3191] = 3144, - [3192] = 3144, - [3193] = 3144, - [3194] = 3144, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, + [3194] = 3194, [3195] = 3195, - [3196] = 3144, - [3197] = 3144, - [3198] = 3144, - [3199] = 3199, - [3200] = 3144, - [3201] = 3144, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 344, + [3200] = 3200, + [3201] = 3201, [3202] = 3202, [3203] = 3203, [3204] = 3204, - [3205] = 3144, - [3206] = 370, - [3207] = 3144, - [3208] = 3144, - [3209] = 367, - [3210] = 3203, + [3205] = 3205, + [3206] = 3206, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 3210, [3211] = 3211, - [3212] = 349, - [3213] = 3144, - [3214] = 395, - [3215] = 2720, - [3216] = 3144, + [3212] = 343, + [3213] = 3213, + [3214] = 3178, + [3215] = 3215, + [3216] = 3216, [3217] = 3217, - [3218] = 3218, - [3219] = 3144, + [3218] = 2585, + [3219] = 3219, [3220] = 3220, - [3221] = 2720, - [3222] = 372, - [3223] = 3144, - [3224] = 3224, - [3225] = 2719, - [3226] = 2715, - [3227] = 373, - [3228] = 3144, - [3229] = 350, - [3230] = 365, - [3231] = 369, - [3232] = 3144, - [3233] = 343, - [3234] = 344, - [3235] = 368, - [3236] = 345, - [3237] = 3144, + [3221] = 3221, + [3222] = 3222, + [3223] = 3223, + [3224] = 340, + [3225] = 3225, + [3226] = 3226, + [3227] = 3227, + [3228] = 3228, + [3229] = 3229, + [3230] = 2593, + [3231] = 2592, + [3232] = 3232, + [3233] = 3233, + [3234] = 3234, + [3235] = 3235, + [3236] = 3236, + [3237] = 688, [3238] = 3238, - [3239] = 343, - [3240] = 3144, + [3239] = 3239, + [3240] = 691, [3241] = 3241, - [3242] = 3146, - [3243] = 3144, - [3244] = 3144, - [3245] = 366, - [3246] = 3144, - [3247] = 3144, + [3242] = 1093, + [3243] = 344, + [3244] = 3244, + [3245] = 3245, + [3246] = 3246, + [3247] = 343, [3248] = 3248, - [3249] = 3144, - [3250] = 3250, + [3249] = 3249, + [3250] = 342, [3251] = 3251, - [3252] = 3144, + [3252] = 3252, [3253] = 3253, [3254] = 3254, - [3255] = 3163, - [3256] = 3256, - [3257] = 3154, - [3258] = 3144, - [3259] = 3144, - [3260] = 343, - [3261] = 3144, - [3262] = 2714, - [3263] = 3144, - [3264] = 3156, - [3265] = 3203, - [3266] = 3144, - [3267] = 3267, - [3268] = 3144, - [3269] = 2710, - [3270] = 3248, - [3271] = 3144, - [3272] = 3144, - [3273] = 3144, - [3274] = 3220, - [3275] = 3275, - [3276] = 3276, - [3277] = 3275, - [3278] = 3278, - [3279] = 3275, - [3280] = 3275, - [3281] = 3275, - [3282] = 3282, - [3283] = 3278, - [3284] = 3278, - [3285] = 3285, - [3286] = 347, - [3287] = 3287, - [3288] = 3275, - [3289] = 2722, - [3290] = 3290, - [3291] = 3275, - [3292] = 3292, - [3293] = 3278, - [3294] = 2791, - [3295] = 3275, - [3296] = 3278, - [3297] = 3275, - [3298] = 3278, - [3299] = 3299, - [3300] = 3300, - [3301] = 3278, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3275, - [3306] = 3306, - [3307] = 3278, - [3308] = 3278, - [3309] = 3275, - [3310] = 3310, - [3311] = 3275, - [3312] = 3278, - [3313] = 3313, - [3314] = 3314, - [3315] = 3278, - [3316] = 3316, - [3317] = 3275, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3275, - [3322] = 3278, - [3323] = 3278, - [3324] = 3278, - [3325] = 3275, - [3326] = 3278, - [3327] = 3275, - [3328] = 3328, - [3329] = 3278, - [3330] = 2766, - [3331] = 3275, - [3332] = 345, - [3333] = 3278, - [3334] = 344, - [3335] = 3275, - [3336] = 3336, - [3337] = 3337, - [3338] = 3275, - [3339] = 3275, - [3340] = 3278, - [3341] = 3278, - [3342] = 3275, - [3343] = 3275, - [3344] = 3344, - [3345] = 2720, - [3346] = 3346, - [3347] = 3278, - [3348] = 3275, - [3349] = 3275, - [3350] = 3278, - [3351] = 3278, - [3352] = 3278, - [3353] = 3278, - [3354] = 3275, - [3355] = 1140, - [3356] = 3278, - [3357] = 3278, - [3358] = 3275, - [3359] = 3278, - [3360] = 2719, - [3361] = 3275, - [3362] = 3362, - [3363] = 3363, - [3364] = 343, - [3365] = 3365, - [3366] = 3275, - [3367] = 3278, - [3368] = 2710, - [3369] = 3275, - [3370] = 3302, - [3371] = 2765, - [3372] = 3275, + [3255] = 2645, + [3256] = 346, + [3257] = 365, + [3258] = 349, + [3259] = 352, + [3260] = 366, + [3261] = 359, + [3262] = 353, + [3263] = 347, + [3264] = 346, + [3265] = 361, + [3266] = 2747, + [3267] = 361, + [3268] = 365, + [3269] = 357, + [3270] = 357, + [3271] = 2824, + [3272] = 348, + [3273] = 349, + [3274] = 2790, + [3275] = 350, + [3276] = 367, + [3277] = 3277, + [3278] = 363, + [3279] = 363, + [3280] = 343, + [3281] = 345, + [3282] = 342, + [3283] = 352, + [3284] = 367, + [3285] = 358, + [3286] = 354, + [3287] = 2608, + [3288] = 2601, + [3289] = 392, + [3290] = 358, + [3291] = 386, + [3292] = 348, + [3293] = 344, + [3294] = 345, + [3295] = 356, + [3296] = 366, + [3297] = 859, + [3298] = 2811, + [3299] = 354, + [3300] = 350, + [3301] = 2654, + [3302] = 359, + [3303] = 2790, + [3304] = 2824, + [3305] = 356, + [3306] = 353, + [3307] = 347, + [3308] = 386, + [3309] = 347, + [3310] = 363, + [3311] = 350, + [3312] = 346, + [3313] = 348, + [3314] = 2889, + [3315] = 2790, + [3316] = 366, + [3317] = 353, + [3318] = 354, + [3319] = 357, + [3320] = 359, + [3321] = 330, + [3322] = 345, + [3323] = 356, + [3324] = 2747, + [3325] = 2824, + [3326] = 2811, + [3327] = 358, + [3328] = 367, + [3329] = 2922, + [3330] = 352, + [3331] = 386, + [3332] = 331, + [3333] = 2880, + [3334] = 392, + [3335] = 365, + [3336] = 392, + [3337] = 349, + [3338] = 361, + [3339] = 2889, + [3340] = 2922, + [3341] = 2986, + [3342] = 1079, + [3343] = 2988, + [3344] = 392, + [3345] = 2982, + [3346] = 2981, + [3347] = 1151, + [3348] = 2979, + [3349] = 2992, + [3350] = 2991, + [3351] = 2990, + [3352] = 1073, + [3353] = 2880, + [3354] = 3008, + [3355] = 3020, + [3356] = 2975, + [3357] = 2997, + [3358] = 3003, + [3359] = 2981, + [3360] = 2989, + [3361] = 2979, + [3362] = 3036, + [3363] = 2996, + [3364] = 3006, + [3365] = 2965, + [3366] = 3007, + [3367] = 2982, + [3368] = 2992, + [3369] = 3369, + [3370] = 2985, + [3371] = 3017, + [3372] = 2991, [3373] = 3373, - [3374] = 3374, - [3375] = 3278, - [3376] = 3278, - [3377] = 3275, - [3378] = 3275, - [3379] = 3379, - [3380] = 3278, - [3381] = 3278, - [3382] = 2765, - [3383] = 2766, - [3384] = 3275, - [3385] = 3385, - [3386] = 2779, - [3387] = 3387, - [3388] = 3388, - [3389] = 3278, - [3390] = 3278, - [3391] = 3391, - [3392] = 3278, - [3393] = 3275, - [3394] = 3275, - [3395] = 3275, - [3396] = 3396, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3278, - [3402] = 3278, - [3403] = 3275, + [3374] = 2972, + [3375] = 3024, + [3376] = 3043, + [3377] = 3021, + [3378] = 2977, + [3379] = 3004, + [3380] = 3030, + [3381] = 2990, + [3382] = 3042, + [3383] = 3044, + [3384] = 2969, + [3385] = 2970, + [3386] = 3028, + [3387] = 3040, + [3388] = 2967, + [3389] = 2988, + [3390] = 2968, + [3391] = 2986, + [3392] = 3022, + [3393] = 2976, + [3394] = 3025, + [3395] = 2995, + [3396] = 2978, + [3397] = 2987, + [3398] = 3026, + [3399] = 330, + [3400] = 331, + [3401] = 330, + [3402] = 331, + [3403] = 3403, [3404] = 3404, - [3405] = 3275, - [3406] = 2714, - [3407] = 3407, - [3408] = 3408, - [3409] = 3278, - [3410] = 1194, - [3411] = 3275, - [3412] = 347, - [3413] = 3275, - [3414] = 3278, - [3415] = 3415, - [3416] = 2791, - [3417] = 3417, - [3418] = 2779, - [3419] = 3278, - [3420] = 1199, - [3421] = 3275, - [3422] = 3275, - [3423] = 748, - [3424] = 3278, - [3425] = 3278, - [3426] = 3426, - [3427] = 3278, - [3428] = 3278, - [3429] = 3429, - [3430] = 747, - [3431] = 3275, - [3432] = 395, - [3433] = 345, - [3434] = 3275, - [3435] = 3278, - [3436] = 344, - [3437] = 3437, - [3438] = 3275, - [3439] = 3278, - [3440] = 3275, - [3441] = 3441, - [3442] = 3442, - [3443] = 345, - [3444] = 3278, - [3445] = 3278, - [3446] = 3275, - [3447] = 3447, - [3448] = 3448, + [3405] = 3404, + [3406] = 3403, + [3407] = 3404, + [3408] = 3404, + [3409] = 3403, + [3410] = 3403, + [3411] = 3403, + [3412] = 3404, + [3413] = 3403, + [3414] = 3403, + [3415] = 3403, + [3416] = 3403, + [3417] = 3404, + [3418] = 3404, + [3419] = 3404, + [3420] = 3403, + [3421] = 3404, + [3422] = 3404, + [3423] = 3403, + [3424] = 3404, + [3425] = 3403, + [3426] = 3404, + [3427] = 3404, + [3428] = 3403, + [3429] = 3403, + [3430] = 3404, + [3431] = 3403, + [3432] = 3403, + [3433] = 3404, + [3434] = 3403, + [3435] = 3403, + [3436] = 3436, + [3437] = 3404, + [3438] = 3404, + [3439] = 3404, + [3440] = 3403, + [3441] = 3404, + [3442] = 3403, + [3443] = 3404, + [3444] = 3404, + [3445] = 3404, + [3446] = 3404, + [3447] = 3403, + [3448] = 3403, [3449] = 3449, - [3450] = 3275, - [3451] = 2715, - [3452] = 3278, - [3453] = 3275, - [3454] = 3278, - [3455] = 3455, - [3456] = 3275, - [3457] = 3457, - [3458] = 3458, - [3459] = 3278, - [3460] = 3460, - [3461] = 3461, - [3462] = 3275, - [3463] = 3463, - [3464] = 3464, - [3465] = 344, - [3466] = 3278, - [3467] = 3275, - [3468] = 3468, - [3469] = 3278, - [3470] = 3275, - [3471] = 397, - [3472] = 3275, - [3473] = 3473, - [3474] = 3275, - [3475] = 3475, - [3476] = 3278, - [3477] = 3278, - [3478] = 3478, - [3479] = 3278, - [3480] = 3480, - [3481] = 3275, - [3482] = 3482, - [3483] = 365, - [3484] = 368, - [3485] = 2841, - [3486] = 357, - [3487] = 2799, - [3488] = 2886, - [3489] = 367, - [3490] = 345, - [3491] = 352, - [3492] = 2765, - [3493] = 364, - [3494] = 2766, - [3495] = 344, - [3496] = 365, - [3497] = 395, - [3498] = 353, - [3499] = 2779, - [3500] = 356, - [3501] = 2791, - [3502] = 395, - [3503] = 397, - [3504] = 361, - [3505] = 351, - [3506] = 370, - [3507] = 2799, - [3508] = 351, - [3509] = 367, - [3510] = 347, - [3511] = 900, - [3512] = 353, - [3513] = 364, - [3514] = 358, - [3515] = 350, - [3516] = 2813, - [3517] = 371, - [3518] = 372, - [3519] = 373, - [3520] = 356, - [3521] = 354, - [3522] = 350, - [3523] = 366, - [3524] = 369, - [3525] = 357, - [3526] = 361, - [3527] = 370, - [3528] = 349, - [3529] = 349, - [3530] = 372, - [3531] = 366, - [3532] = 373, - [3533] = 2886, - [3534] = 369, - [3535] = 354, - [3536] = 352, - [3537] = 368, - [3538] = 358, - [3539] = 371, - [3540] = 354, - [3541] = 367, - [3542] = 364, - [3543] = 372, - [3544] = 353, - [3545] = 358, - [3546] = 2841, - [3547] = 335, - [3548] = 357, - [3549] = 356, - [3550] = 373, - [3551] = 395, - [3552] = 371, - [3553] = 397, - [3554] = 334, - [3555] = 365, - [3556] = 361, - [3557] = 352, - [3558] = 2886, - [3559] = 397, - [3560] = 2813, - [3561] = 2942, - [3562] = 369, - [3563] = 349, - [3564] = 366, - [3565] = 351, - [3566] = 2950, - [3567] = 2947, - [3568] = 2799, - [3569] = 370, - [3570] = 350, - [3571] = 368, - [3572] = 1137, - [3573] = 3573, - [3574] = 1194, - [3575] = 3014, - [3576] = 2947, - [3577] = 3023, - [3578] = 1199, - [3579] = 3025, - [3580] = 397, - [3581] = 3012, - [3582] = 2950, - [3583] = 2996, - [3584] = 3022, - [3585] = 3004, - [3586] = 2942, - [3587] = 3043, - [3588] = 3066, - [3589] = 3029, - [3590] = 3050, - [3591] = 3033, - [3592] = 3027, - [3593] = 3015, - [3594] = 3080, - [3595] = 3042, - [3596] = 3002, - [3597] = 3022, - [3598] = 3023, - [3599] = 3025, - [3600] = 2996, - [3601] = 3014, - [3602] = 3004, - [3603] = 3043, - [3604] = 3012, - [3605] = 2993, - [3606] = 2992, - [3607] = 3041, - [3608] = 2997, - [3609] = 3009, - [3610] = 3044, - [3611] = 2985, - [3612] = 3011, - [3613] = 2995, - [3614] = 3065, - [3615] = 3056, - [3616] = 3019, - [3617] = 3078, - [3618] = 3031, - [3619] = 3039, - [3620] = 2986, - [3621] = 2991, - [3622] = 2988, - [3623] = 3026, - [3624] = 3013, - [3625] = 2990, - [3626] = 3038, - [3627] = 3048, - [3628] = 3040, - [3629] = 2984, - [3630] = 3003, - [3631] = 335, - [3632] = 334, - [3633] = 334, - [3634] = 335, - [3635] = 3635, - [3636] = 3635, - [3637] = 3637, - [3638] = 3637, - [3639] = 3637, - [3640] = 3635, - [3641] = 3635, - [3642] = 3635, - [3643] = 3637, - [3644] = 3637, - [3645] = 3637, - [3646] = 3635, - [3647] = 3635, - [3648] = 3637, - [3649] = 3637, - [3650] = 3635, - [3651] = 3637, - [3652] = 3635, - [3653] = 3635, - [3654] = 3635, - [3655] = 3637, - [3656] = 3635, - [3657] = 3637, - [3658] = 3635, - [3659] = 3635, - [3660] = 3637, - [3661] = 3637, - [3662] = 3635, - [3663] = 3637, - [3664] = 3637, - [3665] = 3635, - [3666] = 3637, - [3667] = 3635, - [3668] = 3635, - [3669] = 3669, - [3670] = 3637, - [3671] = 3637, - [3672] = 3637, - [3673] = 3637, - [3674] = 3635, - [3675] = 3635, - [3676] = 3637, - [3677] = 3635, - [3678] = 3637, - [3679] = 3635, - [3680] = 3635, - [3681] = 3635, - [3682] = 3637, - [3683] = 3635, - [3684] = 3637, - [3685] = 3635, - [3686] = 3635, - [3687] = 3635, - [3688] = 3637, - [3689] = 3635, - [3690] = 3690, - [3691] = 3690, - [3692] = 3637, - [3693] = 3635, - [3694] = 3637, - [3695] = 3637, - [3696] = 3637, - [3697] = 3697, - [3698] = 3637, - [3699] = 3635, - [3700] = 3635, - [3701] = 3637, - [3702] = 3637, - [3703] = 3635, - [3704] = 3637, - [3705] = 3637, - [3706] = 3637, - [3707] = 3635, - [3708] = 3637, - [3709] = 3697, - [3710] = 3635, - [3711] = 3635, - [3712] = 3637, - [3713] = 3637, - [3714] = 3635, - [3715] = 3635, - [3716] = 3690, - [3717] = 3637, - [3718] = 3635, - [3719] = 3635, - [3720] = 3697, - [3721] = 3637, - [3722] = 3637, - [3723] = 3635, - [3724] = 3637, - [3725] = 3635, - [3726] = 3637, - [3727] = 3635, - [3728] = 3637, - [3729] = 3637, - [3730] = 3635, - [3731] = 3635, - [3732] = 3635, - [3733] = 3637, - [3734] = 3637, - [3735] = 3637, - [3736] = 3635, - [3737] = 3637, - [3738] = 3635, - [3739] = 3635, - [3740] = 3637, - [3741] = 3635, - [3742] = 3690, - [3743] = 3637, - [3744] = 3635, - [3745] = 3635, - [3746] = 3637, - [3747] = 3697, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3749, - [3752] = 3748, - [3753] = 3750, - [3754] = 3748, - [3755] = 3750, - [3756] = 3750, - [3757] = 3748, - [3758] = 3749, - [3759] = 3748, - [3760] = 3750, - [3761] = 3750, - [3762] = 3750, - [3763] = 3748, - [3764] = 3749, - [3765] = 3749, - [3766] = 3749, - [3767] = 3749, - [3768] = 3749, - [3769] = 3748, - [3770] = 3749, - [3771] = 3748, - [3772] = 3750, - [3773] = 3748, - [3774] = 3750, - [3775] = 3750, - [3776] = 3748, - [3777] = 3749, - [3778] = 3749, - [3779] = 3748, - [3780] = 3749, - [3781] = 3750, - [3782] = 3750, - [3783] = 3749, - [3784] = 3748, - [3785] = 3748, - [3786] = 3748, - [3787] = 3749, - [3788] = 3748, - [3789] = 3749, - [3790] = 3748, - [3791] = 3749, - [3792] = 3748, - [3793] = 3748, - [3794] = 3750, - [3795] = 3748, - [3796] = 3750, - [3797] = 3749, - [3798] = 3750, - [3799] = 3749, - [3800] = 3749, - [3801] = 3748, - [3802] = 3750, - [3803] = 3749, - [3804] = 3749, - [3805] = 3748, - [3806] = 3748, - [3807] = 3748, - [3808] = 3750, - [3809] = 3748, - [3810] = 3749, - [3811] = 3750, - [3812] = 3748, - [3813] = 3750, - [3814] = 3748, - [3815] = 3749, - [3816] = 3750, - [3817] = 3748, - [3818] = 3749, - [3819] = 3748, - [3820] = 3749, - [3821] = 3748, - [3822] = 3750, - [3823] = 3749, - [3824] = 3750, - [3825] = 3750, - [3826] = 3749, - [3827] = 3750, - [3828] = 3748, - [3829] = 3749, - [3830] = 3750, - [3831] = 3749, - [3832] = 3750, - [3833] = 3748, - [3834] = 3748, - [3835] = 3748, - [3836] = 3750, - [3837] = 3749, - [3838] = 3750, - [3839] = 3748, - [3840] = 3748, - [3841] = 3749, - [3842] = 3748, - [3843] = 3749, - [3844] = 3750, - [3845] = 3749, - [3846] = 3750, - [3847] = 3748, - [3848] = 3748, - [3849] = 3750, - [3850] = 3748, - [3851] = 3750, - [3852] = 3750, - [3853] = 3749, - [3854] = 3750, - [3855] = 3748, - [3856] = 3749, - [3857] = 3749, - [3858] = 3750, - [3859] = 3748, - [3860] = 3749, - [3861] = 3750, - [3862] = 3750, - [3863] = 3749, - [3864] = 3748, - [3865] = 3749, - [3866] = 3750, - [3867] = 3750, - [3868] = 3748, - [3869] = 3749, - [3870] = 3750, - [3871] = 3748, - [3872] = 3748, - [3873] = 3749, - [3874] = 3749, - [3875] = 3748, - [3876] = 3749, - [3877] = 3750, - [3878] = 3750, - [3879] = 3749, - [3880] = 3749, - [3881] = 3749, - [3882] = 3749, - [3883] = 3748, - [3884] = 3748, - [3885] = 3748, - [3886] = 3749, - [3887] = 3750, - [3888] = 3750, - [3889] = 3750, - [3890] = 3749, - [3891] = 3749, - [3892] = 3750, - [3893] = 3748, - [3894] = 3748, - [3895] = 3748, - [3896] = 3750, - [3897] = 3750, - [3898] = 3749, - [3899] = 3749, + [3450] = 3450, + [3451] = 3403, + [3452] = 3404, + [3453] = 3403, + [3454] = 3450, + [3455] = 3403, + [3456] = 3403, + [3457] = 3404, + [3458] = 3404, + [3459] = 3403, + [3460] = 3450, + [3461] = 3404, + [3462] = 3404, + [3463] = 3404, + [3464] = 3403, + [3465] = 3404, + [3466] = 3403, + [3467] = 3403, + [3468] = 3403, + [3469] = 3404, + [3470] = 3404, + [3471] = 3403, + [3472] = 3404, + [3473] = 3403, + [3474] = 3403, + [3475] = 3403, + [3476] = 3403, + [3477] = 3404, + [3478] = 3404, + [3479] = 3404, + [3480] = 3449, + [3481] = 3404, + [3482] = 3403, + [3483] = 3404, + [3484] = 3449, + [3485] = 3403, + [3486] = 3403, + [3487] = 3404, + [3488] = 3404, + [3489] = 3404, + [3490] = 3403, + [3491] = 3403, + [3492] = 3450, + [3493] = 3403, + [3494] = 3403, + [3495] = 3404, + [3496] = 3404, + [3497] = 3404, + [3498] = 3403, + [3499] = 3404, + [3500] = 3404, + [3501] = 3403, + [3502] = 3404, + [3503] = 3403, + [3504] = 3449, + [3505] = 3403, + [3506] = 3403, + [3507] = 3403, + [3508] = 3404, + [3509] = 3404, + [3510] = 3404, + [3511] = 3403, + [3512] = 3512, + [3513] = 3513, + [3514] = 3512, + [3515] = 3515, + [3516] = 3515, + [3517] = 3513, + [3518] = 3515, + [3519] = 3513, + [3520] = 3515, + [3521] = 3512, + [3522] = 3512, + [3523] = 3513, + [3524] = 3513, + [3525] = 3513, + [3526] = 3513, + [3527] = 3512, + [3528] = 3515, + [3529] = 3515, + [3530] = 3515, + [3531] = 3513, + [3532] = 3513, + [3533] = 3513, + [3534] = 3512, + [3535] = 3513, + [3536] = 3515, + [3537] = 3513, + [3538] = 3515, + [3539] = 3512, + [3540] = 3515, + [3541] = 3515, + [3542] = 3515, + [3543] = 3513, + [3544] = 3512, + [3545] = 3512, + [3546] = 3512, + [3547] = 3515, + [3548] = 3513, + [3549] = 3513, + [3550] = 3512, + [3551] = 3515, + [3552] = 3515, + [3553] = 3515, + [3554] = 3513, + [3555] = 3515, + [3556] = 3512, + [3557] = 3515, + [3558] = 3513, + [3559] = 3513, + [3560] = 3515, + [3561] = 3512, + [3562] = 3515, + [3563] = 3515, + [3564] = 3515, + [3565] = 3513, + [3566] = 3512, + [3567] = 3513, + [3568] = 3512, + [3569] = 3513, + [3570] = 3513, + [3571] = 3513, + [3572] = 3512, + [3573] = 3512, + [3574] = 3515, + [3575] = 3512, + [3576] = 3512, + [3577] = 3515, + [3578] = 3513, + [3579] = 3515, + [3580] = 3513, + [3581] = 3515, + [3582] = 3512, + [3583] = 3513, + [3584] = 3515, + [3585] = 3512, + [3586] = 3512, + [3587] = 3513, + [3588] = 3513, + [3589] = 3512, + [3590] = 3513, + [3591] = 3515, + [3592] = 3512, + [3593] = 3515, + [3594] = 3515, + [3595] = 3515, + [3596] = 3513, + [3597] = 3513, + [3598] = 3512, + [3599] = 3515, + [3600] = 3513, + [3601] = 3512, + [3602] = 3515, + [3603] = 3512, + [3604] = 3512, + [3605] = 3515, + [3606] = 3512, + [3607] = 3515, + [3608] = 3515, + [3609] = 3513, + [3610] = 3515, + [3611] = 3513, + [3612] = 3513, + [3613] = 3515, + [3614] = 3515, + [3615] = 3515, + [3616] = 3512, + [3617] = 3513, + [3618] = 3512, + [3619] = 3513, + [3620] = 3512, + [3621] = 3515, + [3622] = 3512, + [3623] = 3513, + [3624] = 3512, + [3625] = 3515, + [3626] = 3515, + [3627] = 3515, + [3628] = 3512, + [3629] = 3515, + [3630] = 3515, + [3631] = 3513, + [3632] = 3515, + [3633] = 3513, + [3634] = 3513, + [3635] = 3513, + [3636] = 3513, + [3637] = 3512, + [3638] = 3512, + [3639] = 3512, + [3640] = 3513, + [3641] = 3513, + [3642] = 3515, + [3643] = 3513, + [3644] = 3512, + [3645] = 3515, + [3646] = 3512, + [3647] = 3512, + [3648] = 3513, + [3649] = 3512, + [3650] = 3515, + [3651] = 3513, + [3652] = 3512, + [3653] = 3513, + [3654] = 3512, + [3655] = 3513, + [3656] = 3512, + [3657] = 3512, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3660, + [3663] = 3660, + [3664] = 3661, + [3665] = 3660, + [3666] = 3660, + [3667] = 3660, + [3668] = 3660, + [3669] = 3661, + [3670] = 3670, + [3671] = 3671, + [3672] = 3661, + [3673] = 3673, + [3674] = 3660, + [3675] = 3661, + [3676] = 3661, + [3677] = 3677, + [3678] = 3661, + [3679] = 3660, + [3680] = 3680, + [3681] = 3681, + [3682] = 365, + [3683] = 3683, + [3684] = 3684, + [3685] = 350, + [3686] = 358, + [3687] = 352, + [3688] = 366, + [3689] = 345, + [3690] = 367, + [3691] = 363, + [3692] = 3692, + [3693] = 340, + [3694] = 3694, + [3695] = 3695, + [3696] = 3696, + [3697] = 3696, + [3698] = 3698, + [3699] = 3696, + [3700] = 3700, + [3701] = 3696, + [3702] = 3696, + [3703] = 3696, + [3704] = 3696, + [3705] = 3696, + [3706] = 3696, + [3707] = 3698, + [3708] = 3696, + [3709] = 3700, + [3710] = 3696, + [3711] = 343, + [3712] = 3700, + [3713] = 3696, + [3714] = 3696, + [3715] = 3698, + [3716] = 3696, + [3717] = 3696, + [3718] = 3696, + [3719] = 3696, + [3720] = 3696, + [3721] = 344, + [3722] = 3696, + [3723] = 342, + [3724] = 361, + [3725] = 3725, + [3726] = 358, + [3727] = 346, + [3728] = 357, + [3729] = 350, + [3730] = 386, + [3731] = 3725, + [3732] = 356, + [3733] = 366, + [3734] = 352, + [3735] = 3735, + [3736] = 3736, + [3737] = 3735, + [3738] = 354, + [3739] = 347, + [3740] = 348, + [3741] = 345, + [3742] = 3725, + [3743] = 363, + [3744] = 367, + [3745] = 3735, + [3746] = 353, + [3747] = 3725, + [3748] = 349, + [3749] = 3725, + [3750] = 3725, + [3751] = 3735, + [3752] = 3735, + [3753] = 365, + [3754] = 3725, + [3755] = 3736, + [3756] = 3736, + [3757] = 3735, + [3758] = 3736, + [3759] = 3735, + [3760] = 3736, + [3761] = 3736, + [3762] = 363, + [3763] = 367, + [3764] = 358, + [3765] = 365, + [3766] = 3766, + [3767] = 3766, + [3768] = 359, + [3769] = 3736, + [3770] = 352, + [3771] = 3736, + [3772] = 366, + [3773] = 3766, + [3774] = 3735, + [3775] = 3725, + [3776] = 3776, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, + [3782] = 3780, + [3783] = 340, + [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 3780, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, + [3792] = 3792, + [3793] = 392, + [3794] = 3790, + [3795] = 3795, + [3796] = 340, + [3797] = 3797, + [3798] = 3790, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3802, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 1706, + [3808] = 3808, + [3809] = 342, + [3810] = 3810, + [3811] = 343, + [3812] = 344, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, + [3816] = 3804, + [3817] = 3803, + [3818] = 3806, + [3819] = 3819, + [3820] = 3806, + [3821] = 3821, + [3822] = 3822, + [3823] = 342, + [3824] = 3805, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 1693, + [3832] = 3832, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, + [3836] = 3819, + [3837] = 3837, + [3838] = 3825, + [3839] = 3804, + [3840] = 3840, + [3841] = 3803, + [3842] = 3840, + [3843] = 3843, + [3844] = 3804, + [3845] = 3803, + [3846] = 3819, + [3847] = 3819, + [3848] = 3825, + [3849] = 1765, + [3850] = 3850, + [3851] = 3805, + [3852] = 3852, + [3853] = 3825, + [3854] = 3854, + [3855] = 3840, + [3856] = 3856, + [3857] = 343, + [3858] = 1766, + [3859] = 344, + [3860] = 3860, + [3861] = 354, + [3862] = 352, + [3863] = 358, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 352, + [3868] = 358, + [3869] = 356, + [3870] = 354, + [3871] = 386, + [3872] = 3860, + [3873] = 3873, + [3874] = 1925, + [3875] = 1926, + [3876] = 1784, + [3877] = 345, + [3878] = 1819, + [3879] = 350, + [3880] = 3880, + [3881] = 365, + [3882] = 3882, + [3883] = 366, + [3884] = 3884, + [3885] = 359, + [3886] = 3886, + [3887] = 347, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 361, + [3892] = 349, + [3893] = 367, + [3894] = 3860, + [3895] = 3895, + [3896] = 363, + [3897] = 357, + [3898] = 3898, + [3899] = 353, [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3903, - [3904] = 3901, - [3905] = 3901, - [3906] = 3903, - [3907] = 3907, - [3908] = 3908, - [3909] = 3901, - [3910] = 3901, - [3911] = 3903, - [3912] = 3901, - [3913] = 3901, - [3914] = 3903, - [3915] = 3903, - [3916] = 3901, - [3917] = 3903, - [3918] = 3901, - [3919] = 3919, - [3920] = 370, - [3921] = 366, - [3922] = 3922, - [3923] = 3923, - [3924] = 357, - [3925] = 372, - [3926] = 3926, + [3901] = 346, + [3902] = 348, + [3903] = 352, + [3904] = 365, + [3905] = 3905, + [3906] = 347, + [3907] = 366, + [3908] = 367, + [3909] = 359, + [3910] = 3910, + [3911] = 3911, + [3912] = 363, + [3913] = 3913, + [3914] = 361, + [3915] = 386, + [3916] = 3916, + [3917] = 357, + [3918] = 348, + [3919] = 350, + [3920] = 358, + [3921] = 345, + [3922] = 353, + [3923] = 346, + [3924] = 3924, + [3925] = 356, + [3926] = 349, [3927] = 3927, - [3928] = 350, - [3929] = 368, - [3930] = 349, - [3931] = 373, - [3932] = 369, - [3933] = 361, - [3934] = 3934, - [3935] = 3935, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 3928, + [3932] = 3928, + [3933] = 3933, + [3934] = 3929, + [3935] = 3928, [3936] = 3936, - [3937] = 343, - [3938] = 3938, + [3937] = 3928, + [3938] = 3929, [3939] = 3939, - [3940] = 3939, - [3941] = 3939, - [3942] = 3942, - [3943] = 3943, - [3944] = 3939, - [3945] = 3939, - [3946] = 345, - [3947] = 3939, - [3948] = 3939, - [3949] = 3939, - [3950] = 3939, - [3951] = 347, - [3952] = 3943, - [3953] = 3939, - [3954] = 3942, - [3955] = 3939, - [3956] = 3942, + [3940] = 3856, + [3941] = 3856, + [3942] = 3928, + [3943] = 3928, + [3944] = 3944, + [3945] = 3945, + [3946] = 3929, + [3947] = 3947, + [3948] = 3948, + [3949] = 3928, + [3950] = 392, + [3951] = 3928, + [3952] = 3929, + [3953] = 3953, + [3954] = 3928, + [3955] = 3928, + [3956] = 3928, [3957] = 3939, - [3958] = 3943, - [3959] = 344, - [3960] = 3939, - [3961] = 3939, - [3962] = 3939, - [3963] = 3939, - [3964] = 3939, - [3965] = 3939, - [3966] = 3939, - [3967] = 350, + [3958] = 3928, + [3959] = 3959, + [3960] = 392, + [3961] = 3928, + [3962] = 3928, + [3963] = 3929, + [3964] = 3928, + [3965] = 3965, + [3966] = 3928, + [3967] = 3928, [3968] = 3968, [3969] = 3969, - [3970] = 365, - [3971] = 3971, - [3972] = 3968, - [3973] = 366, - [3974] = 372, - [3975] = 373, + [3970] = 3970, + [3971] = 3928, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 3929, [3976] = 3976, - [3977] = 3971, - [3978] = 372, - [3979] = 367, - [3980] = 354, - [3981] = 3971, - [3982] = 366, - [3983] = 361, - [3984] = 3968, - [3985] = 369, - [3986] = 350, - [3987] = 3976, - [3988] = 3976, - [3989] = 357, - [3990] = 352, - [3991] = 349, - [3992] = 3971, - [3993] = 370, - [3994] = 368, - [3995] = 3969, - [3996] = 358, - [3997] = 3968, - [3998] = 351, - [3999] = 353, - [4000] = 3968, - [4001] = 371, - [4002] = 3976, - [4003] = 349, - [4004] = 3976, - [4005] = 370, - [4006] = 356, - [4007] = 3971, - [4008] = 3971, - [4009] = 395, - [4010] = 369, - [4011] = 3971, - [4012] = 3968, - [4013] = 3976, - [4014] = 3969, - [4015] = 3968, - [4016] = 3968, - [4017] = 373, - [4018] = 3976, - [4019] = 368, - [4020] = 3971, - [4021] = 364, - [4022] = 3976, + [3977] = 3977, + [3978] = 3929, + [3979] = 3979, + [3980] = 3928, + [3981] = 3928, + [3982] = 3982, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, + [3986] = 3928, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 3929, + [3993] = 3928, + [3994] = 3929, + [3995] = 3929, + [3996] = 3996, + [3997] = 3997, + [3998] = 3928, + [3999] = 3929, + [4000] = 3929, + [4001] = 3930, + [4002] = 4002, + [4003] = 4003, + [4004] = 1765, + [4005] = 4005, + [4006] = 3928, + [4007] = 3928, + [4008] = 1766, + [4009] = 3928, + [4010] = 3928, + [4011] = 3929, + [4012] = 3928, + [4013] = 4013, + [4014] = 3928, + [4015] = 3929, + [4016] = 3928, + [4017] = 3928, + [4018] = 4018, + [4019] = 3929, + [4020] = 4020, + [4021] = 1693, + [4022] = 3928, [4023] = 4023, - [4024] = 4024, - [4025] = 4025, - [4026] = 4024, - [4027] = 4027, - [4028] = 4024, + [4024] = 3929, + [4025] = 3928, + [4026] = 3928, + [4027] = 3928, + [4028] = 4028, [4029] = 4029, - [4030] = 4030, - [4031] = 343, + [4030] = 3930, + [4031] = 3928, [4032] = 4032, - [4033] = 4033, - [4034] = 397, + [4033] = 3928, + [4034] = 3928, [4035] = 4035, - [4036] = 343, - [4037] = 4037, + [4036] = 3928, + [4037] = 3928, [4038] = 4038, [4039] = 4039, - [4040] = 4023, + [4040] = 3929, [4041] = 4041, [4042] = 4042, - [4043] = 4023, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, + [4043] = 4043, + [4044] = 3928, + [4045] = 3929, + [4046] = 3928, [4047] = 4047, [4048] = 4048, - [4049] = 4048, - [4050] = 4050, + [4049] = 4049, + [4050] = 3928, [4051] = 4051, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, + [4052] = 3928, + [4053] = 3929, + [4054] = 1706, [4055] = 4055, - [4056] = 4056, - [4057] = 4057, - [4058] = 4048, - [4059] = 4059, - [4060] = 4050, + [4056] = 3939, + [4057] = 3929, + [4058] = 4058, + [4059] = 3928, + [4060] = 3929, [4061] = 4061, [4062] = 4062, - [4063] = 4063, - [4064] = 4055, - [4065] = 4065, + [4063] = 3929, + [4064] = 3928, + [4065] = 3928, [4066] = 4066, - [4067] = 4052, - [4068] = 4056, - [4069] = 4050, - [4070] = 4052, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 347, - [4075] = 4051, - [4076] = 4076, - [4077] = 4056, - [4078] = 4052, - [4079] = 347, - [4080] = 345, - [4081] = 4059, - [4082] = 4048, - [4083] = 4083, - [4084] = 4050, - [4085] = 4085, - [4086] = 4059, - [4087] = 4055, - [4088] = 344, - [4089] = 345, - [4090] = 4051, - [4091] = 344, - [4092] = 4056, - [4093] = 352, - [4094] = 368, - [4095] = 4095, - [4096] = 4096, - [4097] = 358, - [4098] = 357, - [4099] = 4099, - [4100] = 4100, - [4101] = 4101, - [4102] = 361, - [4103] = 366, - [4104] = 4104, - [4105] = 351, - [4106] = 4106, - [4107] = 4107, - [4108] = 364, - [4109] = 4109, - [4110] = 369, - [4111] = 350, - [4112] = 356, - [4113] = 4113, - [4114] = 373, - [4115] = 372, - [4116] = 353, - [4117] = 366, - [4118] = 358, - [4119] = 4119, - [4120] = 364, - [4121] = 371, - [4122] = 349, - [4123] = 354, - [4124] = 370, - [4125] = 368, - [4126] = 4126, - [4127] = 369, - [4128] = 357, - [4129] = 4104, - [4130] = 395, - [4131] = 350, - [4132] = 354, - [4133] = 367, - [4134] = 4134, - [4135] = 4135, - [4136] = 371, - [4137] = 351, - [4138] = 370, - [4139] = 349, - [4140] = 4140, - [4141] = 365, - [4142] = 4142, - [4143] = 365, - [4144] = 372, - [4145] = 373, - [4146] = 4146, - [4147] = 4147, - [4148] = 356, - [4149] = 367, - [4150] = 4104, - [4151] = 361, - [4152] = 353, - [4153] = 352, - [4154] = 395, - [4155] = 4155, - [4156] = 4156, - [4157] = 4157, - [4158] = 4158, + [4067] = 4067, + [4068] = 4068, + [4069] = 4068, + [4070] = 4068, + [4071] = 4068, + [4072] = 4066, + [4073] = 4066, + [4074] = 4066, + [4075] = 4075, + [4076] = 4066, + [4077] = 4066, + [4078] = 4068, + [4079] = 366, + [4080] = 4080, + [4081] = 4066, + [4082] = 3866, + [4083] = 4068, + [4084] = 4066, + [4085] = 4068, + [4086] = 4066, + [4087] = 4066, + [4088] = 365, + [4089] = 356, + [4090] = 4066, + [4091] = 1632, + [4092] = 1819, + [4093] = 4075, + [4094] = 4066, + [4095] = 4066, + [4096] = 4066, + [4097] = 4068, + [4098] = 4066, + [4099] = 4066, + [4100] = 4068, + [4101] = 4066, + [4102] = 4066, + [4103] = 4103, + [4104] = 4068, + [4105] = 345, + [4106] = 4066, + [4107] = 4066, + [4108] = 4066, + [4109] = 350, + [4110] = 4066, + [4111] = 4066, + [4112] = 4068, + [4113] = 4068, + [4114] = 4066, + [4115] = 4066, + [4116] = 4068, + [4117] = 4066, + [4118] = 4080, + [4119] = 4067, + [4120] = 4066, + [4121] = 4066, + [4122] = 4066, + [4123] = 4066, + [4124] = 4066, + [4125] = 4068, + [4126] = 4066, + [4127] = 4066, + [4128] = 354, + [4129] = 4066, + [4130] = 4068, + [4131] = 4068, + [4132] = 4066, + [4133] = 4066, + [4134] = 4068, + [4135] = 4066, + [4136] = 4068, + [4137] = 4066, + [4138] = 4067, + [4139] = 4066, + [4140] = 4068, + [4141] = 4141, + [4142] = 4066, + [4143] = 4066, + [4144] = 4066, + [4145] = 4066, + [4146] = 4066, + [4147] = 4068, + [4148] = 4080, + [4149] = 4066, + [4150] = 4066, + [4151] = 4151, + [4152] = 4152, + [4153] = 3866, + [4154] = 4066, + [4155] = 4066, + [4156] = 4066, + [4157] = 1925, + [4158] = 4068, [4159] = 4159, - [4160] = 4160, - [4161] = 4161, - [4162] = 1617, - [4163] = 4161, - [4164] = 4161, - [4165] = 4158, - [4166] = 4158, - [4167] = 4156, - [4168] = 4161, - [4169] = 4169, - [4170] = 4158, - [4171] = 4161, + [4160] = 4066, + [4161] = 3873, + [4162] = 4066, + [4163] = 1926, + [4164] = 4068, + [4165] = 4068, + [4166] = 4075, + [4167] = 1784, + [4168] = 3873, + [4169] = 4066, + [4170] = 4170, + [4171] = 4171, [4172] = 4172, - [4173] = 4158, - [4174] = 4155, - [4175] = 4161, - [4176] = 4158, - [4177] = 4177, - [4178] = 4158, - [4179] = 4158, - [4180] = 4161, - [4181] = 4181, - [4182] = 4161, + [4173] = 4173, + [4174] = 4174, + [4175] = 4175, + [4176] = 4176, + [4177] = 4172, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 4180, + [4182] = 4182, [4183] = 4183, - [4184] = 4161, - [4185] = 4158, - [4186] = 4161, - [4187] = 4187, - [4188] = 4158, - [4189] = 4158, + [4184] = 4176, + [4185] = 4179, + [4186] = 4170, + [4187] = 4182, + [4188] = 4188, + [4189] = 4188, [4190] = 4190, - [4191] = 4191, - [4192] = 4156, - [4193] = 4158, - [4194] = 4161, - [4195] = 4158, - [4196] = 4161, - [4197] = 4161, - [4198] = 4158, - [4199] = 397, - [4200] = 4161, - [4201] = 4161, - [4202] = 4202, - [4203] = 4161, - [4204] = 4158, - [4205] = 4158, - [4206] = 4158, - [4207] = 4207, - [4208] = 4158, - [4209] = 4158, - [4210] = 4210, - [4211] = 4211, - [4212] = 4158, - [4213] = 4161, + [4191] = 4180, + [4192] = 4180, + [4193] = 4193, + [4194] = 4194, + [4195] = 1073, + [4196] = 4188, + [4197] = 4182, + [4198] = 4170, + [4199] = 4179, + [4200] = 4172, + [4201] = 4176, + [4202] = 4180, + [4203] = 1079, + [4204] = 4188, + [4205] = 4182, + [4206] = 4178, + [4207] = 4174, + [4208] = 4170, + [4209] = 4179, + [4210] = 4172, + [4211] = 4176, + [4212] = 4212, + [4213] = 4213, [4214] = 4214, [4215] = 4215, - [4216] = 4161, - [4217] = 4217, - [4218] = 4158, - [4219] = 4158, - [4220] = 4220, + [4216] = 4180, + [4217] = 4172, + [4218] = 4190, + [4219] = 4188, + [4220] = 4172, [4221] = 4221, - [4222] = 4158, - [4223] = 1601, + [4222] = 4182, + [4223] = 4223, [4224] = 4224, [4225] = 4225, [4226] = 4226, - [4227] = 4161, + [4227] = 4227, [4228] = 4228, - [4229] = 4229, - [4230] = 4158, - [4231] = 4073, - [4232] = 4158, - [4233] = 4233, - [4234] = 4158, - [4235] = 4158, - [4236] = 4158, - [4237] = 4161, - [4238] = 4158, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 1661, - [4246] = 4158, - [4247] = 4247, - [4248] = 397, - [4249] = 4158, - [4250] = 4158, - [4251] = 4251, - [4252] = 4158, - [4253] = 4158, - [4254] = 4254, - [4255] = 4158, - [4256] = 4158, - [4257] = 4257, - [4258] = 4161, - [4259] = 4259, - [4260] = 4158, - [4261] = 4261, - [4262] = 4262, - [4263] = 4263, - [4264] = 4264, - [4265] = 4265, - [4266] = 4158, - [4267] = 4267, - [4268] = 4158, - [4269] = 4269, - [4270] = 4158, - [4271] = 1663, - [4272] = 4158, - [4273] = 4273, - [4274] = 4158, - [4275] = 4275, - [4276] = 4158, - [4277] = 4158, - [4278] = 4155, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, - [4282] = 4158, - [4283] = 4158, - [4284] = 4158, - [4285] = 4285, - [4286] = 4286, - [4287] = 4073, - [4288] = 4161, - [4289] = 4158, - [4290] = 4290, - [4291] = 4158, - [4292] = 4161, - [4293] = 4158, - [4294] = 4294, - [4295] = 4295, - [4296] = 4294, - [4297] = 4297, - [4298] = 365, - [4299] = 367, - [4300] = 361, - [4301] = 4294, - [4302] = 350, - [4303] = 4294, - [4304] = 369, - [4305] = 368, - [4306] = 366, - [4307] = 4295, - [4308] = 357, - [4309] = 4294, - [4310] = 4294, - [4311] = 4295, - [4312] = 4294, - [4313] = 4294, - [4314] = 4294, - [4315] = 4294, - [4316] = 4294, - [4317] = 4295, - [4318] = 4294, - [4319] = 4294, - [4320] = 4297, - [4321] = 4295, - [4322] = 4322, - [4323] = 4294, - [4324] = 4294, - [4325] = 4294, - [4326] = 4294, - [4327] = 4327, - [4328] = 4294, - [4329] = 4294, - [4330] = 4294, - [4331] = 4294, - [4332] = 4294, - [4333] = 4126, - [4334] = 4294, - [4335] = 4297, - [4336] = 4294, - [4337] = 4294, - [4338] = 4338, - [4339] = 4294, - [4340] = 4134, - [4341] = 4294, - [4342] = 1744, - [4343] = 1749, - [4344] = 4294, - [4345] = 4294, - [4346] = 4294, - [4347] = 4294, - [4348] = 4134, - [4349] = 4126, - [4350] = 4294, - [4351] = 4351, - [4352] = 4351, - [4353] = 4294, - [4354] = 4294, - [4355] = 4294, - [4356] = 4356, - [4357] = 4294, - [4358] = 4295, - [4359] = 4295, - [4360] = 4295, - [4361] = 4294, - [4362] = 4294, - [4363] = 4295, - [4364] = 4295, - [4365] = 4294, - [4366] = 1839, - [4367] = 4295, - [4368] = 4294, - [4369] = 4295, - [4370] = 1899, - [4371] = 4294, - [4372] = 4295, - [4373] = 4295, - [4374] = 4374, - [4375] = 4294, - [4376] = 4295, - [4377] = 4294, - [4378] = 4294, - [4379] = 4295, - [4380] = 4380, - [4381] = 4294, - [4382] = 4295, - [4383] = 4295, - [4384] = 4384, - [4385] = 4294, - [4386] = 4295, - [4387] = 4295, - [4388] = 4356, - [4389] = 4294, - [4390] = 4351, - [4391] = 4295, - [4392] = 4294, - [4393] = 4294, - [4394] = 4295, - [4395] = 4294, - [4396] = 4295, - [4397] = 4294, + [4229] = 4193, + [4230] = 4172, + [4231] = 4170, + [4232] = 4179, + [4233] = 4176, + [4234] = 4188, + [4235] = 4188, + [4236] = 4182, + [4237] = 4170, + [4238] = 4179, + [4239] = 4172, + [4240] = 4176, + [4241] = 4180, + [4242] = 4180, + [4243] = 4188, + [4244] = 4171, + [4245] = 4175, + [4246] = 4223, + [4247] = 4182, + [4248] = 4172, + [4249] = 4170, + [4250] = 4179, + [4251] = 4176, + [4252] = 4180, + [4253] = 4176, + [4254] = 4188, + [4255] = 4179, + [4256] = 4182, + [4257] = 4172, + [4258] = 4178, + [4259] = 4170, + [4260] = 4170, + [4261] = 4174, + [4262] = 4182, + [4263] = 4179, + [4264] = 4176, + [4265] = 4180, + [4266] = 4172, + [4267] = 4170, + [4268] = 4182, + [4269] = 4188, + [4270] = 4212, + [4271] = 4213, + [4272] = 4179, + [4273] = 4215, + [4274] = 4176, + [4275] = 4172, + [4276] = 4172, + [4277] = 4190, + [4278] = 4180, + [4279] = 4221, + [4280] = 4188, + [4281] = 4182, + [4282] = 4214, + [4283] = 4170, + [4284] = 4172, + [4285] = 4179, + [4286] = 4176, + [4287] = 4193, + [4288] = 4188, + [4289] = 4180, + [4290] = 4173, + [4291] = 4179, + [4292] = 4170, + [4293] = 4172, + [4294] = 4182, + [4295] = 4188, + [4296] = 4179, + [4297] = 4178, + [4298] = 4170, + [4299] = 4182, + [4300] = 4188, + [4301] = 4179, + [4302] = 4172, + [4303] = 4170, + [4304] = 4182, + [4305] = 4188, + [4306] = 4188, + [4307] = 4226, + [4308] = 4308, + [4309] = 4179, + [4310] = 4172, + [4311] = 4179, + [4312] = 4224, + [4313] = 4182, + [4314] = 4188, + [4315] = 4182, + [4316] = 4170, + [4317] = 4179, + [4318] = 4172, + [4319] = 4179, + [4320] = 4194, + [4321] = 4170, + [4322] = 4182, + [4323] = 4188, + [4324] = 4176, + [4325] = 4179, + [4326] = 4172, + [4327] = 4170, + [4328] = 4225, + [4329] = 4329, + [4330] = 4308, + [4331] = 4182, + [4332] = 4188, + [4333] = 4180, + [4334] = 4172, + [4335] = 4179, + [4336] = 4170, + [4337] = 4337, + [4338] = 4214, + [4339] = 4339, + [4340] = 4172, + [4341] = 4173, + [4342] = 4188, + [4343] = 4343, + [4344] = 4182, + [4345] = 4188, + [4346] = 4172, + [4347] = 4329, + [4348] = 4182, + [4349] = 4170, + [4350] = 4179, + [4351] = 4337, + [4352] = 4172, + [4353] = 4180, + [4354] = 4176, + [4355] = 4179, + [4356] = 4170, + [4357] = 4176, + [4358] = 4172, + [4359] = 4182, + [4360] = 4188, + [4361] = 4170, + [4362] = 4180, + [4363] = 4176, + [4364] = 4172, + [4365] = 4179, + [4366] = 4170, + [4367] = 4180, + [4368] = 4182, + [4369] = 4174, + [4370] = 4172, + [4371] = 4188, + [4372] = 4188, + [4373] = 4373, + [4374] = 4182, + [4375] = 4375, + [4376] = 4172, + [4377] = 4170, + [4378] = 4378, + [4379] = 4180, + [4380] = 4176, + [4381] = 4179, + [4382] = 4172, + [4383] = 4170, + [4384] = 4182, + [4385] = 4188, + [4386] = 4386, + [4387] = 4387, + [4388] = 4172, + [4389] = 4180, + [4390] = 4390, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4172, + [4395] = 4171, + [4396] = 4396, + [4397] = 4397, [4398] = 4398, - [4399] = 4294, - [4400] = 4294, - [4401] = 4356, - [4402] = 4294, - [4403] = 4403, + [4399] = 4399, + [4400] = 4172, + [4401] = 4175, + [4402] = 4402, + [4403] = 4176, [4404] = 4404, - [4405] = 4405, - [4406] = 4406, - [4407] = 4407, + [4405] = 4176, + [4406] = 4172, + [4407] = 4180, [4408] = 4408, [4409] = 4409, [4410] = 4410, [4411] = 4411, - [4412] = 4412, - [4413] = 4413, + [4412] = 4172, + [4413] = 4176, [4414] = 4414, [4415] = 4415, [4416] = 4416, [4417] = 4417, - [4418] = 4406, - [4419] = 4419, + [4418] = 4172, + [4419] = 4179, [4420] = 4420, - [4421] = 4408, + [4421] = 4421, [4422] = 4422, - [4423] = 4409, - [4424] = 4406, - [4425] = 4425, - [4426] = 4406, - [4427] = 4404, - [4428] = 4416, - [4429] = 4403, - [4430] = 4417, - [4431] = 4431, - [4432] = 4406, - [4433] = 4408, - [4434] = 4434, - [4435] = 4435, - [4436] = 4409, - [4437] = 4420, + [4423] = 4423, + [4424] = 4172, + [4425] = 4170, + [4426] = 4426, + [4427] = 4180, + [4428] = 4428, + [4429] = 4182, + [4430] = 4172, + [4431] = 4188, + [4432] = 4188, + [4433] = 4433, + [4434] = 4180, + [4435] = 4176, + [4436] = 4172, + [4437] = 4179, [4438] = 4438, - [4439] = 4416, - [4440] = 4417, - [4441] = 4417, - [4442] = 4442, - [4443] = 4403, - [4444] = 4444, - [4445] = 4406, - [4446] = 4408, - [4447] = 4409, - [4448] = 4409, - [4449] = 4416, - [4450] = 4404, - [4451] = 4417, - [4452] = 4417, - [4453] = 4453, - [4454] = 4406, - [4455] = 4406, - [4456] = 4408, - [4457] = 4409, - [4458] = 4417, - [4459] = 4416, - [4460] = 4404, - [4461] = 4416, - [4462] = 4409, - [4463] = 4417, - [4464] = 4406, - [4465] = 4408, - [4466] = 4413, - [4467] = 4404, - [4468] = 4416, - [4469] = 4406, - [4470] = 4404, - [4471] = 4408, - [4472] = 4409, - [4473] = 4416, - [4474] = 4417, - [4475] = 4406, - [4476] = 4476, - [4477] = 4477, - [4478] = 4417, - [4479] = 4479, - [4480] = 4404, - [4481] = 4403, - [4482] = 4406, - [4483] = 4483, - [4484] = 4413, - [4485] = 4413, - [4486] = 4408, - [4487] = 4408, - [4488] = 4417, - [4489] = 4404, - [4490] = 4409, - [4491] = 4416, - [4492] = 4409, - [4493] = 4403, - [4494] = 4403, - [4495] = 4444, - [4496] = 4453, - [4497] = 4416, - [4498] = 4404, - [4499] = 4417, - [4500] = 4409, - [4501] = 4416, - [4502] = 4403, - [4503] = 4417, - [4504] = 4406, - [4505] = 4413, - [4506] = 4483, - [4507] = 4404, - [4508] = 4408, - [4509] = 4409, - [4510] = 4416, - [4511] = 4408, - [4512] = 4417, + [4439] = 4439, + [4440] = 4440, + [4441] = 4170, + [4442] = 4172, + [4443] = 4182, + [4444] = 4182, + [4445] = 4188, + [4446] = 4170, + [4447] = 4179, + [4448] = 4172, + [4449] = 4188, + [4450] = 4373, + [4451] = 4176, + [4452] = 4180, + [4453] = 4375, + [4454] = 4172, + [4455] = 4179, + [4456] = 4176, + [4457] = 4179, + [4458] = 4170, + [4459] = 4170, + [4460] = 4172, + [4461] = 4182, + [4462] = 4182, + [4463] = 4378, + [4464] = 4188, + [4465] = 4188, + [4466] = 4172, + [4467] = 4180, + [4468] = 4188, + [4469] = 4180, + [4470] = 4176, + [4471] = 4179, + [4472] = 4172, + [4473] = 4170, + [4474] = 4182, + [4475] = 4182, + [4476] = 4188, + [4477] = 4170, + [4478] = 4172, + [4479] = 4179, + [4480] = 4176, + [4481] = 4180, + [4482] = 4176, + [4483] = 4180, + [4484] = 4172, + [4485] = 4179, + [4486] = 4171, + [4487] = 4175, + [4488] = 4170, + [4489] = 4180, + [4490] = 4182, + [4491] = 4188, + [4492] = 4188, + [4493] = 4182, + [4494] = 4170, + [4495] = 348, + [4496] = 346, + [4497] = 4180, + [4498] = 4176, + [4499] = 4179, + [4500] = 4170, + [4501] = 4501, + [4502] = 4179, + [4503] = 4182, + [4504] = 4188, + [4505] = 4176, + [4506] = 4506, + [4507] = 4507, + [4508] = 4180, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, [4513] = 4513, - [4514] = 4403, + [4514] = 4180, [4515] = 4515, - [4516] = 4404, - [4517] = 4406, - [4518] = 4413, - [4519] = 4405, - [4520] = 4408, - [4521] = 4521, - [4522] = 4409, - [4523] = 4413, - [4524] = 4524, - [4525] = 4404, - [4526] = 4417, - [4527] = 4416, - [4528] = 4416, - [4529] = 4408, - [4530] = 4409, - [4531] = 4417, - [4532] = 4453, - [4533] = 4444, - [4534] = 4404, - [4535] = 4408, - [4536] = 4403, - [4537] = 4406, - [4538] = 4413, - [4539] = 4408, - [4540] = 4409, + [4516] = 4516, + [4517] = 4176, + [4518] = 4179, + [4519] = 4519, + [4520] = 4170, + [4521] = 4182, + [4522] = 4501, + [4523] = 4182, + [4524] = 4188, + [4525] = 358, + [4526] = 352, + [4527] = 4182, + [4528] = 4226, + [4529] = 4224, + [4530] = 4530, + [4531] = 4531, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 4535, + [4536] = 4536, + [4537] = 4537, + [4538] = 4538, + [4539] = 4539, + [4540] = 4540, [4541] = 4541, - [4542] = 4403, - [4543] = 4404, - [4544] = 4413, - [4545] = 4416, - [4546] = 4546, - [4547] = 4417, - [4548] = 4406, - [4549] = 4415, - [4550] = 4403, - [4551] = 4403, - [4552] = 4404, - [4553] = 4403, - [4554] = 4406, - [4555] = 4413, - [4556] = 4406, - [4557] = 4408, - [4558] = 4409, - [4559] = 4476, - [4560] = 4404, - [4561] = 4416, - [4562] = 4417, - [4563] = 4406, - [4564] = 4414, - [4565] = 4406, - [4566] = 4403, - [4567] = 4404, - [4568] = 4404, - [4569] = 4406, - [4570] = 4413, - [4571] = 4442, - [4572] = 4431, - [4573] = 4408, - [4574] = 4409, - [4575] = 4575, - [4576] = 4404, - [4577] = 4417, - [4578] = 4410, - [4579] = 4579, - [4580] = 4411, - [4581] = 4581, - [4582] = 4416, - [4583] = 4435, - [4584] = 4404, - [4585] = 4412, - [4586] = 4416, - [4587] = 4417, - [4588] = 4588, - [4589] = 4409, - [4590] = 4404, - [4591] = 4414, - [4592] = 4592, - [4593] = 4415, - [4594] = 4408, - [4595] = 4413, - [4596] = 4404, - [4597] = 4413, - [4598] = 4403, - [4599] = 4406, - [4600] = 4419, - [4601] = 4422, - [4602] = 4404, - [4603] = 4413, - [4604] = 4425, - [4605] = 4408, - [4606] = 4409, - [4607] = 4416, - [4608] = 4404, - [4609] = 4408, - [4610] = 4417, - [4611] = 4406, - [4612] = 4612, - [4613] = 4403, - [4614] = 4404, - [4615] = 4406, - [4616] = 4413, - [4617] = 4434, - [4618] = 4435, - [4619] = 4409, - [4620] = 4404, - [4621] = 4420, - [4622] = 4622, - [4623] = 4409, - [4624] = 4612, - [4625] = 4625, - [4626] = 4404, - [4627] = 4416, - [4628] = 4622, - [4629] = 4403, - [4630] = 4444, - [4631] = 4453, - [4632] = 4404, - [4633] = 4417, - [4634] = 4408, - [4635] = 4406, - [4636] = 4417, - [4637] = 4403, - [4638] = 4404, - [4639] = 4639, - [4640] = 4425, - [4641] = 4406, - [4642] = 4413, - [4643] = 4408, - [4644] = 4404, - [4645] = 4409, - [4646] = 4416, - [4647] = 4647, - [4648] = 4416, - [4649] = 4413, - [4650] = 4404, - [4651] = 4408, - [4652] = 4409, - [4653] = 4416, - [4654] = 4575, - [4655] = 4416, - [4656] = 4404, - [4657] = 4417, - [4658] = 4413, - [4659] = 4403, - [4660] = 4404, - [4661] = 4417, - [4662] = 4404, - [4663] = 4408, - [4664] = 4413, - [4665] = 4665, - [4666] = 4416, - [4667] = 4416, - [4668] = 4404, - [4669] = 4422, - [4670] = 4521, - [4671] = 4406, - [4672] = 4413, - [4673] = 4405, - [4674] = 4404, - [4675] = 4406, - [4676] = 4408, - [4677] = 4409, - [4678] = 4416, - [4679] = 4406, - [4680] = 4404, - [4681] = 4417, - [4682] = 4403, - [4683] = 4403, - [4684] = 4403, - [4685] = 4406, - [4686] = 4404, - [4687] = 4419, - [4688] = 4413, - [4689] = 4408, - [4690] = 4409, - [4691] = 4691, - [4692] = 4404, - [4693] = 4406, - [4694] = 4416, - [4695] = 4476, - [4696] = 4417, - [4697] = 4408, - [4698] = 4404, - [4699] = 4417, - [4700] = 4409, - [4701] = 4407, - [4702] = 4416, - [4703] = 4416, - [4704] = 4404, - [4705] = 4705, - [4706] = 4417, - [4707] = 4707, - [4708] = 4403, - [4709] = 4709, - [4710] = 4404, - [4711] = 4442, - [4712] = 4406, - [4713] = 4413, - [4714] = 4431, - [4715] = 4408, - [4716] = 4404, - [4717] = 4409, - [4718] = 4416, - [4719] = 4409, - [4720] = 4407, - [4721] = 4415, - [4722] = 4417, - [4723] = 4417, - [4724] = 4414, - [4725] = 4408, - [4726] = 4413, - [4727] = 4407, - [4728] = 4404, - [4729] = 4413, - [4730] = 4417, - [4731] = 4403, - [4732] = 4406, - [4733] = 4413, - [4734] = 4404, - [4735] = 4408, - [4736] = 4409, - [4737] = 4416, - [4738] = 4416, - [4739] = 4406, - [4740] = 4404, - [4741] = 4417, - [4742] = 4403, - [4743] = 4410, - [4744] = 4409, - [4745] = 4403, - [4746] = 4404, - [4747] = 4406, - [4748] = 4412, - [4749] = 4413, - [4750] = 4408, - [4751] = 4409, - [4752] = 4405, - [4753] = 4408, - [4754] = 4416, - [4755] = 4403, - [4756] = 4417, - [4757] = 4417, - [4758] = 4408, - [4759] = 4416, - [4760] = 4546, - [4761] = 4406, - [4762] = 4406, - [4763] = 4521, - [4764] = 4413, - [4765] = 4408, - [4766] = 4409, - [4767] = 4413, - [4768] = 4768, - [4769] = 4409, - [4770] = 4411, - [4771] = 4771, - [4772] = 4416, - [4773] = 4408, - [4774] = 4417, - [4775] = 4691, - [4776] = 4413, - [4777] = 4409, - [4778] = 4403, - [4779] = 4417, - [4780] = 4406, - [4781] = 4541, - [4782] = 4413, - [4783] = 4408, - [4784] = 4409, - [4785] = 4409, - [4786] = 4416, - [4787] = 4403, - [4788] = 4417, - [4789] = 4403, - [4790] = 4406, - [4791] = 4403, - [4792] = 4406, - [4793] = 4413, - [4794] = 4408, - [4795] = 4409, - [4796] = 4416, - [4797] = 4417, - [4798] = 4417, - [4799] = 4403, - [4800] = 4416, - [4801] = 4403, - [4802] = 4406, - [4803] = 4413, - [4804] = 4408, - [4805] = 4409, - [4806] = 4416, - [4807] = 4771, - [4808] = 4409, - [4809] = 4417, - [4810] = 4408, - [4811] = 4413, - [4812] = 4403, - [4813] = 4406, - [4814] = 4403, - [4815] = 4406, - [4816] = 4413, - [4817] = 4408, - [4818] = 4409, - [4819] = 4416, - [4820] = 4406, - [4821] = 4417, - [4822] = 4403, - [4823] = 4622, - [4824] = 4403, - [4825] = 4406, - [4826] = 4413, - [4827] = 4408, - [4828] = 4409, - [4829] = 4829, - [4830] = 4612, - [4831] = 4416, - [4832] = 4417, - [4833] = 4575, - [4834] = 4403, - [4835] = 4406, - [4836] = 4404, - [4837] = 4413, - [4838] = 4408, - [4839] = 4409, - [4840] = 4416, - [4841] = 4417, - [4842] = 637, - [4843] = 4413, - [4844] = 4768, - [4845] = 4417, - [4846] = 4416, - [4847] = 4771, - [4848] = 4848, - [4849] = 4408, - [4850] = 4408, - [4851] = 4691, - [4852] = 4408, - [4853] = 4413, - [4854] = 4403, - [4855] = 4406, - [4856] = 4541, - [4857] = 4413, - [4858] = 4408, - [4859] = 4409, - [4860] = 4416, - [4861] = 4406, - [4862] = 4417, - [4863] = 4403, - [4864] = 4476, - [4865] = 4409, - [4866] = 4434, - [4867] = 4403, - [4868] = 4406, - [4869] = 4413, - [4870] = 4408, - [4871] = 4409, - [4872] = 4416, - [4873] = 4873, - [4874] = 4874, - [4875] = 4417, - [4876] = 4416, - [4877] = 4417, - [4878] = 4417, - [4879] = 4416, - [4880] = 4403, - [4881] = 4406, - [4882] = 4413, - [4883] = 4408, - [4884] = 4409, - [4885] = 4409, - [4886] = 4416, - [4887] = 4408, - [4888] = 4417, - [4889] = 4413, - [4890] = 4403, - [4891] = 4406, - [4892] = 4403, - [4893] = 4403, - [4894] = 4406, - [4895] = 4413, - [4896] = 4483, - [4897] = 4408, - [4898] = 4409, - [4899] = 4416, - [4900] = 4417, - [4901] = 4409, - [4902] = 4771, - [4903] = 4546, - [4904] = 4406, - [4905] = 4691, - [4906] = 4417, - [4907] = 4417, - [4908] = 4403, - [4909] = 4406, - [4910] = 4541, - [4911] = 4413, - [4912] = 4416, - [4913] = 4403, - [4914] = 4417, - [4915] = 4409, - [4916] = 4406, - [4917] = 4416, - [4918] = 4416, - [4919] = 4417, - [4920] = 4771, - [4921] = 4409, - [4922] = 4408, - [4923] = 4409, - [4924] = 4409, - [4925] = 4413, - [4926] = 4403, - [4927] = 4406, - [4928] = 4483, - [4929] = 4413, - [4930] = 4408, - [4931] = 4413, - [4932] = 4408, - [4933] = 364, - [4934] = 4771, - [4935] = 4771, - [4936] = 4771, - [4937] = 4771, - [4938] = 4771, - [4939] = 4771, - [4940] = 4771, - [4941] = 4771, - [4942] = 4771, - [4943] = 4771, - [4944] = 4771, - [4945] = 4771, - [4946] = 4771, - [4947] = 4771, - [4948] = 4771, - [4949] = 4771, - [4950] = 4771, - [4951] = 4771, - [4952] = 4771, - [4953] = 4771, - [4954] = 4771, - [4955] = 4771, - [4956] = 4771, - [4957] = 4771, - [4958] = 4771, - [4959] = 4771, - [4960] = 4771, - [4961] = 4771, - [4962] = 4771, - [4963] = 4771, - [4964] = 4771, - [4965] = 4771, - [4966] = 4771, - [4967] = 4771, - [4968] = 4771, - [4969] = 4771, - [4970] = 4771, - [4971] = 4771, - [4972] = 4771, - [4973] = 4771, - [4974] = 4771, - [4975] = 4771, - [4976] = 4771, - [4977] = 4977, - [4978] = 4483, - [4979] = 4476, - [4980] = 4409, - [4981] = 358, - [4982] = 4416, - [4983] = 4977, - [4984] = 4483, - [4985] = 4476, - [4986] = 4417, - [4987] = 4768, - [4988] = 356, - [4989] = 4977, - [4990] = 4483, - [4991] = 4476, - [4992] = 4408, - [4993] = 4977, - [4994] = 4483, - [4995] = 4476, - [4996] = 4977, - [4997] = 4977, - [4998] = 4977, - [4999] = 4977, - [5000] = 4977, - [5001] = 4977, - [5002] = 4977, - [5003] = 4977, - [5004] = 4977, - [5005] = 4977, - [5006] = 4977, - [5007] = 4977, - [5008] = 4977, - [5009] = 4977, - [5010] = 4977, - [5011] = 4977, - [5012] = 4977, - [5013] = 4977, - [5014] = 4977, - [5015] = 4977, - [5016] = 4977, - [5017] = 4977, - [5018] = 4977, - [5019] = 4977, - [5020] = 4977, - [5021] = 4977, - [5022] = 4977, - [5023] = 4977, - [5024] = 4977, - [5025] = 4977, - [5026] = 4977, - [5027] = 4977, - [5028] = 4977, - [5029] = 4977, - [5030] = 4977, - [5031] = 4977, - [5032] = 4977, - [5033] = 4977, - [5034] = 4977, - [5035] = 4977, - [5036] = 4977, - [5037] = 4977, - [5038] = 4977, - [5039] = 4977, - [5040] = 4413, + [4542] = 4170, + [4543] = 4179, + [4544] = 4180, + [4545] = 4545, + [4546] = 4176, + [4547] = 4179, + [4548] = 4194, + [4549] = 4225, + [4550] = 4170, + [4551] = 4176, + [4552] = 4182, + [4553] = 4223, + [4554] = 4188, + [4555] = 4214, + [4556] = 4212, + [4557] = 4213, + [4558] = 4173, + [4559] = 4180, + [4560] = 4308, + [4561] = 4180, + [4562] = 4176, + [4563] = 4329, + [4564] = 4179, + [4565] = 4337, + [4566] = 4170, + [4567] = 4182, + [4568] = 4188, + [4569] = 4188, + [4570] = 4182, + [4571] = 4170, + [4572] = 4179, + [4573] = 608, + [4574] = 4180, + [4575] = 4215, + [4576] = 4373, + [4577] = 4176, + [4578] = 4172, + [4579] = 4179, + [4580] = 4375, + [4581] = 4170, + [4582] = 4176, + [4583] = 4182, + [4584] = 4188, + [4585] = 4509, + [4586] = 4180, + [4587] = 4180, + [4588] = 4512, + [4589] = 4516, + [4590] = 4176, + [4591] = 4179, + [4592] = 4516, + [4593] = 4190, + [4594] = 4378, + [4595] = 4176, + [4596] = 4170, + [4597] = 4501, + [4598] = 4179, + [4599] = 4182, + [4600] = 4188, + [4601] = 4188, + [4602] = 4170, + [4603] = 4179, + [4604] = 4176, + [4605] = 4170, + [4606] = 4182, + [4607] = 4180, + [4608] = 4608, + [4609] = 4188, + [4610] = 4176, + [4611] = 4180, + [4612] = 4179, + [4613] = 4171, + [4614] = 4170, + [4615] = 4182, + [4616] = 4175, + [4617] = 4188, + [4618] = 4180, + [4619] = 4180, + [4620] = 4176, + [4621] = 4179, + [4622] = 4170, + [4623] = 4188, + [4624] = 4182, + [4625] = 4188, + [4626] = 4182, + [4627] = 4170, + [4628] = 4221, + [4629] = 353, + [4630] = 4179, + [4631] = 4343, + [4632] = 4176, + [4633] = 4180, + [4634] = 4176, + [4635] = 4179, + [4636] = 4170, + [4637] = 4176, + [4638] = 4182, + [4639] = 4512, + [4640] = 4188, + [4641] = 4182, + [4642] = 4180, + [4643] = 4512, + [4644] = 4176, + [4645] = 4179, + [4646] = 4516, + [4647] = 4179, + [4648] = 4170, + [4649] = 4170, + [4650] = 4188, + [4651] = 4501, + [4652] = 4188, + [4653] = 4182, + [4654] = 4188, + [4655] = 4180, + [4656] = 4176, + [4657] = 4179, + [4658] = 4343, + [4659] = 4170, + [4660] = 4182, + [4661] = 4512, + [4662] = 4188, + [4663] = 4663, + [4664] = 4180, + [4665] = 4176, + [4666] = 4179, + [4667] = 4170, + [4668] = 4182, + [4669] = 4188, + [4670] = 4180, + [4671] = 4176, + [4672] = 4179, + [4673] = 4170, + [4674] = 4182, + [4675] = 4512, + [4676] = 4512, + [4677] = 4512, + [4678] = 4512, + [4679] = 4512, + [4680] = 4512, + [4681] = 4512, + [4682] = 4512, + [4683] = 4512, + [4684] = 4512, + [4685] = 4512, + [4686] = 4512, + [4687] = 4512, + [4688] = 4512, + [4689] = 4512, + [4690] = 4512, + [4691] = 4512, + [4692] = 4512, + [4693] = 4512, + [4694] = 4512, + [4695] = 4512, + [4696] = 4512, + [4697] = 4512, + [4698] = 4512, + [4699] = 4512, + [4700] = 4512, + [4701] = 4512, + [4702] = 4512, + [4703] = 4512, + [4704] = 4512, + [4705] = 4512, + [4706] = 4512, + [4707] = 4512, + [4708] = 4512, + [4709] = 4512, + [4710] = 4512, + [4711] = 4512, + [4712] = 4512, + [4713] = 4512, + [4714] = 4512, + [4715] = 4512, + [4716] = 4716, + [4717] = 4193, + [4718] = 4190, + [4719] = 4188, + [4720] = 4180, + [4721] = 4176, + [4722] = 4716, + [4723] = 4193, + [4724] = 4190, + [4725] = 4193, + [4726] = 4179, + [4727] = 4509, + [4728] = 4716, + [4729] = 4193, + [4730] = 4190, + [4731] = 4170, + [4732] = 4716, + [4733] = 4193, + [4734] = 4190, + [4735] = 4716, + [4736] = 4716, + [4737] = 4716, + [4738] = 4716, + [4739] = 4716, + [4740] = 4716, + [4741] = 4716, + [4742] = 4716, + [4743] = 4716, + [4744] = 4716, + [4745] = 4716, + [4746] = 4716, + [4747] = 4716, + [4748] = 4716, + [4749] = 4716, + [4750] = 4716, + [4751] = 4716, + [4752] = 4716, + [4753] = 4716, + [4754] = 4716, + [4755] = 4716, + [4756] = 4716, + [4757] = 4716, + [4758] = 4716, + [4759] = 4716, + [4760] = 4716, + [4761] = 4716, + [4762] = 4716, + [4763] = 4716, + [4764] = 4716, + [4765] = 4716, + [4766] = 4716, + [4767] = 4716, + [4768] = 4716, + [4769] = 4716, + [4770] = 4716, + [4771] = 4716, + [4772] = 4716, + [4773] = 4716, + [4774] = 4716, + [4775] = 4716, + [4776] = 4716, + [4777] = 4182, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -7430,20 +7312,6 @@ static inline bool sym_word_character_set_4(int32_t c) { } static inline bool sym_word_character_set_5(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c >= '"' && c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_6(int32_t c) { return (c < '$' ? (c < ' ' ? (c < '\t' @@ -7457,23 +7325,7 @@ static inline bool sym_word_character_set_6(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_7(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_8(int32_t c) { +static inline bool sym_word_character_set_6(int32_t c) { return (c < ';' ? (c < ' ' ? (c < '\t' @@ -7489,7 +7341,7 @@ static inline bool sym_word_character_set_8(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_9(int32_t c) { +static inline bool sym_word_character_set_7(int32_t c) { return (c < '&' ? (c < ' ' ? (c < '\t' @@ -7507,182 +7359,181 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '.') ADVANCE(791); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(649); - if (lookahead == '~') ADVANCE(642); + if (eof) ADVANCE(435); + if (lookahead == '!') ADVANCE(683); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(688); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(687); + if (lookahead == '+') ADVANCE(632); + if (lookahead == ',') ADVANCE(445); + if (lookahead == '-') ADVANCE(629); + if (lookahead == '.') ADVANCE(794); + if (lookahead == '/') ADVANCE(501); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ':') ADVANCE(626); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(690); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(700); + if (lookahead == '@') ADVANCE(685); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(554); + if (lookahead == '^') ADVANCE(619); + if (lookahead == '_') ADVANCE(791); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'i') ADVANCE(800); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '}') ADVANCE(641); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(431) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 1: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(181) END_STATE(); case 2: - if (lookahead == '\n') SKIP(193) + if (lookahead == '\n') SKIP(187) END_STATE(); case 3: - if (lookahead == '\n') SKIP(194) + if (lookahead == '\n') SKIP(188) END_STATE(); case 4: if (lookahead == '\n') SKIP(5) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(577); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(565); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(333); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 6: - if (lookahead == '\n') SKIP(195) + if (lookahead == '\n') SKIP(189) END_STATE(); case 7: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(195) END_STATE(); case 8: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') SKIP(191) END_STATE(); case 9: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(192) END_STATE(); case 10: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(196) END_STATE(); case 11: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(198) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(566); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(288); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(742); + if (lookahead == '\n') ADVANCE(745); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\n') ADVANCE(785); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\n') ADVANCE(785); if (lookahead == '\r') ADVANCE(14); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\n') ADVANCE(785); if (lookahead == '\r') ADVANCE(14); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(800); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(803); END_STATE(); case 17: - if (lookahead == '\n') SKIP(109) + if (lookahead == '\n') ADVANCE(771); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(763); + if (lookahead == '\n') SKIP(107) END_STATE(); case 19: - if (lookahead == '\n') SKIP(207) + if (lookahead == '\n') SKIP(201) END_STATE(); case 20: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(190) END_STATE(); case 21: - if (lookahead == '\n') SKIP(196) + if (lookahead == '\n') SKIP(132) END_STATE(); case 22: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(143) END_STATE(); case 23: if (lookahead == '\n') SKIP(147) @@ -7691,5539 +7542,5377 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(151) END_STATE(); case 25: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') ADVANCE(747); END_STATE(); case 26: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(154) END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(744); + if (lookahead == '\n') SKIP(157) END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\n') ADVANCE(750); END_STATE(); case 29: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(160) END_STATE(); case 30: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') ADVANCE(752); END_STATE(); case 31: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') ADVANCE(754); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\n') SKIP(162) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(753); + if (lookahead == '\n') ADVANCE(758); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\n') SKIP(164) END_STATE(); case 35: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') ADVANCE(761); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\n') SKIP(242) END_STATE(); case 37: - if (lookahead == '\n') SKIP(237) + if (lookahead == '\n') SKIP(233) END_STATE(); case 38: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') ADVANCE(762); END_STATE(); case 39: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') SKIP(239) END_STATE(); case 40: - if (lookahead == '\n') SKIP(252) + if (lookahead == '\n') SKIP(240) END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\n') ADVANCE(767); END_STATE(); case 42: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(236) END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(766); + if (lookahead == '\n') ADVANCE(772); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(760); + if (lookahead == '\n') ADVANCE(776); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\n') ADVANCE(768); END_STATE(); case 46: - if (lookahead == '\n') SKIP(240) + if (lookahead == '\n') ADVANCE(763); END_STATE(); case 47: if (lookahead == '\n') ADVANCE(775); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(771); + if (lookahead == '\n') ADVANCE(769); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\n') ADVANCE(778); END_STATE(); case 50: - if (lookahead == '\n') SKIP(253) + if (lookahead == '\n') SKIP(193) END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(768); + if (lookahead == '\n') SKIP(213) END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(777); + if (lookahead == '\n') SKIP(211) END_STATE(); case 53: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') SKIP(218) END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(764); + if (lookahead == '\n') SKIP(214) END_STATE(); case 55: - if (lookahead == '\n') SKIP(217) + if (lookahead == '\n') SKIP(178) END_STATE(); case 56: - if (lookahead == '\n') SKIP(223) + if (lookahead == '\n') ADVANCE(766); END_STATE(); case 57: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') SKIP(210) END_STATE(); case 58: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') SKIP(217) END_STATE(); case 59: - if (lookahead == '\n') SKIP(216) + if (lookahead == '\n') ADVANCE(567); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(306); + if (lookahead == '_') ADVANCE(793); + if (lookahead == 'e') ADVANCE(742); + if (lookahead == '|') ADVANCE(538); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 60: - if (lookahead == '\n') SKIP(182) + if (lookahead == '\n') ADVANCE(746); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\n') SKIP(216) END_STATE(); case 62: - if (lookahead == '\n') SKIP(222) + if (lookahead == '\n') ADVANCE(749); END_STATE(); case 63: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(244) END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (lookahead == '\n') ADVANCE(751); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(743); + if (lookahead == '\n') ADVANCE(755); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\n') SKIP(254) END_STATE(); case 67: - if (lookahead == '\n') SKIP(250) + if (lookahead == '\n') SKIP(179) END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\n') SKIP(69) END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(752); - END_STATE(); - case 70: - if (lookahead == '\n') SKIP(183) - END_STATE(); - case 71: - if (lookahead == '\n') SKIP(72) - END_STATE(); - case 72: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '\\') SKIP(377) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '|') ADVANCE(281); + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ';') ADVANCE(441); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(449); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') SKIP(369) + if (lookahead == '^') ADVANCE(280); + if (lookahead == '|') ADVANCE(277); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) + lookahead == ' ') SKIP(69) END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '(') ADVANCE(538); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(678); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '\\') SKIP(382) - if (lookahead == '`') ADVANCE(717); + case 70: + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '(') ADVANCE(525); + if (lookahead == '+') ADVANCE(272); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(274); + if (lookahead == '0') ADVANCE(671); + if (lookahead == ';') ADVANCE(441); + if (lookahead == '\\') SKIP(373) + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); + lookahead == ' ') SKIP(70) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(280); - if (lookahead == '0') ADVANCE(679); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '\\') SKIP(391) - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(689); + case 71: + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(269); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(276); + if (lookahead == '0') ADVANCE(672); + if (lookahead == '<') ADVANCE(513); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '\\') SKIP(383) + if (lookahead == '|') ADVANCE(536); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); + lookahead == ' ') SKIP(71) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 72: + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(384) - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(375) + if (lookahead == '`') ADVANCE(283); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(75) + lookahead == ' ') SKIP(72) END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(628); - if (lookahead == ';') ADVANCE(450); + case 73: + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '&') ADVANCE(615); + if (lookahead == ';') ADVANCE(443); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(392) - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'i') ADVANCE(290); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(386) + if (lookahead == '`') ADVANCE(283); + if (lookahead == 'i') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76) + lookahead == ' ') SKIP(73) + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(249) + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(764); + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(220) END_STATE(); case 77: - if (lookahead == '\n') SKIP(248) + if (lookahead == '\n') ADVANCE(757); END_STATE(); case 78: - if (lookahead == '\n') SKIP(255) + if (lookahead == '\n') ADVANCE(779); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\n') ADVANCE(780); END_STATE(); case 80: - if (lookahead == '\n') SKIP(224) + if (lookahead == '\n') ADVANCE(765); END_STATE(); case 81: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') ADVANCE(770); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(769); + if (lookahead == '\n') SKIP(245) END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\n') SKIP(70) END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(778); + if (lookahead == '\n') SKIP(250) END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(762); + if (lookahead == '\n') SKIP(72) END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\n') SKIP(229) END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(779); + if (lookahead == '\n') SKIP(246) END_STATE(); case 88: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') SKIP(231) END_STATE(); case 89: if (lookahead == '\n') SKIP(256) END_STATE(); case 90: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') SKIP(247) END_STATE(); case 91: - if (lookahead == '\n') SKIP(251) + if (lookahead == '\n') ADVANCE(759); END_STATE(); case 92: - if (lookahead == '\n') SKIP(258) + if (lookahead == '\n') SKIP(230) END_STATE(); case 93: - if (lookahead == '\n') SKIP(232) + if (lookahead == '\n') ADVANCE(782); END_STATE(); case 94: - if (lookahead == '\n') SKIP(260) + if (lookahead == '\n') ADVANCE(781); END_STATE(); case 95: - if (lookahead == '\n') SKIP(235) + if (lookahead == '\n') SKIP(71) END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(756); + if (lookahead == '\n') ADVANCE(783); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\n') ADVANCE(784); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\n') SKIP(255) END_STATE(); case 99: - if (lookahead == '\n') SKIP(74) + if (lookahead == '\n') SKIP(251) END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\n') SKIP(73) END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\n') SKIP(248) END_STATE(); case 102: - if (lookahead == '\n') SKIP(76) + if (lookahead == '\n') SKIP(258) END_STATE(); case 103: - if (lookahead == '\n') SKIP(259) + if (lookahead == '\n') SKIP(257) END_STATE(); case 104: - if (lookahead == '\n') SKIP(262) + if (lookahead == '\n') SKIP(139) END_STATE(); case 105: - if (lookahead == '\n') SKIP(261) + if (lookahead == '\n') SKIP(199) END_STATE(); case 106: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(197) END_STATE(); case 107: - if (lookahead == '\n') SKIP(190) - END_STATE(); - case 108: - if (lookahead == '\n') SKIP(188) - END_STATE(); - case 109: - if (lookahead == '\n') ADVANCE(581); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(346); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(340); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(109) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(107) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); + END_STATE(); + case 108: + if (lookahead == '\n') ADVANCE(748); + END_STATE(); + case 109: + if (lookahead == '\n') SKIP(142) END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(745); + if (lookahead == '\n') SKIP(202) END_STATE(); case 111: - if (lookahead == '\n') SKIP(146) + if (lookahead == '\n') SKIP(172) END_STATE(); case 112: - if (lookahead == '\n') SKIP(208) + if (lookahead == '\n') SKIP(166) END_STATE(); case 113: - if (lookahead == '\n') SKIP(176) + if (lookahead == '\n') SKIP(173) END_STATE(); case 114: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(176) END_STATE(); case 115: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(168) END_STATE(); case 116: - if (lookahead == '\n') SKIP(172) + if (lookahead == '\n') SKIP(174) END_STATE(); case 117: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') ADVANCE(756); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\n') SKIP(170) END_STATE(); case 119: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(175) END_STATE(); case 120: - if (lookahead == '\n') SKIP(178) + if (lookahead == '\n') ADVANCE(760); END_STATE(); case 121: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(177) END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\n') SKIP(243) END_STATE(); case 123: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(237) END_STATE(); case 124: - if (lookahead == '\n') SKIP(247) + if (lookahead == '\n') SKIP(241) END_STATE(); case 125: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(234) END_STATE(); case 126: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') ADVANCE(773); END_STATE(); case 127: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') ADVANCE(777); END_STATE(); case 128: - if (lookahead == '\n') ADVANCE(776); + if (lookahead == '\n') ADVANCE(753); END_STATE(); case 129: - if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\n') SKIP(180) END_STATE(); case 130: - if (lookahead == '\n') SKIP(254) + if (lookahead == '\n') SKIP(219) END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(750); + if (lookahead == '\n') SKIP(200) END_STATE(); case 132: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') ADVANCE(570); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(343); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(731); + if (lookahead == '|') ADVANCE(538); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 133: - if (lookahead == '\n') SKIP(249) + if (lookahead == '\n') SKIP(146) END_STATE(); case 134: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(238) END_STATE(); case 135: - if (lookahead == '\n') ADVANCE(582); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(774); + END_STATE(); + case 136: + if (lookahead == '\n') ADVANCE(571); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(728); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(290); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(736); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + lookahead == ' ') SKIP(136) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 136: - if (lookahead == '\n') SKIP(150) + lookahead != ')') ADVANCE(803); END_STATE(); case 137: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(150) END_STATE(); case 138: - if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\n') SKIP(235) END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(572); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 140: - if (lookahead == '\n') SKIP(154) + if (lookahead == '\n') ADVANCE(573); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(323); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(140) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 141: - if (lookahead == '\n') SKIP(239) + if (lookahead == '\n') ADVANCE(574); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(584); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); + if (lookahead == '\n') ADVANCE(575); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(393); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 143: - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(576); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(344); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(577); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(291); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(579); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(411); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(589); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(351); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(147) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 148: - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(736); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(149) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(592); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(583); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(418); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(413); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(593); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(346); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(293); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(309); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(153) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 154: - if (lookahead == '\n') ADVANCE(596); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(420); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(347); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 157: - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(348); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(158) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '_') ADVANCE(793); + if (lookahead == 'i') ADVANCE(741); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(159) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(349); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 161: - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(161) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 162: - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(350); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'i') ADVANCE(738); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(295); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 164: - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 166: - if (lookahead == '\n') ADVANCE(608); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(399); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(310); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != '|') ADVANCE(803); END_STATE(); case 170: - if (lookahead == '\n') ADVANCE(612); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 171: - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 172: - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(395); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(731); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(606); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(397); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); case 175: - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '\n') ADVANCE(608); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(402); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); case 176: - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(728); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(619); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 178: - if (lookahead == '\n') ADVANCE(620); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(362); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(801); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(178) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')' && + lookahead != '|') ADVANCE(803); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(368); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(803); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(622); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); + lookahead == '}') ADVANCE(650); if (lookahead == '\\') ADVANCE(408); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')' && + lookahead != '|') ADVANCE(803); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(495); + if (lookahead == '+') ADVANCE(632); + if (lookahead == ',') ADVANCE(445); + if (lookahead == '-') ADVANCE(629); + if (lookahead == '/') ADVANCE(501); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ':') ADVANCE(628); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(451); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(554); + if (lookahead == '^') ADVANCE(619); + if (lookahead == '_') ADVANCE(791); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'i') ADVANCE(800); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '}') ADVANCE(681); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(624); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(800); + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 183: - if (lookahead == '\n') ADVANCE(625); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(626); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '`') ADVANCE(718); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 185: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(689); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 186: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(342); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 187: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(261); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == ']' || + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 188: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(332); + if (lookahead == ']' || + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 189: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(641); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(334); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '}') ADVANCE(650); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 190: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(342); + if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 191: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == ']') ADVANCE(658); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(261); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == ']' || + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == '{') ADVANCE(544); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != '|') ADVANCE(803); END_STATE(); case 192: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(337); + if (lookahead == ']') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '}') ADVANCE(545); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 193: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(548); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(357); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 194: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(338); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(289); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 195: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(340); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '}') ADVANCE(657); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(335); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 196: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == ']' || + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(338); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 197: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(341); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '{') ADVANCE(557); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(392); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 198: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(343); - if (lookahead == ']') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '}') ADVANCE(558); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ':') ADVANCE(628); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(339); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 199: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(391); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 200: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == ']') ADVANCE(651); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != '&') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 201: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(341); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 202: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '!') ADVANCE(796); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(394); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 203: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(298); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 204: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 205: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(329); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 206: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(302); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 207: - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(347); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 208: - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == ']') ADVANCE(282); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(208) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 209: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(304); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 210: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '(') ADVANCE(525); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') SKIP(363) + if (lookahead == ']') ADVANCE(282); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 211: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(359) + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 212: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '.') ADVANCE(275); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(261); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(358) + if (lookahead == ']') ADVANCE(651); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'i') ADVANCE(286); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + lookahead == ' ') SKIP(213) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); END_STATE(); case 213: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(261); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(358) + if (lookahead == ']') ADVANCE(651); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'i') ADVANCE(286); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 214: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(361) + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 215: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(365) + if (lookahead == '^') ADVANCE(621); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(641); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + lookahead == ' ') SKIP(216) END_STATE(); case 216: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(371) - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(365) + if (lookahead == '^') ADVANCE(621); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216) END_STATE(); case 217: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(367) - if (lookahead == ']') ADVANCE(658); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(364) + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(217) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); case 218: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(366) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == 'i') ADVANCE(290); - if (lookahead == '|') ADVANCE(552); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(360) + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); + lookahead == ' ') SKIP(218) END_STATE(); case 219: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(366) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == 'i') ADVANCE(290); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(259); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(449); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') SKIP(409) + if (lookahead == '^') ADVANCE(280); + if (lookahead == '|') ADVANCE(277); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(219) END_STATE(); case 220: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(369) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(278); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(259); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(488); + if (lookahead == ',') ADVANCE(444); + if (lookahead == '-') ADVANCE(491); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(449); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') SKIP(371) + if (lookahead == '^') ADVANCE(280); + if (lookahead == '|') ADVANCE(277); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220) END_STATE(); case 221: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(373) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '}') ADVANCE(649); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(312); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) + lookahead == ' ') SKIP(221) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 222: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(373) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(313); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(222) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 223: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(368) - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(318); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(223) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 224: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(263); - if (lookahead == '(') ADVANCE(538); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') SKIP(380) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(281); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '/') ADVANCE(500); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(317); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(224) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 225: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(263); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '\\') SKIP(381) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '|') ADVANCE(281); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(320); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225) + lookahead == ' ') ADVANCE(657); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); + if (lookahead != 0 && + lookahead != '`') ADVANCE(661); END_STATE(); case 226: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 227: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) + lookahead == ' ') ADVANCE(658); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(661); END_STATE(); case 228: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(548); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 229: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(647); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') SKIP(376) + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 230: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(647); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') SKIP(381) + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(664); + lookahead == ' ') SKIP(230) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != '`') ADVANCE(668); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 231: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 232: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(656); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '(') ADVANCE(538); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(679); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(649); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '(') ADVANCE(525); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(630); + if (lookahead == '0') ADVANCE(672); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(387) - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(642); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(378) + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(538); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); + lookahead == ' ') SKIP(231) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 233: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(790); + case 232: + if (lookahead == '!') ADVANCE(682); + if (lookahead == '#') ADVANCE(688); + if (lookahead == '$') ADVANCE(647); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '=') ADVANCE(689); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') SKIP(376) + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(665); + lookahead == ' ') SKIP(229) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); + END_STATE(); + case 233: + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(353); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(233) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(668); + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 234: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(328); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(407); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ';') ADVANCE(803); END_STATE(); case 235: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(654); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') SKIP(389) - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(414); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0 && + lookahead != ';') ADVANCE(803); END_STATE(); case 236: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(515); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '+') ADVANCE(496); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '/') ADVANCE(510); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(356); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != '&') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 237: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == ']' || + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 238: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(412); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 239: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(421); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(548); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(354); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 240: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 241: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 242: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(419); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(352); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); if (lookahead != 0 && - lookahead != ';') ADVANCE(800); + lookahead != ')' && + lookahead != ';') ADVANCE(803); END_STATE(); case 243: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(800); + lookahead != ';') ADVANCE(803); END_STATE(); case 244: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(366); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(801); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 245: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == ']' || + lookahead == '{') ADVANCE(650); + if (lookahead == '\\') ADVANCE(372); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(803); END_STATE(); case 246: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '(') ADVANCE(525); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '+') ADVANCE(273); + if (lookahead == '-') ADVANCE(274); + if (lookahead == '0') ADVANCE(671); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(377) + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 247: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(525); + if (lookahead == '\\') ADVANCE(380); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); + lookahead == ' ') ADVANCE(704); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '{' && + lookahead != '|') ADVANCE(803); END_STATE(); case 248: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '\\') SKIP(387) if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead == ' ') ADVANCE(707); END_STATE(); case 249: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '}') ADVANCE(689); + lookahead == '{' || + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(370); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != '|') ADVANCE(803); END_STATE(); case 250: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(374); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(800); + lookahead != '|') ADVANCE(803); END_STATE(); case 251: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '(') ADVANCE(538); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '+') ADVANCE(277); - if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(678); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(385) - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(649); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '\\') ADVANCE(385); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 252: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(654); + if (lookahead == '$') ADVANCE(646); + if (lookahead == '(') ADVANCE(660); + if (lookahead == '\\') ADVANCE(382); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); + lookahead == ' ') ADVANCE(659); + if (lookahead != 0) ADVANCE(661); END_STATE(); case 253: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '%') ADVANCE(506); + if (lookahead == '*') ADVANCE(686); + if (lookahead == '+') ADVANCE(696); + if (lookahead == ',') ADVANCE(446); + if (lookahead == '-') ADVANCE(693); + if (lookahead == '/') ADVANCE(502); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '=') ADVANCE(689); + if (lookahead == '?') ADVANCE(699); + if (lookahead == '@') ADVANCE(684); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(367) + if (lookahead == '^') ADVANCE(622); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); + lookahead == ' ') SKIP(254) END_STATE(); case 254: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(414); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '%') ADVANCE(506); + if (lookahead == ',') ADVANCE(446); + if (lookahead == '/') ADVANCE(502); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(367) + if (lookahead == '^') ADVANCE(622); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); END_STATE(); case 255: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(725); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '&') ADVANCE(281); + if (lookahead == ';') ADVANCE(441); + if (lookahead == '<') ADVANCE(513); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '\\') ADVANCE(384); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + lookahead != '|') ADVANCE(803); END_STATE(); case 256: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(725); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(379); + if (lookahead == '`') ADVANCE(283); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';') ADVANCE(803); END_STATE(); case 257: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(661); - if (lookahead == '$') ADVANCE(653); - if (lookahead == '(') ADVANCE(667); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '+') ADVANCE(279); + if (lookahead == '=') ADVANCE(447); + if (lookahead == '[') ADVANCE(551); + if (lookahead == '\\') SKIP(389) if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(666); - if (lookahead != 0) ADVANCE(668); + lookahead == ' ') SKIP(257) END_STATE(); case 258: - if (lookahead == '#') ADVANCE(687); - if (lookahead == '%') ADVANCE(516); - if (lookahead == '+') ADVANCE(493); - if (lookahead == ',') ADVANCE(452); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(511); - if (lookahead == ':') ADVANCE(639); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(386) - if (lookahead == '^') ADVANCE(634); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '/') ADVANCE(500); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(650); + if (lookahead == '\\') SKIP(388) + if (lookahead == '`') ADVANCE(283); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258) END_STATE(); case 259: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') SKIP(393) - if (lookahead == '`') ADVANCE(287); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259) + if (lookahead == '&') ADVANCE(480); + if (lookahead == '=') ADVANCE(470); END_STATE(); case 260: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(388); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(260) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(800); + if (lookahead == '&') ADVANCE(480); + if (lookahead == '>') ADVANCE(559); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '+') ADVANCE(283); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(395) - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261) + if (lookahead == '&') ADVANCE(542); + if (lookahead == ';') ADVANCE(541); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(724); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '{') ADVANCE(557); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '|' && - lookahead != '}') ADVANCE(800); + if (lookahead == '\'') ADVANCE(663); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 263: - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); + if (lookahead == '\'') ADVANCE(664); + if (lookahead == '\\') ADVANCE(264); + if (lookahead != 0) ADVANCE(263); END_STATE(); case 264: - if (lookahead == '&') ADVANCE(486); - if (lookahead == '>') ADVANCE(571); + if (lookahead == '\'') ADVANCE(665); + if (lookahead == '\\') ADVANCE(264); + if (lookahead != 0) ADVANCE(263); END_STATE(); case 265: - if (lookahead == '&') ADVANCE(555); - if (lookahead == ';') ADVANCE(554); + if (lookahead == '(') ADVANCE(439); END_STATE(); case 266: - if (lookahead == '\'') ADVANCE(670); - if (lookahead != 0) ADVANCE(266); + if (lookahead == '(') ADVANCE(723); END_STATE(); case 267: - if (lookahead == '\'') ADVANCE(671); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); + if (lookahead == '(') ADVANCE(724); END_STATE(); case 268: - if (lookahead == '\'') ADVANCE(672); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); + if (lookahead == '(') ADVANCE(637); END_STATE(); case 269: - if (lookahead == '(') ADVANCE(446); + if (lookahead == '(') ADVANCE(268); END_STATE(); case 270: - if (lookahead == '(') ADVANCE(720); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '{') ADVANCE(680); END_STATE(); case 271: - if (lookahead == '(') ADVANCE(721); + if (lookahead == ')') ADVANCE(440); END_STATE(); case 272: - if (lookahead == '(') ADVANCE(645); + if (lookahead == '+') ADVANCE(452); END_STATE(); case 273: - if (lookahead == '(') ADVANCE(272); + if (lookahead == '+') ADVANCE(452); + if (lookahead == '=') ADVANCE(456); END_STATE(); case 274: - if (lookahead == '(') ADVANCE(272); - if (lookahead == '{') ADVANCE(688); + if (lookahead == '-') ADVANCE(454); + if (lookahead == '0') ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 275: - if (lookahead == ')') ADVANCE(447); + if (lookahead == '.') ADVANCE(639); END_STATE(); case 276: - if (lookahead == '+') ADVANCE(458); + if (lookahead == '0') ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); case 277: - if (lookahead == '+') ADVANCE(458); - if (lookahead == '=') ADVANCE(462); + if (lookahead == '=') ADVANCE(473); + if (lookahead == '|') ADVANCE(481); END_STATE(); case 278: - if (lookahead == '-') ADVANCE(460); - if (lookahead == '0') ADVANCE(678); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); + if (lookahead == '=') ADVANCE(476); END_STATE(); case 279: - if (lookahead == '.') ADVANCE(647); + if (lookahead == '=') ADVANCE(456); END_STATE(); case 280: - if (lookahead == '0') ADVANCE(678); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); + if (lookahead == '=') ADVANCE(471); END_STATE(); case 281: - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); + if (lookahead == '>') ADVANCE(559); END_STATE(); case 282: - if (lookahead == '=') ADVANCE(482); + if (lookahead == ']') ADVANCE(556); END_STATE(); case 283: - if (lookahead == '=') ADVANCE(462); + if (lookahead == '`') ADVANCE(642); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(283); END_STATE(); case 284: - if (lookahead == '=') ADVANCE(477); + if (lookahead == 'a') ADVANCE(285); END_STATE(); case 285: - if (lookahead == '>') ADVANCE(571); + if (lookahead == 'c') ADVANCE(530); END_STATE(); case 286: - if (lookahead == ']') ADVANCE(568); + if (lookahead == 'n') ADVANCE(436); END_STATE(); case 287: - if (lookahead == '`') ADVANCE(650); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(287); + if (lookahead == 's') ADVANCE(284); END_STATE(); case 288: - if (lookahead == 'a') ADVANCE(289); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(12) + if (lookahead == '\n') ADVANCE(745); + if (lookahead == '\r') ADVANCE(13); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 289: - if (lookahead == 'c') ADVANCE(543); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(194) + if (lookahead == '\n') ADVANCE(771); + if (lookahead == '\r') ADVANCE(17); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 290: - if (lookahead == 'n') ADVANCE(443); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(136) + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\r') ADVANCE(25); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 291: - if (lookahead == 's') ADVANCE(288); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') SKIP(144) + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '\r') ADVANCE(28); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 292: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(148) + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\r') ADVANCE(30); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 293: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(192) - if (lookahead == '\n') ADVANCE(763); - if (lookahead == '\r') ADVANCE(18); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(152) + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\r') ADVANCE(31); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 294: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(139) - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\r') ADVANCE(27); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(158) + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\r') ADVANCE(33); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 295: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(148) - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\r') ADVANCE(28); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(163) + if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\r') ADVANCE(35); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 296: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(156) - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\r') ADVANCE(32); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(165) + if (lookahead == '\n') ADVANCE(762); + if (lookahead == '\r') ADVANCE(38); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 297: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(159) - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\r') ADVANCE(33); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(183) + if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\r') ADVANCE(41); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 298: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(162) - if (lookahead == '\n') ADVANCE(755); - if (lookahead == '\r') ADVANCE(34); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(203) + if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\r') ADVANCE(43); END_STATE(); case 299: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(167) - if (lookahead == '\n') ADVANCE(758); - if (lookahead == '\r') ADVANCE(36); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(207) + if (lookahead == '\n') ADVANCE(776); + if (lookahead == '\r') ADVANCE(44); END_STATE(); case 300: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(169) - if (lookahead == '\n') ADVANCE(759); - if (lookahead == '\r') ADVANCE(41); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(184) + if (lookahead == '\n') ADVANCE(768); + if (lookahead == '\r') ADVANCE(45); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 301: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(202) - if (lookahead == '\n') ADVANCE(766); - if (lookahead == '\r') ADVANCE(43); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(167) + if (lookahead == '\n') ADVANCE(763); + if (lookahead == '\r') ADVANCE(46); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 302: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(171) - if (lookahead == '\n') ADVANCE(760); - if (lookahead == '\r') ADVANCE(44); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(206) + if (lookahead == '\n') ADVANCE(775); + if (lookahead == '\r') ADVANCE(47); END_STATE(); case 303: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(203) - if (lookahead == '\n') ADVANCE(767); - if (lookahead == '\r') ADVANCE(45); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(185) + if (lookahead == '\n') ADVANCE(769); + if (lookahead == '\r') ADVANCE(48); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 304: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(213) - if (lookahead == '\n') ADVANCE(775); - if (lookahead == '\r') ADVANCE(47); + lookahead == ' ') SKIP(209) + if (lookahead == '\n') ADVANCE(778); + if (lookahead == '\r') ADVANCE(49); END_STATE(); case 305: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(209) - if (lookahead == '\n') ADVANCE(771); - if (lookahead == '\r') ADVANCE(48); + lookahead == ' ') SKIP(182) + if (lookahead == '\n') ADVANCE(766); + if (lookahead == '\r') ADVANCE(56); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 306: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(212) - if (lookahead == '\n') ADVANCE(774); - if (lookahead == '\r') ADVANCE(49); + lookahead == ' ') SKIP(59) + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\r') ADVANCE(60); END_STATE(); case 307: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(204) - if (lookahead == '\n') ADVANCE(768); - if (lookahead == '\r') ADVANCE(51); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(141) + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\r') ADVANCE(62); END_STATE(); case 308: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(215) - if (lookahead == '\n') ADVANCE(777); - if (lookahead == '\r') ADVANCE(52); + lookahead == ' ') SKIP(145) + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\r') ADVANCE(64); END_STATE(); case 309: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(200) - if (lookahead == '\n') ADVANCE(764); - if (lookahead == '\r') ADVANCE(54); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(153) + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\r') ADVANCE(65); END_STATE(); case 310: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(201) - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '\r') ADVANCE(61); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(169) + if (lookahead == '\n') ADVANCE(764); + if (lookahead == '\r') ADVANCE(75); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 311: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(64) - if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\r') ADVANCE(65); + lookahead == ' ') SKIP(156) + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\r') ADVANCE(77); END_STATE(); case 312: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(145) - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\r') ADVANCE(66); + lookahead == ' ') SKIP(221) + if (lookahead == '\n') ADVANCE(779); + if (lookahead == '\r') ADVANCE(78); END_STATE(); case 313: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(149) - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\r') ADVANCE(68); + lookahead == ' ') SKIP(222) + if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\r') ADVANCE(79); END_STATE(); case 314: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(157) - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\r') ADVANCE(69); + lookahead == ' ') SKIP(171) + if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\r') ADVANCE(80); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 315: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(173) - if (lookahead == '\n') ADVANCE(761); - if (lookahead == '\r') ADVANCE(79); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(186) + if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\r') ADVANCE(81); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 316: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(205) - if (lookahead == '\n') ADVANCE(769); - if (lookahead == '\r') ADVANCE(82); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(159) + if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\r') ADVANCE(91); END_STATE(); case 317: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(160) - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\r') ADVANCE(83); + lookahead == ' ') SKIP(224) + if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\r') ADVANCE(93); END_STATE(); case 318: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(226) - if (lookahead == '\n') ADVANCE(778); - if (lookahead == '\r') ADVANCE(84); + lookahead == ' ') SKIP(223) + if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\r') ADVANCE(94); END_STATE(); case 319: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(175) - if (lookahead == '\n') ADVANCE(762); - if (lookahead == '\r') ADVANCE(85); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(226) + if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\r') ADVANCE(96); END_STATE(); case 320: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(206) - if (lookahead == '\n') ADVANCE(770); - if (lookahead == '\r') ADVANCE(86); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') ADVANCE(657); + if (lookahead == '\n') ADVANCE(657); + if (lookahead == '\r') ADVANCE(655); + if (lookahead != 0) ADVANCE(661); END_STATE(); case 321: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(227) - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '\r') ADVANCE(87); + lookahead == ' ') ADVANCE(658); + if (lookahead == '\n') ADVANCE(658); + if (lookahead == '\r') ADVANCE(656); + if (lookahead != 0) ADVANCE(661); END_STATE(); case 322: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(163) - if (lookahead == '\n') ADVANCE(756); - if (lookahead == '\r') ADVANCE(96); + lookahead == ' ') SKIP(228) + if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\r') ADVANCE(97); END_STATE(); case 323: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(228) - if (lookahead == '\n') ADVANCE(780); - if (lookahead == '\r') ADVANCE(97); + lookahead == ' ') SKIP(140) + if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\r') ADVANCE(108); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 324: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(229) - if (lookahead == '\n') ADVANCE(781); - if (lookahead == '\r') ADVANCE(98); + lookahead == ' ') SKIP(155) + if (lookahead == '\n') ADVANCE(756); + if (lookahead == '\r') ADVANCE(117); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 325: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(664); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\r') ADVANCE(662); - if (lookahead != 0) ADVANCE(668); + lookahead == ' ') SKIP(161) + if (lookahead == '\n') ADVANCE(760); + if (lookahead == '\r') ADVANCE(120); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 326: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(231) - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '\r') ADVANCE(100); + lookahead == ' ') SKIP(204) + if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\r') ADVANCE(126); END_STATE(); case 327: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(665); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\r') ADVANCE(663); - if (lookahead != 0) ADVANCE(668); + lookahead == ' ') SKIP(208) + if (lookahead == '\n') ADVANCE(777); + if (lookahead == '\r') ADVANCE(127); END_STATE(); case 328: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(234) - if (lookahead == '\n') ADVANCE(783); - if (lookahead == '\r') ADVANCE(101); + lookahead == ' ') SKIP(149) + if (lookahead == '\n') ADVANCE(753); + if (lookahead == '\r') ADVANCE(128); END_STATE(); case 329: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(144) - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\r') ADVANCE(110); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(205) + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\r') ADVANCE(135); END_STATE(); case 330: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(152) - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\r') ADVANCE(118); - if (lookahead != 0) ADVANCE(800); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(181) + if (lookahead == '\r') SKIP(1) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 331: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(165) - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\r') ADVANCE(122); - if (lookahead != 0) ADVANCE(800); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(187) + if (lookahead == '\r') SKIP(2) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 332: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(214) - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '\r') ADVANCE(128); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(188) + if (lookahead == '\r') SKIP(3) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 333: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(210) - if (lookahead == '\n') ADVANCE(772); - if (lookahead == '\r') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(5) + if (lookahead == '\r') SKIP(4) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 334: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(153) - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\r') ADVANCE(131); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(189) + if (lookahead == '\r') SKIP(6) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 335: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(211) - if (lookahead == '\n') ADVANCE(773); - if (lookahead == '\r') ADVANCE(138); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(195) + if (lookahead == '\r') SKIP(7) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 336: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(185) - if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(191) + if (lookahead == '\r') SKIP(8) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 337: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(193) - if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(192) + if (lookahead == '\r') SKIP(9) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 338: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(194) - if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(196) + if (lookahead == '\r') SKIP(10) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 339: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(198) + if (lookahead == '\r') SKIP(11) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 340: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(195) - if (lookahead == '\r') SKIP(6) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(107) + if (lookahead == '\r') SKIP(18) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 341: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(197) - if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(201) + if (lookahead == '\r') SKIP(19) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 342: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186) - if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(190) + if (lookahead == '\r') SKIP(20) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 343: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(198) - if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(132) + if (lookahead == '\r') SKIP(21) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 344: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187) - if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(143) + if (lookahead == '\r') SKIP(22) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 345: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189) - if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(147) + if (lookahead == '\r') SKIP(23) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 346: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(109) - if (lookahead == '\r') SKIP(17) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(151) + if (lookahead == '\r') SKIP(24) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 347: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(207) - if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(154) + if (lookahead == '\r') SKIP(26) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 348: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236) - if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(157) + if (lookahead == '\r') SKIP(27) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 349: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(196) - if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(160) + if (lookahead == '\r') SKIP(29) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 350: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(135) - if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(162) + if (lookahead == '\r') SKIP(32) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 351: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(147) - if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(164) + if (lookahead == '\r') SKIP(34) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 352: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(151) - if (lookahead == '\r') SKIP(24) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(242) + if (lookahead == '\r') SKIP(36) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 353: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(155) - if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(233) + if (lookahead == '\r') SKIP(37) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 354: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(158) - if (lookahead == '\r') SKIP(26) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(239) + if (lookahead == '\r') SKIP(39) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 355: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(161) - if (lookahead == '\r') SKIP(29) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(240) + if (lookahead == '\r') SKIP(40) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 356: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(164) - if (lookahead == '\r') SKIP(30) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(236) + if (lookahead == '\r') SKIP(42) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 357: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(166) - if (lookahead == '\r') SKIP(31) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(193) + if (lookahead == '\r') SKIP(50) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 358: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(168) - if (lookahead == '\r') SKIP(35) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(213) + if (lookahead == '\r') SKIP(51) END_STATE(); case 359: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) - if (lookahead == '\r') SKIP(37) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(211) + if (lookahead == '\r') SKIP(52) END_STATE(); case 360: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (lookahead == '\r') SKIP(38) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(218) + if (lookahead == '\r') SKIP(53) END_STATE(); case 361: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243) - if (lookahead == '\r') SKIP(39) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(214) + if (lookahead == '\r') SKIP(54) END_STATE(); case 362: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(178) + if (lookahead == '\r') SKIP(55) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 363: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244) - if (lookahead == '\r') SKIP(42) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(210) + if (lookahead == '\r') SKIP(57) END_STATE(); case 364: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240) - if (lookahead == '\r') SKIP(46) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(217) + if (lookahead == '\r') SKIP(58) END_STATE(); case 365: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253) - if (lookahead == '\r') SKIP(50) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(216) + if (lookahead == '\r') SKIP(61) END_STATE(); case 366: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) - if (lookahead == '\r') SKIP(53) + lookahead == ' ') SKIP(244) + if (lookahead == '\r') SKIP(63) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 367: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(217) - if (lookahead == '\r') SKIP(55) + lookahead == ' ') SKIP(254) + if (lookahead == '\r') SKIP(66) END_STATE(); case 368: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(223) - if (lookahead == '\r') SKIP(56) + lookahead == ' ') SKIP(179) + if (lookahead == '\r') SKIP(67) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 369: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220) - if (lookahead == '\r') SKIP(57) + lookahead == ' ') SKIP(69) + if (lookahead == '\r') SKIP(68) END_STATE(); case 370: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(199) - if (lookahead == '\r') SKIP(58) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(249) + if (lookahead == '\r') SKIP(74) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 371: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(216) - if (lookahead == '\r') SKIP(59) + lookahead == ' ') SKIP(220) + if (lookahead == '\r') SKIP(76) END_STATE(); case 372: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(182) - if (lookahead == '\r') SKIP(60) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(245) + if (lookahead == '\r') SKIP(82) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 373: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(222) - if (lookahead == '\r') SKIP(62) + lookahead == ' ') SKIP(70) + if (lookahead == '\r') SKIP(83) END_STATE(); case 374: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(142) - if (lookahead == '\r') SKIP(63) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(250) + if (lookahead == '\r') SKIP(84) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 375: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (lookahead == '\r') SKIP(67) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(72) + if (lookahead == '\r') SKIP(85) END_STATE(); case 376: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(183) - if (lookahead == '\r') SKIP(70) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(229) + if (lookahead == '\r') SKIP(86) END_STATE(); case 377: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(72) - if (lookahead == '\r') SKIP(71) + lookahead == ' ') SKIP(246) + if (lookahead == '\r') SKIP(87) END_STATE(); case 378: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (lookahead == '\r') SKIP(77) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(231) + if (lookahead == '\r') SKIP(88) END_STATE(); case 379: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255) - if (lookahead == '\r') SKIP(78) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(256) + if (lookahead == '\r') SKIP(89) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 380: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(224) - if (lookahead == '\r') SKIP(80) + lookahead == ' ') SKIP(247) + if (lookahead == '\r') SKIP(90) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 381: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(225) - if (lookahead == '\r') SKIP(81) + lookahead == ' ') SKIP(230) + if (lookahead == '\r') SKIP(92) END_STATE(); case 382: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73) - if (lookahead == '\r') SKIP(88) + lookahead == ' ') ADVANCE(659); + if (lookahead == '\r') ADVANCE(653); + if (lookahead != 0) ADVANCE(661); END_STATE(); case 383: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (lookahead == '\r') SKIP(89) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(71) + if (lookahead == '\r') SKIP(95) END_STATE(); case 384: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(75) - if (lookahead == '\r') SKIP(90) + lookahead == ' ') SKIP(255) + if (lookahead == '\r') SKIP(98) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 385: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(251) - if (lookahead == '\r') SKIP(91) + if (lookahead == '\r') SKIP(99) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 386: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (lookahead == '\r') SKIP(92) + lookahead == ' ') SKIP(73) + if (lookahead == '\r') SKIP(100) END_STATE(); case 387: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(232) - if (lookahead == '\r') SKIP(93) + lookahead == ' ') SKIP(248) + if (lookahead == '\r') SKIP(101) END_STATE(); case 388: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260) - if (lookahead == '\r') SKIP(94) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(258) + if (lookahead == '\r') SKIP(102) END_STATE(); case 389: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235) - if (lookahead == '\r') SKIP(95) + lookahead == ' ') SKIP(257) + if (lookahead == '\r') SKIP(103) END_STATE(); case 390: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(666); - if (lookahead == '\r') ADVANCE(660); - if (lookahead != 0) ADVANCE(668); + lookahead == ' ') SKIP(139) + if (lookahead == '\r') SKIP(104) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 391: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74) - if (lookahead == '\r') SKIP(99) + lookahead == ' ') SKIP(199) + if (lookahead == '\r') SKIP(105) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 392: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(76) - if (lookahead == '\r') SKIP(102) + lookahead == ' ') SKIP(197) + if (lookahead == '\r') SKIP(106) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 393: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259) - if (lookahead == '\r') SKIP(103) + lookahead == ' ') SKIP(142) + if (lookahead == '\r') SKIP(109) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 394: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) - if (lookahead == '\r') SKIP(104) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(202) + if (lookahead == '\r') SKIP(110) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 395: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261) - if (lookahead == '\r') SKIP(105) + lookahead == ' ') SKIP(172) + if (lookahead == '\r') SKIP(111) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 396: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(143) - if (lookahead == '\r') SKIP(106) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(166) + if (lookahead == '\r') SKIP(112) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 397: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(190) - if (lookahead == '\r') SKIP(107) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(173) + if (lookahead == '\r') SKIP(113) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 398: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(188) - if (lookahead == '\r') SKIP(108) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(176) + if (lookahead == '\r') SKIP(114) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 399: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(146) - if (lookahead == '\r') SKIP(111) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(168) + if (lookahead == '\r') SKIP(115) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 400: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(208) - if (lookahead == '\r') SKIP(112) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(174) + if (lookahead == '\r') SKIP(116) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 401: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) - if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(170) + if (lookahead == '\r') SKIP(118) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 402: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) - if (lookahead == '\r') SKIP(114) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(175) + if (lookahead == '\r') SKIP(119) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 403: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(177) + if (lookahead == '\r') SKIP(121) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 404: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(172) - if (lookahead == '\r') SKIP(116) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(243) + if (lookahead == '\r') SKIP(122) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 405: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(179) - if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(237) + if (lookahead == '\r') SKIP(123) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 406: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(241) + if (lookahead == '\r') SKIP(124) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 407: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(178) - if (lookahead == '\r') SKIP(120) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(234) + if (lookahead == '\r') SKIP(125) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 408: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(180) - if (lookahead == '\r') SKIP(121) - if (lookahead != 0) ADVANCE(800); + if (lookahead == '\r') SKIP(129) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 409: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(181) - if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(219) + if (lookahead == '\r') SKIP(130) END_STATE(); case 410: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247) - if (lookahead == '\r') SKIP(124) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(200) + if (lookahead == '\r') SKIP(131) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 411: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) - if (lookahead == '\r') SKIP(125) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(146) + if (lookahead == '\r') SKIP(133) + if (lookahead != 0) ADVANCE(803); END_STATE(); case 412: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245) - if (lookahead == '\r') SKIP(126) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 413: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(238) - if (lookahead == '\r') SKIP(127) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 414: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (lookahead == '\r') SKIP(130) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 415: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(184) - if (lookahead == '\r') SKIP(132) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 416: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249) - if (lookahead == '\r') SKIP(133) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 417: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(191) if (lookahead == '\r') SKIP(134) - if (lookahead != 0) ADVANCE(800); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 418: + case 413: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(150) - if (lookahead == '\r') SKIP(136) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 419: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) if (lookahead == '\r') SKIP(137) - if (lookahead != 0) ADVANCE(800); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 420: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(154) - if (lookahead == '\r') SKIP(140) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 421: + case 414: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239) - if (lookahead == '\r') SKIP(141) - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(235) + if (lookahead == '\r') SKIP(138) + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 422: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + case 415: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); - case 423: + case 416: if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(800); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(803); END_STATE(); - case 424: + case 417: if (lookahead != 0 && - lookahead != '\r') ADVANCE(668); - if (lookahead == '\r') ADVANCE(669); + lookahead != '\r') ADVANCE(661); + if (lookahead == '\r') ADVANCE(662); END_STATE(); - case 425: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(280); - if (lookahead == '0') ADVANCE(679); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 418: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(270); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(276); + if (lookahead == '0') ADVANCE(672); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(440) - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(433) + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); + lookahead == ' ') SKIP(418) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 426: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); + case 419: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(527); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(441) - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') SKIP(434) + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(426) + lookahead == ' ') SKIP(419) END_STATE(); - case 427: - if (eof) ADVANCE(442); - if (lookahead == '\n') SKIP(425) + case 420: + if (eof) ADVANCE(435); + if (lookahead == '\n') SKIP(418) END_STATE(); - case 428: - if (eof) ADVANCE(442); - if (lookahead == '\n') SKIP(426) + case 421: + if (eof) ADVANCE(435); + if (lookahead == '\n') SKIP(419) END_STATE(); - case 429: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + case 422: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(422) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); + END_STATE(); + case 423: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(346); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(423) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 430: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(430) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 431: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + case 424: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(431) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + lookahead == ' ') SKIP(424) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')') ADVANCE(803); END_STATE(); - case 432: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + case 425: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(349); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(432) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(425) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 433: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); + case 426: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(433) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(426) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - lookahead != ')') ADVANCE(800); + lookahead != ')') ADVANCE(803); END_STATE(); - case 434: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + case 427: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(351); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(434) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(427) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 435: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); + case 428: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(435) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(428) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 436: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + case 429: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(436) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + lookahead == ' ') SKIP(429) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 437: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); + case 430: + if (eof) ADVANCE(435); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); + lookahead == '}') ADVANCE(650); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(430) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 438: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(689); - if (lookahead == '~') ADVANCE(642); + case 431: + if (eof) ADVANCE(435); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(495); + if (lookahead == '+') ADVANCE(632); + if (lookahead == ',') ADVANCE(445); + if (lookahead == '-') ADVANCE(629); + if (lookahead == '/') ADVANCE(501); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ':') ADVANCE(628); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(451); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(554); + if (lookahead == '^') ADVANCE(619); + if (lookahead == '_') ADVANCE(791); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'i') ADVANCE(800); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(537); + if (lookahead == '}') ADVANCE(681); + if (lookahead == '~') ADVANCE(634); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(431) + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 439: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(337); + case 432: + if (eof) ADVANCE(435); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(727); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(526); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '0') ADVANCE(666); + if (lookahead == ';') ADVANCE(261); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '[') ADVANCE(552); + if (lookahead == '\\') ADVANCE(331); if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(548); + lookahead == '}') ADVANCE(650); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '{') ADVANCE(544); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(439) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); + lookahead == ' ') SKIP(432) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (lookahead != 0) ADVANCE(803); END_STATE(); - case 440: - if (eof) ADVANCE(442); + case 433: + if (eof) ADVANCE(435); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(425) - if (lookahead == '\r') SKIP(427) + lookahead == ' ') SKIP(418) + if (lookahead == '\r') SKIP(420) END_STATE(); - case 441: - if (eof) ADVANCE(442); + case 434: + if (eof) ADVANCE(435); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(426) - if (lookahead == '\r') SKIP(428) + lookahead == ' ') SKIP(419) + if (lookahead == '\r') SKIP(421) END_STATE(); - case 442: + case 435: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 443: + case 436: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 444: + case 437: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 445: + case 438: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 446: + case 439: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 447: + case 440: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 448: + case 441: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 449: + case 442: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(555); - if (lookahead == ';') ADVANCE(554); + if (lookahead == '&') ADVANCE(542); + if (lookahead == ';') ADVANCE(541); END_STATE(); - case 450: + case 443: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(553); + if (lookahead == ';') ADVANCE(540); END_STATE(); - case 451: + case 444: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 452: + case 445: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(707); + if (lookahead == ',') ADVANCE(715); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 453: + case 446: + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(714); + END_STATE(); + case 447: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 454: + case 448: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == '~') ADVANCE(570); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(475); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '~') ADVANCE(558); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 455: + case 449: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(480); + if (lookahead == '=') ADVANCE(474); END_STATE(); - case 456: + case 450: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(480); - if (lookahead == '~') ADVANCE(569); + if (lookahead == '=') ADVANCE(474); + if (lookahead == '~') ADVANCE(557); END_STATE(); - case 457: + case 451: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 458: + case 452: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 459: + case 453: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 460: + case 454: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 461: + case 455: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 462: + case 456: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 463: + case 457: ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 464: + case 458: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 465: + case 459: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 466: + case 460: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 467: + case 461: ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 468: + case 462: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 469: + case 463: ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 470: + case 464: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 471: + case 465: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 472: + case 466: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 473: + case 467: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 474: + case 468: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 475: + case 469: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 476: + case 470: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 477: + case 471: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 478: + case 472: ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 479: + case 473: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 480: + case 474: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 481: + case 475: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 482: + case 476: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 483: + case 477: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 484: + case 478: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 485: + case 479: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 486: + case 480: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 487: + case 481: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 488: + case 482: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(576); - if (lookahead == '<') ADVANCE(627); + if (lookahead == '-') ADVANCE(564); + if (lookahead == '<') ADVANCE(614); END_STATE(); - case 489: + case 483: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(576); - if (lookahead == '<') ADVANCE(627); - if (lookahead == '=') ADVANCE(474); + if (lookahead == '-') ADVANCE(564); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(468); END_STATE(); - case 490: + case 484: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(474); + if (lookahead == '=') ADVANCE(468); END_STATE(); - case 491: + case 485: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 492: + case 486: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(475); - END_STATE(); - case 493: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 494: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(459); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(469); END_STATE(); - case 495: + case 487: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(458); - if (lookahead == '=') ADVANCE(462); + if (lookahead == '+') ADVANCE(453); + if (lookahead == '=') ADVANCE(457); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 496: + case 488: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '+') ADVANCE(452); + if (lookahead == '=') ADVANCE(456); END_STATE(); - case 497: + case 489: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 498: + case 490: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(461); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead == '-') ADVANCE(455); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '=') ADVANCE(459); + if (lookahead == '\\') ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_3(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); + if (!sym_word_character_set_3(lookahead)) ADVANCE(803); END_STATE(); - case 499: + case 491: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(460); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '-') ADVANCE(454); + if (lookahead == '=') ADVANCE(458); END_STATE(); - case 500: + case 492: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(460); - if (lookahead == '=') ADVANCE(464); + if (lookahead == '-') ADVANCE(454); + if (lookahead == '=') ADVANCE(458); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); END_STATE(); - case 501: + case 493: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '\\') ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 502: + case 494: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 503: + case 495: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(521); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '*') ADVANCE(510); + if (lookahead == '=') ADVANCE(461); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 504: + case 496: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(523); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '*') ADVANCE(512); + if (lookahead == '=') ADVANCE(461); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 505: + case 497: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '=') ADVANCE(466); + if (lookahead == '*') ADVANCE(509); + if (lookahead == '=') ADVANCE(460); END_STATE(); - case 506: + case 498: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '=') ADVANCE(466); + if (lookahead == '*') ADVANCE(511); + if (lookahead == '=') ADVANCE(460); END_STATE(); - case 507: + case 499: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 508: + case 500: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 509: + case 501: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(704); - if (lookahead == '%') ADVANCE(706); - if (lookahead == '/') ADVANCE(702); - if (lookahead == '=') ADVANCE(469); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '%') ADVANCE(713); + if (lookahead == '/') ADVANCE(709); + if (lookahead == '=') ADVANCE(463); + if (lookahead == '\\') ADVANCE(416); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13231,2636 +12920,2625 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 510: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(704); - if (lookahead == '%') ADVANCE(706); - if (lookahead == '/') ADVANCE(702); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_5(lookahead)) ADVANCE(800); - END_STATE(); - case 511: + case 502: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(703); - if (lookahead == '%') ADVANCE(705); - if (lookahead == '/') ADVANCE(701); + if (lookahead == '#') ADVANCE(710); + if (lookahead == '%') ADVANCE(712); + if (lookahead == '/') ADVANCE(708); END_STATE(); - case 512: + case 503: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(469); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(463); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 513: + case 504: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(468); - END_STATE(); - case 514: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(700); - if (lookahead == '=') ADVANCE(471); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_6(lookahead)) ADVANCE(800); - END_STATE(); - case 515: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(700); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_7(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(462); END_STATE(); - case 516: + case 505: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(699); + if (lookahead == '%') ADVANCE(706); + if (lookahead == '=') ADVANCE(465); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_5(lookahead)) ADVANCE(803); END_STATE(); - case 517: + case 506: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(471); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '%') ADVANCE(705); END_STATE(); - case 518: + case 507: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(470); + if (lookahead == '=') ADVANCE(465); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 519: + case 508: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(464); END_STATE(); - case 520: + case 509: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 521: + case 510: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(473); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(467); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 522: + case 511: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(472); + if (lookahead == '=') ADVANCE(466); END_STATE(); - case 523: + case 512: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 524: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 525: + case 513: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); + if (lookahead == '&') ADVANCE(561); END_STATE(); - case 526: + case 514: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(489); - if (lookahead == '=') ADVANCE(484); + if (lookahead == '&') ADVANCE(561); + if (lookahead == '(') ADVANCE(723); END_STATE(); - case 527: + case 515: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(488); + if (lookahead == '&') ADVANCE(561); + if (lookahead == '(') ADVANCE(723); + if (lookahead == '<') ADVANCE(483); + if (lookahead == '=') ADVANCE(478); END_STATE(); - case 528: + case 516: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '<') ADVANCE(488); + if (lookahead == '&') ADVANCE(561); + if (lookahead == '(') ADVANCE(723); + if (lookahead == '<') ADVANCE(482); END_STATE(); - case 529: + case 517: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(720); + if (lookahead == '&') ADVANCE(561); + if (lookahead == '<') ADVANCE(482); END_STATE(); - case 530: + case 518: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(490); - if (lookahead == '=') ADVANCE(484); + if (lookahead == '(') ADVANCE(723); + if (lookahead == '<') ADVANCE(484); + if (lookahead == '=') ADVANCE(478); END_STATE(); - case 531: + case 519: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(490); - if (lookahead == '=') ADVANCE(484); - END_STATE(); - case 532: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); - if (lookahead == '|') ADVANCE(575); + if (lookahead == '<') ADVANCE(484); + if (lookahead == '=') ADVANCE(478); END_STATE(); - case 533: + case 520: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '>') ADVANCE(491); - if (lookahead == '|') ADVANCE(575); + if (lookahead == '&') ADVANCE(562); + if (lookahead == '(') ADVANCE(724); + if (lookahead == '=') ADVANCE(479); + if (lookahead == '>') ADVANCE(486); + if (lookahead == '|') ADVANCE(563); END_STATE(); - case 534: + case 521: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '>') ADVANCE(491); - if (lookahead == '|') ADVANCE(575); + if (lookahead == '&') ADVANCE(562); + if (lookahead == '(') ADVANCE(724); + if (lookahead == '>') ADVANCE(485); + if (lookahead == '|') ADVANCE(563); END_STATE(); - case 535: + case 522: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(721); + if (lookahead == '&') ADVANCE(562); + if (lookahead == '>') ADVANCE(485); + if (lookahead == '|') ADVANCE(563); END_STATE(); - case 536: + case 523: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); + if (lookahead == '(') ADVANCE(724); + if (lookahead == '=') ADVANCE(479); + if (lookahead == '>') ADVANCE(486); END_STATE(); - case 537: + case 524: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); + if (lookahead == '=') ADVANCE(479); + if (lookahead == '>') ADVANCE(486); END_STATE(); - case 538: + case 525: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 539: + case 526: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(446); + if (lookahead == '(') ADVANCE(439); END_STATE(); - case 540: + case 527: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 541: + case 528: ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead == ')') ADVANCE(447); + if (lookahead == ')') ADVANCE(440); END_STATE(); - case 542: + case 529: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(542); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 543: + case 530: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 544: + case 531: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '\\') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 545: + case 532: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 546: + case 533: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 547: + case 534: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 548: + case 535: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 549: + case 536: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); + if (lookahead == '&') ADVANCE(546); END_STATE(); - case 550: + case 537: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); + if (lookahead == '&') ADVANCE(546); + if (lookahead == '=') ADVANCE(473); + if (lookahead == '|') ADVANCE(481); END_STATE(); - case 551: + case 538: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '|') ADVANCE(487); + if (lookahead == '&') ADVANCE(546); + if (lookahead == '|') ADVANCE(481); END_STATE(); - case 552: + case 539: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); + if (lookahead == '=') ADVANCE(473); + if (lookahead == '|') ADVANCE(481); END_STATE(); - case 553: + case 540: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 554: + case 541: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(556); + if (lookahead == '&') ADVANCE(543); END_STATE(); - case 555: + case 542: ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); - case 556: + case 543: ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); - case 557: + case 544: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 558: + case 545: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 559: + case 546: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 560: + case 547: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 561: + case 548: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(477); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); - case 562: + case 549: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(482); + if (lookahead == '=') ADVANCE(476); END_STATE(); - case 563: + case 550: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 564: + case 551: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 565: + case 552: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(567); + if (lookahead == '[') ADVANCE(555); END_STATE(); - case 566: + case 553: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 567: + case 554: + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(556); + END_STATE(); + case 555: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 568: + case 556: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 569: + case 557: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 570: + case 558: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 571: + case 559: ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(572); + if (lookahead == '>') ADVANCE(560); END_STATE(); - case 572: + case 560: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 573: + case 561: ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); - case 574: + case 562: ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); - case 575: + case 563: ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); - case 576: + case 564: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); + case 565: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(565); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '\\') ADVANCE(333); + if (lookahead == '~') ADVANCE(634); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(566); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(288); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(567); + if (lookahead == '\\') ADVANCE(306); + END_STATE(); + case 568: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(568); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(340); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(570); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(343); + END_STATE(); + case 571: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(571); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(290); + END_STATE(); + case 572: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(572); + if (lookahead == '+') ADVANCE(633); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '\\') ADVANCE(390); + if (lookahead == '~') ADVANCE(634); + END_STATE(); + case 573: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(573); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(323); + END_STATE(); + case 574: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(574); + if (lookahead == '\\') ADVANCE(307); + END_STATE(); + case 575: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(575); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(393); + END_STATE(); + case 576: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(576); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(344); + END_STATE(); case 577: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(577); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(291); END_STATE(); case 578: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(578); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(292); + if (lookahead == '\\') ADVANCE(308); END_STATE(); case 579: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(579); - if (lookahead == '\\') ADVANCE(311); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(411); END_STATE(); case 580: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(580); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(345); END_STATE(); case 581: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(581); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(346); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(292); END_STATE(); case 582: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(582); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(350); + if (lookahead == '\\') ADVANCE(328); END_STATE(); case 583: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(583); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(294); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '\\') ADVANCE(413); END_STATE(); case 584: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(584); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(374); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(346); END_STATE(); case 585: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(585); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(293); END_STATE(); case 586: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(586); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(329); + if (lookahead == '\\') ADVANCE(309); END_STATE(); case 587: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(587); - if (lookahead == '\\') ADVANCE(312); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(347); END_STATE(); case 588: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(588); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(399); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(324); END_STATE(); case 589: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(589); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(351); + if (lookahead == '\\') ADVANCE(311); END_STATE(); case 590: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(590); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(295); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(348); END_STATE(); case 591: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(591); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(294); END_STATE(); case 592: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(592); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(418); + if (lookahead == '\\') ADVANCE(316); END_STATE(); case 593: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(593); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(349); END_STATE(); case 594: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(594); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(330); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(325); END_STATE(); case 595: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(595); - if (lookahead == '\\') ADVANCE(334); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 596: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(596); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(420); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(295); END_STATE(); case 597: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(597); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(353); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(351); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(598); - if (lookahead == '-') ADVANCE(501); + if (lookahead == '-') ADVANCE(493); if (lookahead == '\\') ADVANCE(296); END_STATE(); case 599: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(599); - if (lookahead == '\\') ADVANCE(314); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(396); END_STATE(); case 600: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(600); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(354); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(301); END_STATE(); case 601: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(601); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(297); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(399); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(602); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(310); END_STATE(); case 603: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(603); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(401); END_STATE(); case 604: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(604); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(298); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '\\') ADVANCE(314); END_STATE(); case 605: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(605); - if (lookahead == '\\') ADVANCE(322); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(395); END_STATE(); case 606: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(606); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(356); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(397); END_STATE(); case 607: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(607); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(331); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(400); END_STATE(); case 608: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(608); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(357); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(402); END_STATE(); case 609: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(609); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(299); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(398); END_STATE(); case 610: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(610); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(358); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(403); END_STATE(); case 611: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(611); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(362); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(612); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(403); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(368); END_STATE(); case 613: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(613); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(302); + if (lookahead == '-') ADVANCE(795); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 614: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(315); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(406); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(480); + if (lookahead == '=') ADVANCE(470); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(319); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(480); + if (lookahead == '=') ADVANCE(470); + if (lookahead == '>') ADVANCE(559); END_STATE(); case 618: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(401); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(480); + if (lookahead == '>') ADVANCE(559); END_STATE(); case 619: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(619); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(402); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(472); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '^') ADVANCE(717); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 620: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(620); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(407); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(472); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 621: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(405); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(471); END_STATE(); case 622: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(622); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(408); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(716); END_STATE(); case 623: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(409); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(624); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(372); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 625: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(625); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(376); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 626: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(626); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(415); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(698); + if (lookahead == '-') ADVANCE(695); + if (lookahead == '=') ADVANCE(692); + if (lookahead == '?') ADVANCE(702); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 627: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(697); + if (lookahead == '-') ADVANCE(694); + if (lookahead == '=') ADVANCE(691); + if (lookahead == '?') ADVANCE(701); END_STATE(); case 628: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 629: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 630: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); - if (lookahead == '>') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(636); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '>') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(636); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); END_STATE(); case 632: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(478); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(477); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(635); END_STATE(); case 634: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(708); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 635: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 636: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); case 637: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); case 638: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(695); - if (lookahead == '-') ADVANCE(693); - if (lookahead == '=') ADVANCE(691); - if (lookahead == '?') ADVANCE(697); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(694); - if (lookahead == '-') ADVANCE(692); - if (lookahead == '=') ADVANCE(690); - if (lookahead == '?') ADVANCE(696); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 640: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(693); - if (lookahead == '?') ADVANCE(697); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 641: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); case 642: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); + ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); case 643: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '+') ADVANCE(642); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 644: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '-') ADVANCE(642); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - END_STATE(); - case 645: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); - END_STATE(); - case 647: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 648: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_RBRACE2); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_concatenation_token1); - END_STATE(); - case 651: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(263); + if (lookahead == '(') ADVANCE(719); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '{') ADVANCE(680); END_STATE(); - case 652: + case 645: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(716); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); + if (lookahead == '\'') ADVANCE(263); + if (lookahead == '(') ADVANCE(718); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '{') ADVANCE(680); END_STATE(); - case 653: + case 646: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(716); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); + if (lookahead == '(') ADVANCE(719); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '{') ADVANCE(680); END_STATE(); - case 654: + case 647: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(715); - if (lookahead == '`') ADVANCE(719); + if (lookahead == '(') ADVANCE(718); + if (lookahead == '`') ADVANCE(722); END_STATE(); - case 655: + case 648: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(715); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); + if (lookahead == '(') ADVANCE(718); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '{') ADVANCE(680); END_STATE(); - case 656: + case 649: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(688); + if (lookahead == '{') ADVANCE(680); END_STATE(); - case 657: + case 650: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 658: + case 651: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(568); + if (lookahead == ']') ADVANCE(556); END_STATE(); - case 659: + case 652: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 660: + case 653: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\\') ADVANCE(424); + if (lookahead == '\n') ADVANCE(659); + if (lookahead == '\\') ADVANCE(417); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 661: + case 654: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\\') ADVANCE(722); + if (lookahead == '\n') ADVANCE(661); + if (lookahead == '\\') ADVANCE(725); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(661); + lookahead != '`') ADVANCE(654); END_STATE(); - case 662: + case 655: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\\') ADVANCE(424); + if (lookahead == '\n') ADVANCE(657); + if (lookahead == '\\') ADVANCE(417); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 663: + case 656: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\\') ADVANCE(424); + if (lookahead == '\n') ADVANCE(658); + if (lookahead == '\\') ADVANCE(417); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 664: + case 657: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(320); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(664); + lookahead == ' ') ADVANCE(657); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); if (lookahead != 0 && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 665: + case 658: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(321); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(665); + lookahead == ' ') ADVANCE(658); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); if (lookahead != 0 && lookahead != '"' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 666: + case 659: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(661); - if (lookahead == '$') ADVANCE(653); - if (lookahead == '(') ADVANCE(667); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(654); + if (lookahead == '$') ADVANCE(646); + if (lookahead == '(') ADVANCE(660); + if (lookahead == '\\') ADVANCE(382); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(666); - if (lookahead != 0) ADVANCE(668); + lookahead == ' ') ADVANCE(659); + if (lookahead != 0) ADVANCE(661); END_STATE(); - case 667: + case 660: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '(') ADVANCE(446); - if (lookahead == '\\') ADVANCE(424); + if (lookahead == '(') ADVANCE(439); + if (lookahead == '\\') ADVANCE(417); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 668: + case 661: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(424); + if (lookahead == '\\') ADVANCE(417); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(668); + lookahead != '`') ADVANCE(661); END_STATE(); - case 669: + case 662: ACCEPT_TOKEN(sym__string_content); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && lookahead != '\\' && - lookahead != '`') ADVANCE(668); - if (lookahead == '\\') ADVANCE(424); + lookahead != '`') ADVANCE(661); + if (lookahead == '\\') ADVANCE(417); END_STATE(); - case 670: + case 663: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 671: + case 664: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 672: + case 665: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(671); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); + if (lookahead == '\'') ADVANCE(664); + if (lookahead == '\\') ADVANCE(264); + if (lookahead != 0) ADVANCE(263); END_STATE(); - case 673: + case 666: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); + if (lookahead == '#') ADVANCE(677); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'x') ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (!sym_word_character_set_6(lookahead)) ADVANCE(803); END_STATE(); - case 674: + case 667: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '#') ADVANCE(677); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'x') ADVANCE(732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_7(lookahead)) ADVANCE(803); END_STATE(); - case 675: + case 668: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); + if (lookahead == '#') ADVANCE(677); + if (lookahead == '\\') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (!sym_word_character_set_6(lookahead)) ADVANCE(803); END_STATE(); - case 676: + case 669: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '#') ADVANCE(677); + if (lookahead == '\\') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_7(lookahead)) ADVANCE(803); END_STATE(); - case 677: + case 670: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); + if (lookahead == '#') ADVANCE(677); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_7(lookahead)) ADVANCE(803); END_STATE(); - case 678: + case 671: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (lookahead == 'x') ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + if (lookahead == '#') ADVANCE(678); + if (lookahead == 'x') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); - case 679: + case 672: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (lookahead == 'x') ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (lookahead == '#') ADVANCE(678); + if (lookahead == 'x') ADVANCE(743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 680: + case 673: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); + if (lookahead == '#') ADVANCE(678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); END_STATE(); - case 681: + case 674: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (lookahead == '#') ADVANCE(678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 682: + case 675: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '\\') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(675); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 683: + case 676: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(676); END_STATE(); - case 684: + case 677: ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '\\') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(675); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 685: + case 678: ACCEPT_TOKEN(aux_sym_number_token2); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(676); END_STATE(); - case 686: + case 679: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); + case 680: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 681: + ACCEPT_TOKEN(anon_sym_RBRACE3); + END_STATE(); + case 682: + ACCEPT_TOKEN(anon_sym_BANG2); + END_STATE(); + case 683: + ACCEPT_TOKEN(anon_sym_BANG2); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 684: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 685: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 686: + ACCEPT_TOKEN(anon_sym_STAR2); + END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '#') ADVANCE(698); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(510); + if (lookahead == '=') ADVANCE(461); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_RBRACE3); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_EQ2); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 691: ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_COLON_DASH); + ACCEPT_TOKEN(anon_sym_COLON_EQ); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 693: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); + ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); case 695: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_POUND_POUND); + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 699: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 700: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_QMARK2); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 701: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); case 702: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 703: - ACCEPT_TOKEN(anon_sym_SLASH_POUND); + ACCEPT_TOKEN(aux_sym__expansion_expression_token1); + if (lookahead == '\\') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(703); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); case 704: - ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(aux_sym__expansion_expression_token1); + if (lookahead == '\\') ADVANCE(380); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(704); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(703); END_STATE(); case 705: - ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); case 706: - ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 707: - ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + ACCEPT_TOKEN(aux_sym__expansion_regex_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(707); END_STATE(); case 708: - ACCEPT_TOKEN(anon_sym_CARET_CARET); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 709: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 710: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); case 711: - ACCEPT_TOKEN(anon_sym_COMMA2); - if (lookahead == ',') ADVANCE(712); + ACCEPT_TOKEN(anon_sym_SLASH_POUND); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 712: - ACCEPT_TOKEN(anon_sym_COMMA_COMMA2); + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); case 713: - ACCEPT_TOKEN(anon_sym_CARET2); - if (lookahead == '^') ADVANCE(714); + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 714: - ACCEPT_TOKEN(anon_sym_CARET_CARET2); + ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); case 715: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 716: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(645); + ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); case 717: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_CARET_CARET); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 718: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + END_STATE(); + case 719: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '(') ADVANCE(637); + END_STATE(); + case 720: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 721: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(650); + if (lookahead == '`') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(287); + lookahead == ' ') ADVANCE(283); END_STATE(); - case 719: + case 722: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 720: + case 723: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 721: + case 724: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 722: + case 725: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\r') ADVANCE(661); - if (lookahead != 0) ADVANCE(661); + if (lookahead == '\n') ADVANCE(661); + if (lookahead == '\r') ADVANCE(654); + if (lookahead != 0) ADVANCE(654); END_STATE(); - case 723: + case 726: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(725); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(728); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(724); + (11 <= lookahead && lookahead <= '\r')) ADVANCE(727); END_STATE(); - case 724: + case 727: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(724); + lookahead != '\n') ADVANCE(727); END_STATE(); - case 725: + case 728: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(723); - if (!sym_word_character_set_1(lookahead)) ADVANCE(725); + if (lookahead == '\\') ADVANCE(726); + if (!sym_word_character_set_1(lookahead)) ADVANCE(728); END_STATE(); - case 726: + case 729: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'a') ADVANCE(727); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'a') ADVANCE(730); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 727: + case 730: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'c') ADVANCE(544); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'c') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 728: + case 731: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 's') ADVANCE(726); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 's') ADVANCE(729); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 729: + case 732: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '\\') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 730: + case 733: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '\\') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(733); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 731: + case 734: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(732); + if (lookahead == 'a') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 732: + case 735: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(546); + if (lookahead == 'c') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 733: + case 736: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(731); + if (lookahead == 's') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 734: + case 737: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 735: + case 738: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 736: + case 739: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(737); + if (lookahead == 'a') ADVANCE(740); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 737: + case 740: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(547); + if (lookahead == 'c') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 738: + case 741: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(445); + if (lookahead == 'n') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 739: + case 742: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(736); + if (lookahead == 's') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 740: + case 743: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 741: + case 744: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 742: + case 745: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(566); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(288); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(800); + (lookahead < '[' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 743: + case 746: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(567); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(306); + if (lookahead == '_') ADVANCE(793); + if (lookahead == 'e') ADVANCE(742); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + lookahead == ' ') SKIP(59) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 744: + case 747: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(571); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(290); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(736); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(136) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 745: + case 748: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); + if (lookahead == '\n') ADVANCE(573); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(323); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(140) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(800); + (lookahead < '[' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 746: + case 749: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(574); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(145) + lookahead == ' ') SKIP(141) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 747: + case 750: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(577); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(291); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(144) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 748: + case 751: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(149) + lookahead == ' ') SKIP(145) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 749: + case 752: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == 'e') ADVANCE(736); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 750: + case 753: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(153) + lookahead == ' ') SKIP(149) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 751: + case 754: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(293); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(152) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 752: + case 755: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(309); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(157) + lookahead == ' ') SKIP(153) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 753: + case 756: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(159) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(155) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 754: + case 757: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) + lookahead == ' ') SKIP(156) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 755: + case 758: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(442); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(158) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 756: + case 759: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'i') ADVANCE(738); + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '_') ADVANCE(793); + if (lookahead == 'i') ADVANCE(741); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) + lookahead == ' ') SKIP(159) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 757: + case 760: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(161) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 758: + case 761: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(295); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 759: + case 762: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 760: + case 763: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(167) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 761: + case 764: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(615); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == ';') ADVANCE(443); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(310); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(169) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 762: + case 765: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(171) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); - case 765: + case 766: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(281); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(514); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(182) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '=') ADVANCE(797); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(183) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(184) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + lookahead != '[' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(521); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - lookahead != '{' && - lookahead != '|') ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(266); + if (lookahead == '>') ADVANCE(267); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(186) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); + (lookahead < '{' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(548); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '\'') ADVANCE(262); + if (lookahead == '(') ADVANCE(265); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '+') ADVANCE(487); + if (lookahead == '-') ADVANCE(490); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(788); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '=') ADVANCE(448); + if (lookahead == '>') ADVANCE(520); + if (lookahead == '?') ADVANCE(624); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(289); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(620); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(720); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + lookahead == ' ') SKIP(194) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (lookahead != 0 && + lookahead != ')' && + (lookahead < ';' || '}' < lookahead)) ADVANCE(803); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(528); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(298); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) + lookahead == ' ') SKIP(203) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) + lookahead == ' ') SKIP(204) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == ')') ADVANCE(271); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(329); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) + lookahead == ' ') SKIP(205) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ':') ADVANCE(625); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(302); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(213) + lookahead == ' ') SKIP(206) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) + lookahead == ' ') SKIP(207) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == ']') ADVANCE(282); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) + lookahead == ' ') SKIP(208) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '&') ADVANCE(616); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(488); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '/') ADVANCE(504); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '=') ADVANCE(450); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(304); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) + lookahead == ' ') SKIP(209) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(312); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) + lookahead == ' ') SKIP(221) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(548); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '&') ADVANCE(260); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(313); + if (lookahead == ']') ADVANCE(553); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) + lookahead == ' ') SKIP(222) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '}') ADVANCE(689); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == ')') ADVANCE(527); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(318); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) + lookahead == ' ') SKIP(223) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '/') ADVANCE(500); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(317); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '}') ADVANCE(681); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) + lookahead == ' ') SKIP(224) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(328); - if (lookahead == '_') ADVANCE(790); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '"') ADVANCE(652); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(793); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) + lookahead == ' ') SKIP(226) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 784: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '!') ADVANCE(547); + if (lookahead == '#') ADVANCE(679); + if (lookahead == '$') ADVANCE(643); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '-') ADVANCE(489); + if (lookahead == '0') ADVANCE(790); + if (lookahead == '?') ADVANCE(623); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(793); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(228) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); + END_STATE(); + case 785: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(784); - END_STATE(); - case 785: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(785); END_STATE(); case 786: + ACCEPT_TOKEN(anon_sym_AT2); + END_STATE(); + case 787: + ACCEPT_TOKEN(anon_sym_AT2); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 788: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(684); + if (lookahead == '#') ADVANCE(677); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (lookahead == 'x') ADVANCE(737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_7(lookahead)) ADVANCE(803); END_STATE(); - case 787: + case 789: + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 790: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); - case 788: + case 791: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); - case 789: + case 792: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(738); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); - case 790: + case 793: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 791: - ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(648); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 792: - ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 793: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(744); END_STATE(); case 794: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == '~') ADVANCE(570); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); + if (lookahead == '.') ADVANCE(640); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 795: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'a') ADVANCE(796); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '0') ADVANCE(666); + if (lookahead == '\\') ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); + if (!sym_word_character_set_4(lookahead)) ADVANCE(803); END_STATE(); case 796: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'c') ADVANCE(545); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(477); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 797: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'n') ADVANCE(444); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '=') ADVANCE(475); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '~') ADVANCE(558); + if (!sym_word_character_set_2(lookahead)) ADVANCE(803); END_STATE(); case 798: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 's') ADVANCE(795); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'a') ADVANCE(799); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 799: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'c') ADVANCE(532); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 800: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 'n') ADVANCE(437); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); END_STATE(); case 801: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == 's') ADVANCE(798); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(416); + if (!sym_word_character_set_1(lookahead)) ADVANCE(803); + END_STATE(); + case 804: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(804); END_STATE(); default: return false; @@ -15893,7 +15571,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(20); if (lookahead == 'w') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(22) END_STATE(); case 1: ACCEPT_TOKEN(anon_sym_A); @@ -15918,275 +15596,294 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 8: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(0) - if (lookahead == '\r') SKIP(22) + lookahead == ' ') SKIP(22) + if (lookahead == '\r') SKIP(23) END_STATE(); case 9: ACCEPT_TOKEN(anon_sym_a); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'a') ADVANCE(24); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); END_STATE(); case 12: - if (lookahead == 'l') ADVANCE(26); - if (lookahead == 'x') ADVANCE(27); + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'x') ADVANCE(28); END_STATE(); case 13: - if (lookahead == 'i') ADVANCE(28); - if (lookahead == 'o') ADVANCE(29); - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'i') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); case 14: - if (lookahead == 'f') ADVANCE(31); + if (lookahead == 'f') ADVANCE(32); END_STATE(); case 15: ACCEPT_TOKEN(anon_sym_k); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'o') ADVANCE(33); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(33); + if (lookahead == 'e') ADVANCE(34); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 19: - if (lookahead == 'h') ADVANCE(35); - if (lookahead == 'y') ADVANCE(36); + if (lookahead == 'h') ADVANCE(36); + if (lookahead == 'y') ADVANCE(37); END_STATE(); case 20: ACCEPT_TOKEN(anon_sym_u); - if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(38); + if (lookahead == 'h') ADVANCE(39); END_STATE(); case 22: - if (lookahead == '\n') SKIP(0) + if (lookahead == '\\') SKIP(8) + if (lookahead == 'c') ADVANCE(10); + if (lookahead == 'd') ADVANCE(11); + if (lookahead == 'e') ADVANCE(12); + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'i') ADVANCE(14); + if (lookahead == 'l') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'w') ADVANCE(21); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22) END_STATE(); case 23: - if (lookahead == 's') ADVANCE(39); + if (lookahead == '\n') SKIP(22) END_STATE(); case 24: - if (lookahead == 'c') ADVANCE(40); + if (lookahead == 's') ADVANCE(41); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(41); + if (lookahead == 'c') ADVANCE(42); END_STATE(); case 26: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 's') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') ADVANCE(43); END_STATE(); case 27: - if (lookahead == 'p') ADVANCE(44); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_fi); + if (lookahead == 'p') ADVANCE(46); END_STATE(); case 29: - if (lookahead == 'r') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_fi); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'r') ADVANCE(47); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'n') ADVANCE(48); END_STATE(); case 32: - if (lookahead == 'c') ADVANCE(47); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'c') ADVANCE(49); END_STATE(); case 34: - if (lookahead == 'l') ADVANCE(49); + if (lookahead == 'a') ADVANCE(50); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'l') ADVANCE(51); END_STATE(); case 36: - if (lookahead == 'p') ADVANCE(51); + if (lookahead == 'e') ADVANCE(52); END_STATE(); case 37: - if (lookahead == 's') ADVANCE(52); - if (lookahead == 't') ADVANCE(53); + if (lookahead == 'p') ADVANCE(53); END_STATE(); case 38: - if (lookahead == 'i') ADVANCE(54); + if (lookahead == 's') ADVANCE(54); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'i') ADVANCE(56); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(56); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 41: if (lookahead == 'e') ADVANCE(57); END_STATE(); case 42: - if (lookahead == 'f') ADVANCE(58); + if (lookahead == 'l') ADVANCE(58); END_STATE(); case 43: if (lookahead == 'e') ADVANCE(59); END_STATE(); case 44: - if (lookahead == 'o') ADVANCE(60); + if (lookahead == 'f') ADVANCE(60); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 46: - if (lookahead == 'c') ADVANCE(61); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 47: - if (lookahead == 'a') ADVANCE(62); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 48: - if (lookahead == 'd') ADVANCE(63); + if (lookahead == 'c') ADVANCE(63); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 'a') ADVANCE(64); END_STATE(); case 50: - if (lookahead == 'n') ADVANCE(65); + if (lookahead == 'd') ADVANCE(65); END_STATE(); case 51: if (lookahead == 'e') ADVANCE(66); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'n') ADVANCE(67); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 54: - if (lookahead == 'l') ADVANCE(69); + if (lookahead == 'e') ADVANCE(69); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'i') ADVANCE(70); END_STATE(); case 56: - if (lookahead == 'a') ADVANCE(70); + if (lookahead == 'l') ADVANCE(71); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_done); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'a') ADVANCE(72); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_done); END_STATE(); case 60: - if (lookahead == 'r') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 61: - if (lookahead == 't') ADVANCE(72); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 62: - if (lookahead == 'l') ADVANCE(73); + if (lookahead == 'r') ADVANCE(73); END_STATE(); case 63: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'l') ADVANCE(75); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 66: - if (lookahead == 's') ADVANCE(76); + if (lookahead == 'c') ADVANCE(77); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(77); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 68: - if (lookahead == 'l') ADVANCE(78); + if (lookahead == 's') ADVANCE(78); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 't') ADVANCE(79); END_STATE(); case 70: - if (lookahead == 'r') ADVANCE(80); + if (lookahead == 'l') ADVANCE(80); END_STATE(); case 71: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 72: - if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'r') ADVANCE(82); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_local); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 75: - if (lookahead == 't') ADVANCE(84); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'n') ADVANCE(85); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(86); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_until); + if (lookahead == 'e') ADVANCE(87); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(88); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(87); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 82: - if (lookahead == 'o') ADVANCE(88); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 83: - if (lookahead == 'l') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_select); + if (lookahead == 'o') ADVANCE(90); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 88: - if (lookahead == 'n') ADVANCE(92); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 89: - if (lookahead == 'y') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_declare); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_typeset); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 91: - if (lookahead == 'v') ADVANCE(94); + if (lookahead == 'y') ADVANCE(95); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_function); + ACCEPT_TOKEN(anon_sym_typeset); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_readonly); + if (lookahead == 'v') ADVANCE(96); END_STATE(); case 94: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 96: ACCEPT_TOKEN(anon_sym_unsetenv); END_STATE(); default: @@ -16196,5046 +15893,4783 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 439, .external_lex_state = 2}, - [2] = {.lex_state = 194, .external_lex_state = 2}, - [3] = {.lex_state = 194, .external_lex_state = 2}, - [4] = {.lex_state = 194, .external_lex_state = 2}, - [5] = {.lex_state = 194, .external_lex_state = 2}, - [6] = {.lex_state = 194, .external_lex_state = 2}, - [7] = {.lex_state = 194, .external_lex_state = 2}, + [1] = {.lex_state = 432, .external_lex_state = 2}, + [2] = {.lex_state = 188, .external_lex_state = 2}, + [3] = {.lex_state = 188, .external_lex_state = 2}, + [4] = {.lex_state = 188, .external_lex_state = 2}, + [5] = {.lex_state = 188, .external_lex_state = 2}, + [6] = {.lex_state = 188, .external_lex_state = 2}, + [7] = {.lex_state = 188, .external_lex_state = 2}, [8] = {.lex_state = 5, .external_lex_state = 3}, - [9] = {.lex_state = 194, .external_lex_state = 2}, - [10] = {.lex_state = 194, .external_lex_state = 2}, + [9] = {.lex_state = 188, .external_lex_state = 2}, + [10] = {.lex_state = 188, .external_lex_state = 2}, [11] = {.lex_state = 5, .external_lex_state = 3}, - [12] = {.lex_state = 194, .external_lex_state = 2}, - [13] = {.lex_state = 143, .external_lex_state = 3}, - [14] = {.lex_state = 195, .external_lex_state = 4}, - [15] = {.lex_state = 195, .external_lex_state = 4}, - [16] = {.lex_state = 195, .external_lex_state = 4}, - [17] = {.lex_state = 439, .external_lex_state = 2}, - [18] = {.lex_state = 439, .external_lex_state = 2}, - [19] = {.lex_state = 439, .external_lex_state = 2}, - [20] = {.lex_state = 439, .external_lex_state = 2}, - [21] = {.lex_state = 439, .external_lex_state = 2}, - [22] = {.lex_state = 439, .external_lex_state = 2}, - [23] = {.lex_state = 197, .external_lex_state = 2}, - [24] = {.lex_state = 197, .external_lex_state = 2}, - [25] = {.lex_state = 197, .external_lex_state = 2}, - [26] = {.lex_state = 197, .external_lex_state = 2}, - [27] = {.lex_state = 197, .external_lex_state = 2}, - [28] = {.lex_state = 197, .external_lex_state = 2}, - [29] = {.lex_state = 197, .external_lex_state = 2}, - [30] = {.lex_state = 197, .external_lex_state = 2}, - [31] = {.lex_state = 197, .external_lex_state = 2}, - [32] = {.lex_state = 197, .external_lex_state = 2}, - [33] = {.lex_state = 197, .external_lex_state = 2}, - [34] = {.lex_state = 197, .external_lex_state = 2}, - [35] = {.lex_state = 439, .external_lex_state = 2}, - [36] = {.lex_state = 439, .external_lex_state = 2}, - [37] = {.lex_state = 439, .external_lex_state = 2}, - [38] = {.lex_state = 186, .external_lex_state = 5}, - [39] = {.lex_state = 439, .external_lex_state = 2}, - [40] = {.lex_state = 439, .external_lex_state = 2}, - [41] = {.lex_state = 439, .external_lex_state = 2}, - [42] = {.lex_state = 439, .external_lex_state = 2}, - [43] = {.lex_state = 439, .external_lex_state = 2}, - [44] = {.lex_state = 439, .external_lex_state = 2}, - [45] = {.lex_state = 439, .external_lex_state = 2}, - [46] = {.lex_state = 439, .external_lex_state = 2}, - [47] = {.lex_state = 439, .external_lex_state = 2}, - [48] = {.lex_state = 439, .external_lex_state = 2}, - [49] = {.lex_state = 439, .external_lex_state = 2}, - [50] = {.lex_state = 439, .external_lex_state = 2}, - [51] = {.lex_state = 439, .external_lex_state = 2}, - [52] = {.lex_state = 439, .external_lex_state = 2}, - [53] = {.lex_state = 439, .external_lex_state = 2}, - [54] = {.lex_state = 439, .external_lex_state = 2}, - [55] = {.lex_state = 439, .external_lex_state = 2}, - [56] = {.lex_state = 439, .external_lex_state = 2}, - [57] = {.lex_state = 439, .external_lex_state = 2}, - [58] = {.lex_state = 439, .external_lex_state = 2}, - [59] = {.lex_state = 439, .external_lex_state = 2}, - [60] = {.lex_state = 439, .external_lex_state = 2}, - [61] = {.lex_state = 439, .external_lex_state = 2}, - [62] = {.lex_state = 439, .external_lex_state = 2}, - [63] = {.lex_state = 439, .external_lex_state = 2}, - [64] = {.lex_state = 439, .external_lex_state = 2}, - [65] = {.lex_state = 439, .external_lex_state = 2}, - [66] = {.lex_state = 439, .external_lex_state = 2}, - [67] = {.lex_state = 439, .external_lex_state = 2}, - [68] = {.lex_state = 439, .external_lex_state = 2}, - [69] = {.lex_state = 439, .external_lex_state = 2}, - [70] = {.lex_state = 439, .external_lex_state = 2}, - [71] = {.lex_state = 439, .external_lex_state = 2}, - [72] = {.lex_state = 439, .external_lex_state = 2}, - [73] = {.lex_state = 439, .external_lex_state = 2}, - [74] = {.lex_state = 439, .external_lex_state = 2}, - [75] = {.lex_state = 439, .external_lex_state = 2}, - [76] = {.lex_state = 439, .external_lex_state = 2}, - [77] = {.lex_state = 439, .external_lex_state = 2}, - [78] = {.lex_state = 198, .external_lex_state = 2}, - [79] = {.lex_state = 439, .external_lex_state = 2}, - [80] = {.lex_state = 439, .external_lex_state = 2}, - [81] = {.lex_state = 439, .external_lex_state = 2}, - [82] = {.lex_state = 439, .external_lex_state = 2}, - [83] = {.lex_state = 439, .external_lex_state = 2}, - [84] = {.lex_state = 439, .external_lex_state = 2}, - [85] = {.lex_state = 439, .external_lex_state = 2}, - [86] = {.lex_state = 439, .external_lex_state = 2}, - [87] = {.lex_state = 439, .external_lex_state = 2}, - [88] = {.lex_state = 439, .external_lex_state = 2}, - [89] = {.lex_state = 439, .external_lex_state = 2}, - [90] = {.lex_state = 439, .external_lex_state = 2}, - [91] = {.lex_state = 439, .external_lex_state = 2}, - [92] = {.lex_state = 439, .external_lex_state = 2}, - [93] = {.lex_state = 439, .external_lex_state = 2}, - [94] = {.lex_state = 198, .external_lex_state = 2}, - [95] = {.lex_state = 439, .external_lex_state = 2}, - [96] = {.lex_state = 439, .external_lex_state = 2}, - [97] = {.lex_state = 439, .external_lex_state = 2}, - [98] = {.lex_state = 198, .external_lex_state = 2}, - [99] = {.lex_state = 439, .external_lex_state = 2}, - [100] = {.lex_state = 439, .external_lex_state = 2}, - [101] = {.lex_state = 439, .external_lex_state = 2}, - [102] = {.lex_state = 439, .external_lex_state = 2}, - [103] = {.lex_state = 439, .external_lex_state = 2}, - [104] = {.lex_state = 439, .external_lex_state = 2}, - [105] = {.lex_state = 439, .external_lex_state = 2}, - [106] = {.lex_state = 439, .external_lex_state = 2}, - [107] = {.lex_state = 439, .external_lex_state = 2}, - [108] = {.lex_state = 439, .external_lex_state = 2}, - [109] = {.lex_state = 439, .external_lex_state = 2}, - [110] = {.lex_state = 439, .external_lex_state = 2}, - [111] = {.lex_state = 439, .external_lex_state = 2}, - [112] = {.lex_state = 439, .external_lex_state = 2}, - [113] = {.lex_state = 439, .external_lex_state = 2}, - [114] = {.lex_state = 439, .external_lex_state = 2}, - [115] = {.lex_state = 439, .external_lex_state = 2}, - [116] = {.lex_state = 439, .external_lex_state = 2}, - [117] = {.lex_state = 439, .external_lex_state = 2}, - [118] = {.lex_state = 439, .external_lex_state = 2}, - [119] = {.lex_state = 439, .external_lex_state = 2}, - [120] = {.lex_state = 439, .external_lex_state = 2}, - [121] = {.lex_state = 439, .external_lex_state = 2}, - [122] = {.lex_state = 439, .external_lex_state = 2}, - [123] = {.lex_state = 439, .external_lex_state = 2}, - [124] = {.lex_state = 439, .external_lex_state = 2}, - [125] = {.lex_state = 439, .external_lex_state = 2}, - [126] = {.lex_state = 439, .external_lex_state = 2}, - [127] = {.lex_state = 439, .external_lex_state = 2}, - [128] = {.lex_state = 439, .external_lex_state = 2}, - [129] = {.lex_state = 439, .external_lex_state = 2}, - [130] = {.lex_state = 439, .external_lex_state = 2}, - [131] = {.lex_state = 439, .external_lex_state = 2}, - [132] = {.lex_state = 439, .external_lex_state = 2}, - [133] = {.lex_state = 439, .external_lex_state = 2}, - [134] = {.lex_state = 439, .external_lex_state = 2}, - [135] = {.lex_state = 439, .external_lex_state = 2}, - [136] = {.lex_state = 439, .external_lex_state = 2}, - [137] = {.lex_state = 439, .external_lex_state = 2}, - [138] = {.lex_state = 439, .external_lex_state = 2}, - [139] = {.lex_state = 439, .external_lex_state = 2}, - [140] = {.lex_state = 439, .external_lex_state = 2}, - [141] = {.lex_state = 439, .external_lex_state = 2}, - [142] = {.lex_state = 198, .external_lex_state = 2}, - [143] = {.lex_state = 198, .external_lex_state = 2}, - [144] = {.lex_state = 439, .external_lex_state = 2}, - [145] = {.lex_state = 439, .external_lex_state = 2}, - [146] = {.lex_state = 439, .external_lex_state = 2}, - [147] = {.lex_state = 439, .external_lex_state = 2}, - [148] = {.lex_state = 439, .external_lex_state = 2}, - [149] = {.lex_state = 439, .external_lex_state = 2}, - [150] = {.lex_state = 439, .external_lex_state = 2}, - [151] = {.lex_state = 439, .external_lex_state = 2}, - [152] = {.lex_state = 439, .external_lex_state = 2}, - [153] = {.lex_state = 439, .external_lex_state = 2}, - [154] = {.lex_state = 439, .external_lex_state = 2}, - [155] = {.lex_state = 439, .external_lex_state = 2}, - [156] = {.lex_state = 439, .external_lex_state = 2}, - [157] = {.lex_state = 439, .external_lex_state = 2}, - [158] = {.lex_state = 439, .external_lex_state = 2}, - [159] = {.lex_state = 439, .external_lex_state = 2}, - [160] = {.lex_state = 439, .external_lex_state = 2}, - [161] = {.lex_state = 439, .external_lex_state = 2}, - [162] = {.lex_state = 439, .external_lex_state = 2}, - [163] = {.lex_state = 439, .external_lex_state = 2}, - [164] = {.lex_state = 439, .external_lex_state = 2}, - [165] = {.lex_state = 439, .external_lex_state = 2}, - [166] = {.lex_state = 439, .external_lex_state = 2}, - [167] = {.lex_state = 439, .external_lex_state = 2}, - [168] = {.lex_state = 439, .external_lex_state = 2}, - [169] = {.lex_state = 439, .external_lex_state = 2}, - [170] = {.lex_state = 439, .external_lex_state = 2}, - [171] = {.lex_state = 439, .external_lex_state = 2}, - [172] = {.lex_state = 439, .external_lex_state = 2}, - [173] = {.lex_state = 439, .external_lex_state = 2}, - [174] = {.lex_state = 439, .external_lex_state = 2}, - [175] = {.lex_state = 439, .external_lex_state = 2}, - [176] = {.lex_state = 439, .external_lex_state = 2}, - [177] = {.lex_state = 439, .external_lex_state = 2}, - [178] = {.lex_state = 439, .external_lex_state = 2}, - [179] = {.lex_state = 439, .external_lex_state = 2}, - [180] = {.lex_state = 439, .external_lex_state = 2}, - [181] = {.lex_state = 439, .external_lex_state = 2}, - [182] = {.lex_state = 439, .external_lex_state = 2}, - [183] = {.lex_state = 439, .external_lex_state = 2}, - [184] = {.lex_state = 439, .external_lex_state = 2}, - [185] = {.lex_state = 439, .external_lex_state = 2}, - [186] = {.lex_state = 439, .external_lex_state = 2}, - [187] = {.lex_state = 439, .external_lex_state = 2}, - [188] = {.lex_state = 439, .external_lex_state = 2}, - [189] = {.lex_state = 439, .external_lex_state = 2}, - [190] = {.lex_state = 439, .external_lex_state = 2}, - [191] = {.lex_state = 439, .external_lex_state = 2}, - [192] = {.lex_state = 439, .external_lex_state = 2}, - [193] = {.lex_state = 439, .external_lex_state = 2}, - [194] = {.lex_state = 439, .external_lex_state = 2}, - [195] = {.lex_state = 439, .external_lex_state = 2}, - [196] = {.lex_state = 439, .external_lex_state = 2}, - [197] = {.lex_state = 439, .external_lex_state = 2}, - [198] = {.lex_state = 439, .external_lex_state = 2}, - [199] = {.lex_state = 439, .external_lex_state = 2}, - [200] = {.lex_state = 439, .external_lex_state = 2}, - [201] = {.lex_state = 198, .external_lex_state = 2}, - [202] = {.lex_state = 439, .external_lex_state = 2}, - [203] = {.lex_state = 439, .external_lex_state = 2}, - [204] = {.lex_state = 439, .external_lex_state = 2}, - [205] = {.lex_state = 439, .external_lex_state = 2}, - [206] = {.lex_state = 439, .external_lex_state = 2}, - [207] = {.lex_state = 439, .external_lex_state = 2}, - [208] = {.lex_state = 439, .external_lex_state = 2}, - [209] = {.lex_state = 439, .external_lex_state = 2}, - [210] = {.lex_state = 439, .external_lex_state = 2}, - [211] = {.lex_state = 439, .external_lex_state = 2}, - [212] = {.lex_state = 439, .external_lex_state = 2}, - [213] = {.lex_state = 439, .external_lex_state = 2}, - [214] = {.lex_state = 439, .external_lex_state = 2}, - [215] = {.lex_state = 439, .external_lex_state = 2}, - [216] = {.lex_state = 439, .external_lex_state = 2}, - [217] = {.lex_state = 439, .external_lex_state = 2}, - [218] = {.lex_state = 439, .external_lex_state = 2}, - [219] = {.lex_state = 439, .external_lex_state = 2}, - [220] = {.lex_state = 439, .external_lex_state = 2}, - [221] = {.lex_state = 439, .external_lex_state = 2}, - [222] = {.lex_state = 439, .external_lex_state = 2}, - [223] = {.lex_state = 439, .external_lex_state = 2}, - [224] = {.lex_state = 439, .external_lex_state = 2}, - [225] = {.lex_state = 439, .external_lex_state = 2}, - [226] = {.lex_state = 439, .external_lex_state = 2}, - [227] = {.lex_state = 439, .external_lex_state = 2}, - [228] = {.lex_state = 439, .external_lex_state = 2}, - [229] = {.lex_state = 439, .external_lex_state = 2}, - [230] = {.lex_state = 439, .external_lex_state = 2}, - [231] = {.lex_state = 198, .external_lex_state = 2}, - [232] = {.lex_state = 439, .external_lex_state = 2}, - [233] = {.lex_state = 439, .external_lex_state = 2}, - [234] = {.lex_state = 439, .external_lex_state = 2}, - [235] = {.lex_state = 439, .external_lex_state = 2}, - [236] = {.lex_state = 439, .external_lex_state = 2}, - [237] = {.lex_state = 439, .external_lex_state = 2}, - [238] = {.lex_state = 439, .external_lex_state = 2}, - [239] = {.lex_state = 439, .external_lex_state = 2}, - [240] = {.lex_state = 439, .external_lex_state = 2}, - [241] = {.lex_state = 439, .external_lex_state = 2}, - [242] = {.lex_state = 439, .external_lex_state = 2}, - [243] = {.lex_state = 439, .external_lex_state = 2}, - [244] = {.lex_state = 439, .external_lex_state = 2}, - [245] = {.lex_state = 439, .external_lex_state = 2}, - [246] = {.lex_state = 439, .external_lex_state = 2}, - [247] = {.lex_state = 439, .external_lex_state = 2}, - [248] = {.lex_state = 439, .external_lex_state = 2}, - [249] = {.lex_state = 439, .external_lex_state = 2}, - [250] = {.lex_state = 439, .external_lex_state = 2}, - [251] = {.lex_state = 439, .external_lex_state = 2}, - [252] = {.lex_state = 439, .external_lex_state = 2}, - [253] = {.lex_state = 439, .external_lex_state = 2}, - [254] = {.lex_state = 439, .external_lex_state = 2}, - [255] = {.lex_state = 439, .external_lex_state = 2}, - [256] = {.lex_state = 439, .external_lex_state = 2}, - [257] = {.lex_state = 439, .external_lex_state = 2}, - [258] = {.lex_state = 439, .external_lex_state = 2}, - [259] = {.lex_state = 439, .external_lex_state = 2}, - [260] = {.lex_state = 439, .external_lex_state = 2}, - [261] = {.lex_state = 439, .external_lex_state = 2}, - [262] = {.lex_state = 439, .external_lex_state = 2}, - [263] = {.lex_state = 439, .external_lex_state = 2}, - [264] = {.lex_state = 439, .external_lex_state = 2}, - [265] = {.lex_state = 439, .external_lex_state = 2}, - [266] = {.lex_state = 439, .external_lex_state = 2}, - [267] = {.lex_state = 439, .external_lex_state = 2}, - [268] = {.lex_state = 439, .external_lex_state = 2}, - [269] = {.lex_state = 439, .external_lex_state = 2}, - [270] = {.lex_state = 439, .external_lex_state = 2}, - [271] = {.lex_state = 439, .external_lex_state = 2}, - [272] = {.lex_state = 439, .external_lex_state = 2}, - [273] = {.lex_state = 439, .external_lex_state = 2}, - [274] = {.lex_state = 439, .external_lex_state = 2}, - [275] = {.lex_state = 439, .external_lex_state = 2}, - [276] = {.lex_state = 439, .external_lex_state = 2}, - [277] = {.lex_state = 439, .external_lex_state = 2}, - [278] = {.lex_state = 439, .external_lex_state = 2}, - [279] = {.lex_state = 439, .external_lex_state = 2}, - [280] = {.lex_state = 439, .external_lex_state = 2}, - [281] = {.lex_state = 439, .external_lex_state = 2}, - [282] = {.lex_state = 439, .external_lex_state = 2}, - [283] = {.lex_state = 439, .external_lex_state = 2}, - [284] = {.lex_state = 439, .external_lex_state = 2}, - [285] = {.lex_state = 439, .external_lex_state = 2}, - [286] = {.lex_state = 439, .external_lex_state = 2}, - [287] = {.lex_state = 439, .external_lex_state = 2}, - [288] = {.lex_state = 439, .external_lex_state = 2}, - [289] = {.lex_state = 439, .external_lex_state = 2}, - [290] = {.lex_state = 439, .external_lex_state = 2}, - [291] = {.lex_state = 439, .external_lex_state = 2}, - [292] = {.lex_state = 439, .external_lex_state = 2}, - [293] = {.lex_state = 439, .external_lex_state = 2}, - [294] = {.lex_state = 439, .external_lex_state = 2}, - [295] = {.lex_state = 439, .external_lex_state = 2}, - [296] = {.lex_state = 439, .external_lex_state = 2}, - [297] = {.lex_state = 439, .external_lex_state = 2}, - [298] = {.lex_state = 439, .external_lex_state = 2}, - [299] = {.lex_state = 439, .external_lex_state = 2}, - [300] = {.lex_state = 439, .external_lex_state = 2}, - [301] = {.lex_state = 439, .external_lex_state = 2}, - [302] = {.lex_state = 439, .external_lex_state = 2}, - [303] = {.lex_state = 439, .external_lex_state = 2}, - [304] = {.lex_state = 439, .external_lex_state = 2}, - [305] = {.lex_state = 439, .external_lex_state = 2}, - [306] = {.lex_state = 439, .external_lex_state = 2}, - [307] = {.lex_state = 439, .external_lex_state = 2}, - [308] = {.lex_state = 439, .external_lex_state = 2}, - [309] = {.lex_state = 439, .external_lex_state = 2}, - [310] = {.lex_state = 439, .external_lex_state = 2}, - [311] = {.lex_state = 439, .external_lex_state = 2}, - [312] = {.lex_state = 439, .external_lex_state = 2}, - [313] = {.lex_state = 439, .external_lex_state = 2}, - [314] = {.lex_state = 439, .external_lex_state = 2}, - [315] = {.lex_state = 439, .external_lex_state = 2}, - [316] = {.lex_state = 439, .external_lex_state = 2}, - [317] = {.lex_state = 439, .external_lex_state = 2}, - [318] = {.lex_state = 439, .external_lex_state = 2}, - [319] = {.lex_state = 439, .external_lex_state = 2}, - [320] = {.lex_state = 439, .external_lex_state = 2}, - [321] = {.lex_state = 439, .external_lex_state = 2}, - [322] = {.lex_state = 187, .external_lex_state = 6}, - [323] = {.lex_state = 190, .external_lex_state = 7}, - [324] = {.lex_state = 190, .external_lex_state = 7}, - [325] = {.lex_state = 190, .external_lex_state = 7}, - [326] = {.lex_state = 187, .external_lex_state = 6}, - [327] = {.lex_state = 189, .external_lex_state = 6}, - [328] = {.lex_state = 190, .external_lex_state = 7}, - [329] = {.lex_state = 190, .external_lex_state = 7}, - [330] = {.lex_state = 191, .external_lex_state = 6}, - [331] = {.lex_state = 190, .external_lex_state = 7}, - [332] = {.lex_state = 188, .external_lex_state = 6}, - [333] = {.lex_state = 187, .external_lex_state = 6}, - [334] = {.lex_state = 12, .external_lex_state = 8}, - [335] = {.lex_state = 12, .external_lex_state = 8}, - [336] = {.lex_state = 144, .external_lex_state = 8}, - [337] = {.lex_state = 144, .external_lex_state = 8}, - [338] = {.lex_state = 109, .external_lex_state = 3}, - [339] = {.lex_state = 192, .external_lex_state = 9}, - [340] = {.lex_state = 192, .external_lex_state = 9}, - [341] = {.lex_state = 109, .external_lex_state = 3}, - [342] = {.lex_state = 109, .external_lex_state = 3}, - [343] = {.lex_state = 109, .external_lex_state = 3}, - [344] = {.lex_state = 109, .external_lex_state = 3}, - [345] = {.lex_state = 109, .external_lex_state = 3}, - [346] = {.lex_state = 109, .external_lex_state = 3}, - [347] = {.lex_state = 109, .external_lex_state = 3}, - [348] = {.lex_state = 146, .external_lex_state = 3}, - [349] = {.lex_state = 109, .external_lex_state = 3}, - [350] = {.lex_state = 109, .external_lex_state = 3}, - [351] = {.lex_state = 109, .external_lex_state = 3}, - [352] = {.lex_state = 109, .external_lex_state = 3}, - [353] = {.lex_state = 109, .external_lex_state = 3}, - [354] = {.lex_state = 109, .external_lex_state = 3}, - [355] = {.lex_state = 146, .external_lex_state = 3}, - [356] = {.lex_state = 109, .external_lex_state = 3}, - [357] = {.lex_state = 109, .external_lex_state = 3}, - [358] = {.lex_state = 109, .external_lex_state = 3}, - [359] = {.lex_state = 146, .external_lex_state = 3}, - [360] = {.lex_state = 146, .external_lex_state = 3}, - [361] = {.lex_state = 109, .external_lex_state = 3}, - [362] = {.lex_state = 146, .external_lex_state = 3}, - [363] = {.lex_state = 146, .external_lex_state = 3}, - [364] = {.lex_state = 109, .external_lex_state = 3}, - [365] = {.lex_state = 109, .external_lex_state = 3}, - [366] = {.lex_state = 109, .external_lex_state = 3}, - [367] = {.lex_state = 109, .external_lex_state = 3}, - [368] = {.lex_state = 109, .external_lex_state = 3}, - [369] = {.lex_state = 109, .external_lex_state = 3}, - [370] = {.lex_state = 109, .external_lex_state = 3}, - [371] = {.lex_state = 109, .external_lex_state = 3}, - [372] = {.lex_state = 109, .external_lex_state = 3}, - [373] = {.lex_state = 109, .external_lex_state = 3}, - [374] = {.lex_state = 146, .external_lex_state = 3}, - [375] = {.lex_state = 146, .external_lex_state = 3}, - [376] = {.lex_state = 146, .external_lex_state = 3}, - [377] = {.lex_state = 150, .external_lex_state = 8}, - [378] = {.lex_state = 146, .external_lex_state = 3}, - [379] = {.lex_state = 150, .external_lex_state = 8}, - [380] = {.lex_state = 146, .external_lex_state = 3}, - [381] = {.lex_state = 146, .external_lex_state = 3}, - [382] = {.lex_state = 146, .external_lex_state = 3}, - [383] = {.lex_state = 146, .external_lex_state = 3}, - [384] = {.lex_state = 146, .external_lex_state = 3}, - [385] = {.lex_state = 146, .external_lex_state = 3}, - [386] = {.lex_state = 146, .external_lex_state = 3}, - [387] = {.lex_state = 146, .external_lex_state = 3}, - [388] = {.lex_state = 146, .external_lex_state = 3}, - [389] = {.lex_state = 146, .external_lex_state = 3}, - [390] = {.lex_state = 146, .external_lex_state = 3}, - [391] = {.lex_state = 146, .external_lex_state = 3}, - [392] = {.lex_state = 146, .external_lex_state = 3}, - [393] = {.lex_state = 146, .external_lex_state = 3}, - [394] = {.lex_state = 146, .external_lex_state = 3}, - [395] = {.lex_state = 150, .external_lex_state = 8}, - [396] = {.lex_state = 146, .external_lex_state = 3}, - [397] = {.lex_state = 150, .external_lex_state = 8}, - [398] = {.lex_state = 154, .external_lex_state = 8}, - [399] = {.lex_state = 154, .external_lex_state = 8}, + [12] = {.lex_state = 188, .external_lex_state = 2}, + [13] = {.lex_state = 189, .external_lex_state = 4}, + [14] = {.lex_state = 139, .external_lex_state = 3}, + [15] = {.lex_state = 189, .external_lex_state = 4}, + [16] = {.lex_state = 189, .external_lex_state = 4}, + [17] = {.lex_state = 195, .external_lex_state = 5}, + [18] = {.lex_state = 432, .external_lex_state = 2}, + [19] = {.lex_state = 432, .external_lex_state = 2}, + [20] = {.lex_state = 432, .external_lex_state = 2}, + [21] = {.lex_state = 432, .external_lex_state = 2}, + [22] = {.lex_state = 432, .external_lex_state = 2}, + [23] = {.lex_state = 432, .external_lex_state = 2}, + [24] = {.lex_state = 191, .external_lex_state = 2}, + [25] = {.lex_state = 191, .external_lex_state = 2}, + [26] = {.lex_state = 191, .external_lex_state = 2}, + [27] = {.lex_state = 191, .external_lex_state = 2}, + [28] = {.lex_state = 191, .external_lex_state = 2}, + [29] = {.lex_state = 191, .external_lex_state = 2}, + [30] = {.lex_state = 191, .external_lex_state = 2}, + [31] = {.lex_state = 191, .external_lex_state = 2}, + [32] = {.lex_state = 191, .external_lex_state = 2}, + [33] = {.lex_state = 191, .external_lex_state = 2}, + [34] = {.lex_state = 191, .external_lex_state = 2}, + [35] = {.lex_state = 191, .external_lex_state = 2}, + [36] = {.lex_state = 432, .external_lex_state = 2}, + [37] = {.lex_state = 432, .external_lex_state = 2}, + [38] = {.lex_state = 432, .external_lex_state = 2}, + [39] = {.lex_state = 432, .external_lex_state = 2}, + [40] = {.lex_state = 432, .external_lex_state = 2}, + [41] = {.lex_state = 432, .external_lex_state = 2}, + [42] = {.lex_state = 432, .external_lex_state = 2}, + [43] = {.lex_state = 432, .external_lex_state = 2}, + [44] = {.lex_state = 432, .external_lex_state = 2}, + [45] = {.lex_state = 432, .external_lex_state = 2}, + [46] = {.lex_state = 432, .external_lex_state = 2}, + [47] = {.lex_state = 432, .external_lex_state = 2}, + [48] = {.lex_state = 432, .external_lex_state = 2}, + [49] = {.lex_state = 432, .external_lex_state = 2}, + [50] = {.lex_state = 432, .external_lex_state = 2}, + [51] = {.lex_state = 432, .external_lex_state = 2}, + [52] = {.lex_state = 432, .external_lex_state = 2}, + [53] = {.lex_state = 432, .external_lex_state = 2}, + [54] = {.lex_state = 432, .external_lex_state = 2}, + [55] = {.lex_state = 432, .external_lex_state = 2}, + [56] = {.lex_state = 432, .external_lex_state = 2}, + [57] = {.lex_state = 432, .external_lex_state = 2}, + [58] = {.lex_state = 432, .external_lex_state = 2}, + [59] = {.lex_state = 432, .external_lex_state = 2}, + [60] = {.lex_state = 432, .external_lex_state = 2}, + [61] = {.lex_state = 432, .external_lex_state = 2}, + [62] = {.lex_state = 432, .external_lex_state = 2}, + [63] = {.lex_state = 432, .external_lex_state = 2}, + [64] = {.lex_state = 432, .external_lex_state = 2}, + [65] = {.lex_state = 432, .external_lex_state = 2}, + [66] = {.lex_state = 432, .external_lex_state = 2}, + [67] = {.lex_state = 432, .external_lex_state = 2}, + [68] = {.lex_state = 192, .external_lex_state = 2}, + [69] = {.lex_state = 192, .external_lex_state = 2}, + [70] = {.lex_state = 192, .external_lex_state = 2}, + [71] = {.lex_state = 432, .external_lex_state = 2}, + [72] = {.lex_state = 432, .external_lex_state = 2}, + [73] = {.lex_state = 432, .external_lex_state = 2}, + [74] = {.lex_state = 432, .external_lex_state = 2}, + [75] = {.lex_state = 432, .external_lex_state = 2}, + [76] = {.lex_state = 192, .external_lex_state = 2}, + [77] = {.lex_state = 432, .external_lex_state = 2}, + [78] = {.lex_state = 432, .external_lex_state = 2}, + [79] = {.lex_state = 432, .external_lex_state = 2}, + [80] = {.lex_state = 192, .external_lex_state = 2}, + [81] = {.lex_state = 432, .external_lex_state = 2}, + [82] = {.lex_state = 432, .external_lex_state = 2}, + [83] = {.lex_state = 432, .external_lex_state = 2}, + [84] = {.lex_state = 432, .external_lex_state = 2}, + [85] = {.lex_state = 432, .external_lex_state = 2}, + [86] = {.lex_state = 432, .external_lex_state = 2}, + [87] = {.lex_state = 432, .external_lex_state = 2}, + [88] = {.lex_state = 192, .external_lex_state = 2}, + [89] = {.lex_state = 432, .external_lex_state = 2}, + [90] = {.lex_state = 432, .external_lex_state = 2}, + [91] = {.lex_state = 432, .external_lex_state = 2}, + [92] = {.lex_state = 432, .external_lex_state = 2}, + [93] = {.lex_state = 432, .external_lex_state = 2}, + [94] = {.lex_state = 432, .external_lex_state = 2}, + [95] = {.lex_state = 432, .external_lex_state = 2}, + [96] = {.lex_state = 432, .external_lex_state = 2}, + [97] = {.lex_state = 432, .external_lex_state = 2}, + [98] = {.lex_state = 432, .external_lex_state = 2}, + [99] = {.lex_state = 432, .external_lex_state = 2}, + [100] = {.lex_state = 432, .external_lex_state = 2}, + [101] = {.lex_state = 432, .external_lex_state = 2}, + [102] = {.lex_state = 432, .external_lex_state = 2}, + [103] = {.lex_state = 432, .external_lex_state = 2}, + [104] = {.lex_state = 432, .external_lex_state = 2}, + [105] = {.lex_state = 432, .external_lex_state = 2}, + [106] = {.lex_state = 432, .external_lex_state = 2}, + [107] = {.lex_state = 432, .external_lex_state = 2}, + [108] = {.lex_state = 432, .external_lex_state = 2}, + [109] = {.lex_state = 432, .external_lex_state = 2}, + [110] = {.lex_state = 432, .external_lex_state = 2}, + [111] = {.lex_state = 432, .external_lex_state = 2}, + [112] = {.lex_state = 432, .external_lex_state = 2}, + [113] = {.lex_state = 432, .external_lex_state = 2}, + [114] = {.lex_state = 432, .external_lex_state = 2}, + [115] = {.lex_state = 432, .external_lex_state = 2}, + [116] = {.lex_state = 432, .external_lex_state = 2}, + [117] = {.lex_state = 432, .external_lex_state = 2}, + [118] = {.lex_state = 432, .external_lex_state = 2}, + [119] = {.lex_state = 432, .external_lex_state = 2}, + [120] = {.lex_state = 432, .external_lex_state = 2}, + [121] = {.lex_state = 432, .external_lex_state = 2}, + [122] = {.lex_state = 432, .external_lex_state = 2}, + [123] = {.lex_state = 432, .external_lex_state = 2}, + [124] = {.lex_state = 432, .external_lex_state = 2}, + [125] = {.lex_state = 432, .external_lex_state = 2}, + [126] = {.lex_state = 432, .external_lex_state = 2}, + [127] = {.lex_state = 432, .external_lex_state = 2}, + [128] = {.lex_state = 432, .external_lex_state = 2}, + [129] = {.lex_state = 432, .external_lex_state = 2}, + [130] = {.lex_state = 432, .external_lex_state = 2}, + [131] = {.lex_state = 432, .external_lex_state = 2}, + [132] = {.lex_state = 432, .external_lex_state = 2}, + [133] = {.lex_state = 432, .external_lex_state = 2}, + [134] = {.lex_state = 432, .external_lex_state = 2}, + [135] = {.lex_state = 432, .external_lex_state = 2}, + [136] = {.lex_state = 432, .external_lex_state = 2}, + [137] = {.lex_state = 432, .external_lex_state = 2}, + [138] = {.lex_state = 432, .external_lex_state = 2}, + [139] = {.lex_state = 432, .external_lex_state = 2}, + [140] = {.lex_state = 432, .external_lex_state = 2}, + [141] = {.lex_state = 432, .external_lex_state = 2}, + [142] = {.lex_state = 432, .external_lex_state = 2}, + [143] = {.lex_state = 432, .external_lex_state = 2}, + [144] = {.lex_state = 432, .external_lex_state = 2}, + [145] = {.lex_state = 432, .external_lex_state = 2}, + [146] = {.lex_state = 432, .external_lex_state = 2}, + [147] = {.lex_state = 432, .external_lex_state = 2}, + [148] = {.lex_state = 432, .external_lex_state = 2}, + [149] = {.lex_state = 432, .external_lex_state = 2}, + [150] = {.lex_state = 432, .external_lex_state = 2}, + [151] = {.lex_state = 432, .external_lex_state = 2}, + [152] = {.lex_state = 432, .external_lex_state = 2}, + [153] = {.lex_state = 432, .external_lex_state = 2}, + [154] = {.lex_state = 432, .external_lex_state = 2}, + [155] = {.lex_state = 432, .external_lex_state = 2}, + [156] = {.lex_state = 432, .external_lex_state = 2}, + [157] = {.lex_state = 432, .external_lex_state = 2}, + [158] = {.lex_state = 432, .external_lex_state = 2}, + [159] = {.lex_state = 432, .external_lex_state = 2}, + [160] = {.lex_state = 432, .external_lex_state = 2}, + [161] = {.lex_state = 432, .external_lex_state = 2}, + [162] = {.lex_state = 432, .external_lex_state = 2}, + [163] = {.lex_state = 432, .external_lex_state = 2}, + [164] = {.lex_state = 432, .external_lex_state = 2}, + [165] = {.lex_state = 432, .external_lex_state = 2}, + [166] = {.lex_state = 432, .external_lex_state = 2}, + [167] = {.lex_state = 432, .external_lex_state = 2}, + [168] = {.lex_state = 432, .external_lex_state = 2}, + [169] = {.lex_state = 432, .external_lex_state = 2}, + [170] = {.lex_state = 432, .external_lex_state = 2}, + [171] = {.lex_state = 432, .external_lex_state = 2}, + [172] = {.lex_state = 432, .external_lex_state = 2}, + [173] = {.lex_state = 432, .external_lex_state = 2}, + [174] = {.lex_state = 432, .external_lex_state = 2}, + [175] = {.lex_state = 432, .external_lex_state = 2}, + [176] = {.lex_state = 432, .external_lex_state = 2}, + [177] = {.lex_state = 432, .external_lex_state = 2}, + [178] = {.lex_state = 432, .external_lex_state = 2}, + [179] = {.lex_state = 432, .external_lex_state = 2}, + [180] = {.lex_state = 432, .external_lex_state = 2}, + [181] = {.lex_state = 432, .external_lex_state = 2}, + [182] = {.lex_state = 432, .external_lex_state = 2}, + [183] = {.lex_state = 432, .external_lex_state = 2}, + [184] = {.lex_state = 432, .external_lex_state = 2}, + [185] = {.lex_state = 432, .external_lex_state = 2}, + [186] = {.lex_state = 432, .external_lex_state = 2}, + [187] = {.lex_state = 432, .external_lex_state = 2}, + [188] = {.lex_state = 432, .external_lex_state = 2}, + [189] = {.lex_state = 432, .external_lex_state = 2}, + [190] = {.lex_state = 432, .external_lex_state = 2}, + [191] = {.lex_state = 432, .external_lex_state = 2}, + [192] = {.lex_state = 432, .external_lex_state = 2}, + [193] = {.lex_state = 432, .external_lex_state = 2}, + [194] = {.lex_state = 432, .external_lex_state = 2}, + [195] = {.lex_state = 432, .external_lex_state = 2}, + [196] = {.lex_state = 432, .external_lex_state = 2}, + [197] = {.lex_state = 432, .external_lex_state = 2}, + [198] = {.lex_state = 432, .external_lex_state = 2}, + [199] = {.lex_state = 432, .external_lex_state = 2}, + [200] = {.lex_state = 432, .external_lex_state = 2}, + [201] = {.lex_state = 432, .external_lex_state = 2}, + [202] = {.lex_state = 432, .external_lex_state = 2}, + [203] = {.lex_state = 432, .external_lex_state = 2}, + [204] = {.lex_state = 432, .external_lex_state = 2}, + [205] = {.lex_state = 432, .external_lex_state = 2}, + [206] = {.lex_state = 432, .external_lex_state = 2}, + [207] = {.lex_state = 432, .external_lex_state = 2}, + [208] = {.lex_state = 432, .external_lex_state = 2}, + [209] = {.lex_state = 432, .external_lex_state = 2}, + [210] = {.lex_state = 192, .external_lex_state = 2}, + [211] = {.lex_state = 432, .external_lex_state = 2}, + [212] = {.lex_state = 432, .external_lex_state = 2}, + [213] = {.lex_state = 432, .external_lex_state = 2}, + [214] = {.lex_state = 432, .external_lex_state = 2}, + [215] = {.lex_state = 432, .external_lex_state = 2}, + [216] = {.lex_state = 432, .external_lex_state = 2}, + [217] = {.lex_state = 432, .external_lex_state = 2}, + [218] = {.lex_state = 432, .external_lex_state = 2}, + [219] = {.lex_state = 432, .external_lex_state = 2}, + [220] = {.lex_state = 432, .external_lex_state = 2}, + [221] = {.lex_state = 432, .external_lex_state = 2}, + [222] = {.lex_state = 432, .external_lex_state = 2}, + [223] = {.lex_state = 432, .external_lex_state = 2}, + [224] = {.lex_state = 432, .external_lex_state = 2}, + [225] = {.lex_state = 432, .external_lex_state = 2}, + [226] = {.lex_state = 432, .external_lex_state = 2}, + [227] = {.lex_state = 432, .external_lex_state = 2}, + [228] = {.lex_state = 432, .external_lex_state = 2}, + [229] = {.lex_state = 432, .external_lex_state = 2}, + [230] = {.lex_state = 432, .external_lex_state = 2}, + [231] = {.lex_state = 432, .external_lex_state = 2}, + [232] = {.lex_state = 432, .external_lex_state = 2}, + [233] = {.lex_state = 432, .external_lex_state = 2}, + [234] = {.lex_state = 432, .external_lex_state = 2}, + [235] = {.lex_state = 432, .external_lex_state = 2}, + [236] = {.lex_state = 432, .external_lex_state = 2}, + [237] = {.lex_state = 432, .external_lex_state = 2}, + [238] = {.lex_state = 432, .external_lex_state = 2}, + [239] = {.lex_state = 432, .external_lex_state = 2}, + [240] = {.lex_state = 432, .external_lex_state = 2}, + [241] = {.lex_state = 432, .external_lex_state = 2}, + [242] = {.lex_state = 432, .external_lex_state = 2}, + [243] = {.lex_state = 432, .external_lex_state = 2}, + [244] = {.lex_state = 432, .external_lex_state = 2}, + [245] = {.lex_state = 432, .external_lex_state = 2}, + [246] = {.lex_state = 432, .external_lex_state = 2}, + [247] = {.lex_state = 432, .external_lex_state = 2}, + [248] = {.lex_state = 432, .external_lex_state = 2}, + [249] = {.lex_state = 432, .external_lex_state = 2}, + [250] = {.lex_state = 432, .external_lex_state = 2}, + [251] = {.lex_state = 432, .external_lex_state = 2}, + [252] = {.lex_state = 432, .external_lex_state = 2}, + [253] = {.lex_state = 432, .external_lex_state = 2}, + [254] = {.lex_state = 432, .external_lex_state = 2}, + [255] = {.lex_state = 432, .external_lex_state = 2}, + [256] = {.lex_state = 432, .external_lex_state = 2}, + [257] = {.lex_state = 432, .external_lex_state = 2}, + [258] = {.lex_state = 432, .external_lex_state = 2}, + [259] = {.lex_state = 432, .external_lex_state = 2}, + [260] = {.lex_state = 432, .external_lex_state = 2}, + [261] = {.lex_state = 432, .external_lex_state = 2}, + [262] = {.lex_state = 432, .external_lex_state = 2}, + [263] = {.lex_state = 432, .external_lex_state = 2}, + [264] = {.lex_state = 432, .external_lex_state = 2}, + [265] = {.lex_state = 432, .external_lex_state = 2}, + [266] = {.lex_state = 432, .external_lex_state = 2}, + [267] = {.lex_state = 432, .external_lex_state = 2}, + [268] = {.lex_state = 432, .external_lex_state = 2}, + [269] = {.lex_state = 432, .external_lex_state = 2}, + [270] = {.lex_state = 432, .external_lex_state = 2}, + [271] = {.lex_state = 432, .external_lex_state = 2}, + [272] = {.lex_state = 432, .external_lex_state = 2}, + [273] = {.lex_state = 432, .external_lex_state = 2}, + [274] = {.lex_state = 432, .external_lex_state = 2}, + [275] = {.lex_state = 432, .external_lex_state = 2}, + [276] = {.lex_state = 432, .external_lex_state = 2}, + [277] = {.lex_state = 432, .external_lex_state = 2}, + [278] = {.lex_state = 432, .external_lex_state = 2}, + [279] = {.lex_state = 432, .external_lex_state = 2}, + [280] = {.lex_state = 432, .external_lex_state = 2}, + [281] = {.lex_state = 432, .external_lex_state = 2}, + [282] = {.lex_state = 432, .external_lex_state = 2}, + [283] = {.lex_state = 432, .external_lex_state = 2}, + [284] = {.lex_state = 432, .external_lex_state = 2}, + [285] = {.lex_state = 432, .external_lex_state = 2}, + [286] = {.lex_state = 432, .external_lex_state = 2}, + [287] = {.lex_state = 432, .external_lex_state = 2}, + [288] = {.lex_state = 432, .external_lex_state = 2}, + [289] = {.lex_state = 432, .external_lex_state = 2}, + [290] = {.lex_state = 432, .external_lex_state = 2}, + [291] = {.lex_state = 432, .external_lex_state = 2}, + [292] = {.lex_state = 432, .external_lex_state = 2}, + [293] = {.lex_state = 432, .external_lex_state = 2}, + [294] = {.lex_state = 432, .external_lex_state = 2}, + [295] = {.lex_state = 432, .external_lex_state = 2}, + [296] = {.lex_state = 432, .external_lex_state = 2}, + [297] = {.lex_state = 432, .external_lex_state = 2}, + [298] = {.lex_state = 432, .external_lex_state = 2}, + [299] = {.lex_state = 432, .external_lex_state = 2}, + [300] = {.lex_state = 432, .external_lex_state = 2}, + [301] = {.lex_state = 432, .external_lex_state = 2}, + [302] = {.lex_state = 432, .external_lex_state = 2}, + [303] = {.lex_state = 432, .external_lex_state = 2}, + [304] = {.lex_state = 432, .external_lex_state = 2}, + [305] = {.lex_state = 432, .external_lex_state = 2}, + [306] = {.lex_state = 432, .external_lex_state = 2}, + [307] = {.lex_state = 432, .external_lex_state = 2}, + [308] = {.lex_state = 432, .external_lex_state = 2}, + [309] = {.lex_state = 432, .external_lex_state = 2}, + [310] = {.lex_state = 432, .external_lex_state = 2}, + [311] = {.lex_state = 432, .external_lex_state = 2}, + [312] = {.lex_state = 432, .external_lex_state = 2}, + [313] = {.lex_state = 196, .external_lex_state = 6}, + [314] = {.lex_state = 432, .external_lex_state = 2}, + [315] = {.lex_state = 432, .external_lex_state = 2}, + [316] = {.lex_state = 432, .external_lex_state = 2}, + [317] = {.lex_state = 432, .external_lex_state = 2}, + [318] = {.lex_state = 199, .external_lex_state = 7}, + [319] = {.lex_state = 200, .external_lex_state = 6}, + [320] = {.lex_state = 199, .external_lex_state = 7}, + [321] = {.lex_state = 199, .external_lex_state = 7}, + [322] = {.lex_state = 199, .external_lex_state = 7}, + [323] = {.lex_state = 198, .external_lex_state = 6}, + [324] = {.lex_state = 196, .external_lex_state = 6}, + [325] = {.lex_state = 199, .external_lex_state = 7}, + [326] = {.lex_state = 199, .external_lex_state = 7}, + [327] = {.lex_state = 197, .external_lex_state = 6}, + [328] = {.lex_state = 199, .external_lex_state = 7}, + [329] = {.lex_state = 196, .external_lex_state = 6}, + [330] = {.lex_state = 12, .external_lex_state = 8}, + [331] = {.lex_state = 12, .external_lex_state = 8}, + [332] = {.lex_state = 140, .external_lex_state = 8}, + [333] = {.lex_state = 140, .external_lex_state = 8}, + [334] = {.lex_state = 194, .external_lex_state = 9}, + [335] = {.lex_state = 194, .external_lex_state = 9}, + [336] = {.lex_state = 107, .external_lex_state = 3}, + [337] = {.lex_state = 107, .external_lex_state = 3}, + [338] = {.lex_state = 107, .external_lex_state = 3}, + [339] = {.lex_state = 107, .external_lex_state = 3}, + [340] = {.lex_state = 107, .external_lex_state = 3}, + [341] = {.lex_state = 142, .external_lex_state = 3}, + [342] = {.lex_state = 107, .external_lex_state = 3}, + [343] = {.lex_state = 107, .external_lex_state = 3}, + [344] = {.lex_state = 107, .external_lex_state = 3}, + [345] = {.lex_state = 107, .external_lex_state = 3}, + [346] = {.lex_state = 107, .external_lex_state = 3}, + [347] = {.lex_state = 107, .external_lex_state = 3}, + [348] = {.lex_state = 107, .external_lex_state = 3}, + [349] = {.lex_state = 107, .external_lex_state = 3}, + [350] = {.lex_state = 107, .external_lex_state = 3}, + [351] = {.lex_state = 142, .external_lex_state = 3}, + [352] = {.lex_state = 107, .external_lex_state = 3}, + [353] = {.lex_state = 107, .external_lex_state = 3}, + [354] = {.lex_state = 107, .external_lex_state = 3}, + [355] = {.lex_state = 142, .external_lex_state = 3}, + [356] = {.lex_state = 107, .external_lex_state = 3}, + [357] = {.lex_state = 107, .external_lex_state = 3}, + [358] = {.lex_state = 107, .external_lex_state = 3}, + [359] = {.lex_state = 107, .external_lex_state = 3}, + [360] = {.lex_state = 142, .external_lex_state = 3}, + [361] = {.lex_state = 107, .external_lex_state = 3}, + [362] = {.lex_state = 142, .external_lex_state = 3}, + [363] = {.lex_state = 107, .external_lex_state = 3}, + [364] = {.lex_state = 142, .external_lex_state = 3}, + [365] = {.lex_state = 107, .external_lex_state = 3}, + [366] = {.lex_state = 107, .external_lex_state = 3}, + [367] = {.lex_state = 107, .external_lex_state = 3}, + [368] = {.lex_state = 142, .external_lex_state = 3}, + [369] = {.lex_state = 142, .external_lex_state = 3}, + [370] = {.lex_state = 142, .external_lex_state = 3}, + [371] = {.lex_state = 142, .external_lex_state = 3}, + [372] = {.lex_state = 142, .external_lex_state = 3}, + [373] = {.lex_state = 142, .external_lex_state = 3}, + [374] = {.lex_state = 146, .external_lex_state = 8}, + [375] = {.lex_state = 142, .external_lex_state = 3}, + [376] = {.lex_state = 146, .external_lex_state = 8}, + [377] = {.lex_state = 142, .external_lex_state = 3}, + [378] = {.lex_state = 142, .external_lex_state = 3}, + [379] = {.lex_state = 142, .external_lex_state = 3}, + [380] = {.lex_state = 142, .external_lex_state = 3}, + [381] = {.lex_state = 142, .external_lex_state = 3}, + [382] = {.lex_state = 142, .external_lex_state = 3}, + [383] = {.lex_state = 142, .external_lex_state = 3}, + [384] = {.lex_state = 142, .external_lex_state = 3}, + [385] = {.lex_state = 142, .external_lex_state = 3}, + [386] = {.lex_state = 146, .external_lex_state = 8}, + [387] = {.lex_state = 142, .external_lex_state = 3}, + [388] = {.lex_state = 142, .external_lex_state = 3}, + [389] = {.lex_state = 146, .external_lex_state = 8}, + [390] = {.lex_state = 150, .external_lex_state = 8}, + [391] = {.lex_state = 146, .external_lex_state = 8}, + [392] = {.lex_state = 146, .external_lex_state = 8}, + [393] = {.lex_state = 201, .external_lex_state = 5}, + [394] = {.lex_state = 150, .external_lex_state = 8}, + [395] = {.lex_state = 201, .external_lex_state = 5}, + [396] = {.lex_state = 201, .external_lex_state = 5}, + [397] = {.lex_state = 201, .external_lex_state = 5}, + [398] = {.lex_state = 201, .external_lex_state = 5}, + [399] = {.lex_state = 201, .external_lex_state = 5}, [400] = {.lex_state = 150, .external_lex_state = 8}, - [401] = {.lex_state = 207, .external_lex_state = 5}, - [402] = {.lex_state = 150, .external_lex_state = 8}, - [403] = {.lex_state = 207, .external_lex_state = 5}, - [404] = {.lex_state = 207, .external_lex_state = 5}, - [405] = {.lex_state = 154, .external_lex_state = 8}, - [406] = {.lex_state = 207, .external_lex_state = 5}, - [407] = {.lex_state = 207, .external_lex_state = 5}, - [408] = {.lex_state = 207, .external_lex_state = 5}, - [409] = {.lex_state = 154, .external_lex_state = 8}, - [410] = {.lex_state = 207, .external_lex_state = 5}, - [411] = {.lex_state = 207, .external_lex_state = 5}, - [412] = {.lex_state = 207, .external_lex_state = 5}, - [413] = {.lex_state = 207, .external_lex_state = 5}, - [414] = {.lex_state = 207, .external_lex_state = 5}, - [415] = {.lex_state = 207, .external_lex_state = 5}, - [416] = {.lex_state = 207, .external_lex_state = 5}, - [417] = {.lex_state = 207, .external_lex_state = 5}, - [418] = {.lex_state = 207, .external_lex_state = 5}, - [419] = {.lex_state = 207, .external_lex_state = 5}, - [420] = {.lex_state = 207, .external_lex_state = 5}, - [421] = {.lex_state = 207, .external_lex_state = 5}, - [422] = {.lex_state = 207, .external_lex_state = 5}, - [423] = {.lex_state = 207, .external_lex_state = 5}, - [424] = {.lex_state = 207, .external_lex_state = 5}, - [425] = {.lex_state = 207, .external_lex_state = 5}, - [426] = {.lex_state = 207, .external_lex_state = 5}, - [427] = {.lex_state = 207, .external_lex_state = 5}, - [428] = {.lex_state = 207, .external_lex_state = 5}, - [429] = {.lex_state = 207, .external_lex_state = 5}, - [430] = {.lex_state = 236, .external_lex_state = 10}, - [431] = {.lex_state = 208, .external_lex_state = 9}, - [432] = {.lex_state = 208, .external_lex_state = 9}, - [433] = {.lex_state = 208, .external_lex_state = 9}, - [434] = {.lex_state = 208, .external_lex_state = 9}, - [435] = {.lex_state = 196, .external_lex_state = 2}, - [436] = {.lex_state = 196, .external_lex_state = 2}, - [437] = {.lex_state = 196, .external_lex_state = 2}, - [438] = {.lex_state = 196, .external_lex_state = 2}, - [439] = {.lex_state = 135, .external_lex_state = 11}, - [440] = {.lex_state = 135, .external_lex_state = 11}, - [441] = {.lex_state = 135, .external_lex_state = 11}, - [442] = {.lex_state = 147, .external_lex_state = 11}, - [443] = {.lex_state = 151, .external_lex_state = 8}, - [444] = {.lex_state = 147, .external_lex_state = 11}, - [445] = {.lex_state = 147, .external_lex_state = 11}, - [446] = {.lex_state = 151, .external_lex_state = 8}, - [447] = {.lex_state = 151, .external_lex_state = 8}, - [448] = {.lex_state = 151, .external_lex_state = 8}, - [449] = {.lex_state = 151, .external_lex_state = 8}, - [450] = {.lex_state = 155, .external_lex_state = 8}, - [451] = {.lex_state = 155, .external_lex_state = 8}, - [452] = {.lex_state = 155, .external_lex_state = 8}, - [453] = {.lex_state = 155, .external_lex_state = 8}, - [454] = {.lex_state = 431, .external_lex_state = 11}, - [455] = {.lex_state = 155, .external_lex_state = 8}, - [456] = {.lex_state = 431, .external_lex_state = 11}, - [457] = {.lex_state = 431, .external_lex_state = 11}, - [458] = {.lex_state = 431, .external_lex_state = 11}, - [459] = {.lex_state = 431, .external_lex_state = 11}, - [460] = {.lex_state = 431, .external_lex_state = 11}, - [461] = {.lex_state = 139, .external_lex_state = 8}, - [462] = {.lex_state = 139, .external_lex_state = 8}, - [463] = {.lex_state = 148, .external_lex_state = 8}, - [464] = {.lex_state = 432, .external_lex_state = 8}, - [465] = {.lex_state = 135, .external_lex_state = 12}, - [466] = {.lex_state = 135, .external_lex_state = 12}, - [467] = {.lex_state = 432, .external_lex_state = 8}, - [468] = {.lex_state = 164, .external_lex_state = 11}, - [469] = {.lex_state = 164, .external_lex_state = 11}, - [470] = {.lex_state = 432, .external_lex_state = 8}, - [471] = {.lex_state = 164, .external_lex_state = 11}, - [472] = {.lex_state = 432, .external_lex_state = 8}, - [473] = {.lex_state = 432, .external_lex_state = 8}, - [474] = {.lex_state = 432, .external_lex_state = 8}, - [475] = {.lex_state = 432, .external_lex_state = 8}, - [476] = {.lex_state = 432, .external_lex_state = 8}, - [477] = {.lex_state = 431, .external_lex_state = 11}, - [478] = {.lex_state = 148, .external_lex_state = 8}, - [479] = {.lex_state = 431, .external_lex_state = 11}, - [480] = {.lex_state = 431, .external_lex_state = 11}, - [481] = {.lex_state = 432, .external_lex_state = 8}, - [482] = {.lex_state = 431, .external_lex_state = 11}, - [483] = {.lex_state = 431, .external_lex_state = 11}, - [484] = {.lex_state = 432, .external_lex_state = 8}, - [485] = {.lex_state = 135, .external_lex_state = 12}, - [486] = {.lex_state = 164, .external_lex_state = 12}, - [487] = {.lex_state = 429, .external_lex_state = 8}, - [488] = {.lex_state = 432, .external_lex_state = 8}, - [489] = {.lex_state = 166, .external_lex_state = 11}, - [490] = {.lex_state = 156, .external_lex_state = 8}, - [491] = {.lex_state = 432, .external_lex_state = 8}, - [492] = {.lex_state = 432, .external_lex_state = 8}, - [493] = {.lex_state = 159, .external_lex_state = 11}, - [494] = {.lex_state = 432, .external_lex_state = 8}, - [495] = {.lex_state = 432, .external_lex_state = 8}, - [496] = {.lex_state = 147, .external_lex_state = 12}, - [497] = {.lex_state = 166, .external_lex_state = 11}, - [498] = {.lex_state = 159, .external_lex_state = 11}, - [499] = {.lex_state = 156, .external_lex_state = 8}, - [500] = {.lex_state = 166, .external_lex_state = 11}, - [501] = {.lex_state = 159, .external_lex_state = 11}, - [502] = {.lex_state = 147, .external_lex_state = 12}, - [503] = {.lex_state = 432, .external_lex_state = 8}, - [504] = {.lex_state = 147, .external_lex_state = 12}, - [505] = {.lex_state = 432, .external_lex_state = 8}, - [506] = {.lex_state = 432, .external_lex_state = 8}, - [507] = {.lex_state = 164, .external_lex_state = 12}, - [508] = {.lex_state = 159, .external_lex_state = 11}, - [509] = {.lex_state = 432, .external_lex_state = 8}, - [510] = {.lex_state = 164, .external_lex_state = 12}, - [511] = {.lex_state = 429, .external_lex_state = 8}, - [512] = {.lex_state = 431, .external_lex_state = 12}, - [513] = {.lex_state = 431, .external_lex_state = 12}, - [514] = {.lex_state = 431, .external_lex_state = 12}, - [515] = {.lex_state = 162, .external_lex_state = 11}, - [516] = {.lex_state = 162, .external_lex_state = 11}, - [517] = {.lex_state = 434, .external_lex_state = 11}, - [518] = {.lex_state = 434, .external_lex_state = 11}, - [519] = {.lex_state = 434, .external_lex_state = 11}, - [520] = {.lex_state = 434, .external_lex_state = 11}, - [521] = {.lex_state = 166, .external_lex_state = 12}, - [522] = {.lex_state = 166, .external_lex_state = 12}, - [523] = {.lex_state = 434, .external_lex_state = 11}, - [524] = {.lex_state = 159, .external_lex_state = 12}, - [525] = {.lex_state = 159, .external_lex_state = 12}, - [526] = {.lex_state = 166, .external_lex_state = 12}, - [527] = {.lex_state = 431, .external_lex_state = 12}, - [528] = {.lex_state = 162, .external_lex_state = 11}, - [529] = {.lex_state = 429, .external_lex_state = 8}, - [530] = {.lex_state = 434, .external_lex_state = 11}, - [531] = {.lex_state = 159, .external_lex_state = 12}, - [532] = {.lex_state = 431, .external_lex_state = 12}, - [533] = {.lex_state = 429, .external_lex_state = 8}, - [534] = {.lex_state = 159, .external_lex_state = 12}, - [535] = {.lex_state = 162, .external_lex_state = 11}, - [536] = {.lex_state = 431, .external_lex_state = 12}, - [537] = {.lex_state = 162, .external_lex_state = 12}, - [538] = {.lex_state = 147, .external_lex_state = 11}, - [539] = {.lex_state = 431, .external_lex_state = 12}, - [540] = {.lex_state = 439, .external_lex_state = 2}, - [541] = {.lex_state = 434, .external_lex_state = 12}, - [542] = {.lex_state = 434, .external_lex_state = 11}, - [543] = {.lex_state = 431, .external_lex_state = 12}, - [544] = {.lex_state = 433, .external_lex_state = 11}, - [545] = {.lex_state = 434, .external_lex_state = 12}, - [546] = {.lex_state = 433, .external_lex_state = 11}, - [547] = {.lex_state = 431, .external_lex_state = 12}, - [548] = {.lex_state = 439, .external_lex_state = 2}, - [549] = {.lex_state = 431, .external_lex_state = 12}, - [550] = {.lex_state = 434, .external_lex_state = 11}, - [551] = {.lex_state = 197, .external_lex_state = 2}, - [552] = {.lex_state = 162, .external_lex_state = 12}, - [553] = {.lex_state = 434, .external_lex_state = 11}, - [554] = {.lex_state = 433, .external_lex_state = 11}, - [555] = {.lex_state = 434, .external_lex_state = 12}, - [556] = {.lex_state = 433, .external_lex_state = 11}, - [557] = {.lex_state = 147, .external_lex_state = 11}, - [558] = {.lex_state = 434, .external_lex_state = 12}, - [559] = {.lex_state = 431, .external_lex_state = 12}, - [560] = {.lex_state = 197, .external_lex_state = 2}, - [561] = {.lex_state = 147, .external_lex_state = 11}, - [562] = {.lex_state = 162, .external_lex_state = 12}, - [563] = {.lex_state = 167, .external_lex_state = 11}, - [564] = {.lex_state = 162, .external_lex_state = 12}, - [565] = {.lex_state = 167, .external_lex_state = 11}, - [566] = {.lex_state = 439, .external_lex_state = 2}, - [567] = {.lex_state = 434, .external_lex_state = 12}, - [568] = {.lex_state = 434, .external_lex_state = 12}, - [569] = {.lex_state = 167, .external_lex_state = 11}, - [570] = {.lex_state = 167, .external_lex_state = 11}, - [571] = {.lex_state = 167, .external_lex_state = 12}, - [572] = {.lex_state = 433, .external_lex_state = 11}, - [573] = {.lex_state = 434, .external_lex_state = 12}, - [574] = {.lex_state = 433, .external_lex_state = 12}, - [575] = {.lex_state = 433, .external_lex_state = 12}, - [576] = {.lex_state = 237, .external_lex_state = 2}, - [577] = {.lex_state = 237, .external_lex_state = 2}, - [578] = {.lex_state = 237, .external_lex_state = 2}, - [579] = {.lex_state = 237, .external_lex_state = 2}, - [580] = {.lex_state = 237, .external_lex_state = 2}, - [581] = {.lex_state = 246, .external_lex_state = 13}, - [582] = {.lex_state = 237, .external_lex_state = 2}, - [583] = {.lex_state = 246, .external_lex_state = 13}, - [584] = {.lex_state = 167, .external_lex_state = 12}, - [585] = {.lex_state = 167, .external_lex_state = 12}, - [586] = {.lex_state = 433, .external_lex_state = 12}, - [587] = {.lex_state = 237, .external_lex_state = 2}, - [588] = {.lex_state = 155, .external_lex_state = 8}, - [589] = {.lex_state = 433, .external_lex_state = 12}, - [590] = {.lex_state = 155, .external_lex_state = 8}, - [591] = {.lex_state = 167, .external_lex_state = 12}, - [592] = {.lex_state = 433, .external_lex_state = 11}, - [593] = {.lex_state = 433, .external_lex_state = 11}, - [594] = {.lex_state = 434, .external_lex_state = 12}, - [595] = {.lex_state = 433, .external_lex_state = 11}, - [596] = {.lex_state = 155, .external_lex_state = 8}, - [597] = {.lex_state = 155, .external_lex_state = 8}, - [598] = {.lex_state = 434, .external_lex_state = 12}, - [599] = {.lex_state = 237, .external_lex_state = 2}, - [600] = {.lex_state = 434, .external_lex_state = 12}, - [601] = {.lex_state = 434, .external_lex_state = 12}, - [602] = {.lex_state = 155, .external_lex_state = 8}, - [603] = {.lex_state = 246, .external_lex_state = 13}, - [604] = {.lex_state = 243, .external_lex_state = 14}, - [605] = {.lex_state = 252, .external_lex_state = 10}, - [606] = {.lex_state = 433, .external_lex_state = 12}, - [607] = {.lex_state = 433, .external_lex_state = 12}, - [608] = {.lex_state = 164, .external_lex_state = 11}, - [609] = {.lex_state = 243, .external_lex_state = 14}, - [610] = {.lex_state = 164, .external_lex_state = 11}, - [611] = {.lex_state = 243, .external_lex_state = 14}, - [612] = {.lex_state = 243, .external_lex_state = 14}, - [613] = {.lex_state = 164, .external_lex_state = 11}, - [614] = {.lex_state = 433, .external_lex_state = 12}, - [615] = {.lex_state = 243, .external_lex_state = 14}, - [616] = {.lex_state = 164, .external_lex_state = 11}, - [617] = {.lex_state = 169, .external_lex_state = 8}, - [618] = {.lex_state = 169, .external_lex_state = 8}, - [619] = {.lex_state = 433, .external_lex_state = 12}, - [620] = {.lex_state = 244, .external_lex_state = 15}, - [621] = {.lex_state = 198, .external_lex_state = 2}, - [622] = {.lex_state = 166, .external_lex_state = 11}, - [623] = {.lex_state = 439, .external_lex_state = 2}, - [624] = {.lex_state = 166, .external_lex_state = 11}, - [625] = {.lex_state = 166, .external_lex_state = 11}, - [626] = {.lex_state = 166, .external_lex_state = 11}, - [627] = {.lex_state = 244, .external_lex_state = 15}, - [628] = {.lex_state = 198, .external_lex_state = 2}, - [629] = {.lex_state = 147, .external_lex_state = 12}, - [630] = {.lex_state = 198, .external_lex_state = 2}, - [631] = {.lex_state = 166, .external_lex_state = 11}, - [632] = {.lex_state = 166, .external_lex_state = 11}, - [633] = {.lex_state = 198, .external_lex_state = 2}, - [634] = {.lex_state = 147, .external_lex_state = 12}, - [635] = {.lex_state = 439, .external_lex_state = 2}, - [636] = {.lex_state = 147, .external_lex_state = 12}, - [637] = {.lex_state = 439, .external_lex_state = 2}, - [638] = {.lex_state = 170, .external_lex_state = 3}, - [639] = {.lex_state = 166, .external_lex_state = 11}, - [640] = {.lex_state = 202, .external_lex_state = 14}, - [641] = {.lex_state = 202, .external_lex_state = 14}, - [642] = {.lex_state = 244, .external_lex_state = 15}, - [643] = {.lex_state = 171, .external_lex_state = 11}, - [644] = {.lex_state = 434, .external_lex_state = 11}, - [645] = {.lex_state = 246, .external_lex_state = 16}, - [646] = {.lex_state = 439, .external_lex_state = 2}, - [647] = {.lex_state = 166, .external_lex_state = 12}, - [648] = {.lex_state = 434, .external_lex_state = 11}, - [649] = {.lex_state = 166, .external_lex_state = 12}, - [650] = {.lex_state = 246, .external_lex_state = 16}, - [651] = {.lex_state = 203, .external_lex_state = 15}, - [652] = {.lex_state = 439, .external_lex_state = 2}, - [653] = {.lex_state = 434, .external_lex_state = 11}, - [654] = {.lex_state = 171, .external_lex_state = 11}, - [655] = {.lex_state = 203, .external_lex_state = 15}, - [656] = {.lex_state = 434, .external_lex_state = 11}, - [657] = {.lex_state = 172, .external_lex_state = 3}, - [658] = {.lex_state = 171, .external_lex_state = 11}, - [659] = {.lex_state = 246, .external_lex_state = 16}, - [660] = {.lex_state = 439, .external_lex_state = 2}, - [661] = {.lex_state = 171, .external_lex_state = 11}, - [662] = {.lex_state = 434, .external_lex_state = 11}, - [663] = {.lex_state = 434, .external_lex_state = 11}, - [664] = {.lex_state = 240, .external_lex_state = 13}, - [665] = {.lex_state = 170, .external_lex_state = 3}, - [666] = {.lex_state = 170, .external_lex_state = 3}, - [667] = {.lex_state = 213, .external_lex_state = 17}, - [668] = {.lex_state = 213, .external_lex_state = 17}, - [669] = {.lex_state = 244, .external_lex_state = 18}, - [670] = {.lex_state = 240, .external_lex_state = 13}, - [671] = {.lex_state = 240, .external_lex_state = 13}, - [672] = {.lex_state = 166, .external_lex_state = 12}, - [673] = {.lex_state = 170, .external_lex_state = 3}, - [674] = {.lex_state = 434, .external_lex_state = 11}, - [675] = {.lex_state = 170, .external_lex_state = 3}, - [676] = {.lex_state = 434, .external_lex_state = 11}, - [677] = {.lex_state = 209, .external_lex_state = 19}, - [678] = {.lex_state = 170, .external_lex_state = 3}, - [679] = {.lex_state = 170, .external_lex_state = 3}, - [680] = {.lex_state = 170, .external_lex_state = 3}, - [681] = {.lex_state = 170, .external_lex_state = 3}, - [682] = {.lex_state = 244, .external_lex_state = 18}, - [683] = {.lex_state = 209, .external_lex_state = 19}, - [684] = {.lex_state = 170, .external_lex_state = 3}, - [685] = {.lex_state = 244, .external_lex_state = 18}, - [686] = {.lex_state = 170, .external_lex_state = 3}, - [687] = {.lex_state = 210, .external_lex_state = 19}, - [688] = {.lex_state = 172, .external_lex_state = 3}, - [689] = {.lex_state = 203, .external_lex_state = 18}, - [690] = {.lex_state = 214, .external_lex_state = 19}, - [691] = {.lex_state = 170, .external_lex_state = 3}, - [692] = {.lex_state = 435, .external_lex_state = 3}, - [693] = {.lex_state = 170, .external_lex_state = 3}, - [694] = {.lex_state = 170, .external_lex_state = 3}, - [695] = {.lex_state = 170, .external_lex_state = 3}, - [696] = {.lex_state = 212, .external_lex_state = 19}, - [697] = {.lex_state = 212, .external_lex_state = 19}, - [698] = {.lex_state = 170, .external_lex_state = 3}, - [699] = {.lex_state = 170, .external_lex_state = 3}, - [700] = {.lex_state = 170, .external_lex_state = 3}, - [701] = {.lex_state = 434, .external_lex_state = 11}, - [702] = {.lex_state = 170, .external_lex_state = 3}, - [703] = {.lex_state = 434, .external_lex_state = 11}, - [704] = {.lex_state = 170, .external_lex_state = 3}, - [705] = {.lex_state = 170, .external_lex_state = 3}, - [706] = {.lex_state = 253, .external_lex_state = 20}, - [707] = {.lex_state = 176, .external_lex_state = 21}, - [708] = {.lex_state = 176, .external_lex_state = 21}, - [709] = {.lex_state = 434, .external_lex_state = 11}, - [710] = {.lex_state = 176, .external_lex_state = 21}, - [711] = {.lex_state = 170, .external_lex_state = 3}, - [712] = {.lex_state = 170, .external_lex_state = 3}, - [713] = {.lex_state = 170, .external_lex_state = 3}, - [714] = {.lex_state = 170, .external_lex_state = 3}, - [715] = {.lex_state = 214, .external_lex_state = 19}, - [716] = {.lex_state = 170, .external_lex_state = 3}, - [717] = {.lex_state = 170, .external_lex_state = 3}, - [718] = {.lex_state = 170, .external_lex_state = 3}, - [719] = {.lex_state = 211, .external_lex_state = 19}, - [720] = {.lex_state = 170, .external_lex_state = 3}, - [721] = {.lex_state = 170, .external_lex_state = 3}, - [722] = {.lex_state = 211, .external_lex_state = 19}, - [723] = {.lex_state = 170, .external_lex_state = 3}, - [724] = {.lex_state = 176, .external_lex_state = 21}, - [725] = {.lex_state = 172, .external_lex_state = 3}, - [726] = {.lex_state = 203, .external_lex_state = 18}, - [727] = {.lex_state = 176, .external_lex_state = 21}, - [728] = {.lex_state = 172, .external_lex_state = 3}, - [729] = {.lex_state = 172, .external_lex_state = 3}, - [730] = {.lex_state = 176, .external_lex_state = 21}, - [731] = {.lex_state = 172, .external_lex_state = 3}, - [732] = {.lex_state = 434, .external_lex_state = 11}, - [733] = {.lex_state = 172, .external_lex_state = 3}, - [734] = {.lex_state = 172, .external_lex_state = 3}, - [735] = {.lex_state = 210, .external_lex_state = 19}, - [736] = {.lex_state = 213, .external_lex_state = 22}, - [737] = {.lex_state = 213, .external_lex_state = 22}, - [738] = {.lex_state = 204, .external_lex_state = 13}, - [739] = {.lex_state = 172, .external_lex_state = 3}, - [740] = {.lex_state = 240, .external_lex_state = 16}, - [741] = {.lex_state = 204, .external_lex_state = 13}, - [742] = {.lex_state = 434, .external_lex_state = 11}, - [743] = {.lex_state = 434, .external_lex_state = 11}, - [744] = {.lex_state = 171, .external_lex_state = 12}, - [745] = {.lex_state = 171, .external_lex_state = 12}, - [746] = {.lex_state = 240, .external_lex_state = 16}, - [747] = {.lex_state = 176, .external_lex_state = 21}, - [748] = {.lex_state = 176, .external_lex_state = 21}, - [749] = {.lex_state = 171, .external_lex_state = 12}, - [750] = {.lex_state = 171, .external_lex_state = 12}, - [751] = {.lex_state = 435, .external_lex_state = 3}, - [752] = {.lex_state = 240, .external_lex_state = 16}, - [753] = {.lex_state = 434, .external_lex_state = 11}, - [754] = {.lex_state = 434, .external_lex_state = 11}, - [755] = {.lex_state = 434, .external_lex_state = 11}, - [756] = {.lex_state = 434, .external_lex_state = 11}, - [757] = {.lex_state = 172, .external_lex_state = 3}, - [758] = {.lex_state = 172, .external_lex_state = 3}, - [759] = {.lex_state = 434, .external_lex_state = 11}, - [760] = {.lex_state = 204, .external_lex_state = 13}, - [761] = {.lex_state = 204, .external_lex_state = 13}, - [762] = {.lex_state = 253, .external_lex_state = 20}, - [763] = {.lex_state = 434, .external_lex_state = 11}, - [764] = {.lex_state = 434, .external_lex_state = 11}, - [765] = {.lex_state = 434, .external_lex_state = 11}, - [766] = {.lex_state = 176, .external_lex_state = 21}, - [767] = {.lex_state = 177, .external_lex_state = 21}, - [768] = {.lex_state = 435, .external_lex_state = 3}, - [769] = {.lex_state = 435, .external_lex_state = 3}, - [770] = {.lex_state = 177, .external_lex_state = 21}, - [771] = {.lex_state = 177, .external_lex_state = 21}, - [772] = {.lex_state = 177, .external_lex_state = 21}, - [773] = {.lex_state = 435, .external_lex_state = 3}, - [774] = {.lex_state = 435, .external_lex_state = 3}, - [775] = {.lex_state = 176, .external_lex_state = 21}, - [776] = {.lex_state = 435, .external_lex_state = 3}, - [777] = {.lex_state = 435, .external_lex_state = 3}, - [778] = {.lex_state = 435, .external_lex_state = 3}, - [779] = {.lex_state = 178, .external_lex_state = 21}, - [780] = {.lex_state = 178, .external_lex_state = 21}, - [781] = {.lex_state = 435, .external_lex_state = 3}, - [782] = {.lex_state = 253, .external_lex_state = 10}, - [783] = {.lex_state = 253, .external_lex_state = 10}, - [784] = {.lex_state = 178, .external_lex_state = 21}, - [785] = {.lex_state = 178, .external_lex_state = 21}, - [786] = {.lex_state = 177, .external_lex_state = 21}, - [787] = {.lex_state = 177, .external_lex_state = 21}, - [788] = {.lex_state = 435, .external_lex_state = 3}, - [789] = {.lex_state = 176, .external_lex_state = 21}, - [790] = {.lex_state = 435, .external_lex_state = 3}, - [791] = {.lex_state = 204, .external_lex_state = 16}, - [792] = {.lex_state = 151, .external_lex_state = 8}, - [793] = {.lex_state = 204, .external_lex_state = 16}, - [794] = {.lex_state = 435, .external_lex_state = 3}, - [795] = {.lex_state = 435, .external_lex_state = 3}, - [796] = {.lex_state = 151, .external_lex_state = 8}, - [797] = {.lex_state = 178, .external_lex_state = 21}, - [798] = {.lex_state = 178, .external_lex_state = 21}, - [799] = {.lex_state = 178, .external_lex_state = 21}, - [800] = {.lex_state = 435, .external_lex_state = 3}, - [801] = {.lex_state = 435, .external_lex_state = 3}, - [802] = {.lex_state = 176, .external_lex_state = 21}, - [803] = {.lex_state = 176, .external_lex_state = 21}, - [804] = {.lex_state = 176, .external_lex_state = 21}, - [805] = {.lex_state = 176, .external_lex_state = 21}, - [806] = {.lex_state = 176, .external_lex_state = 21}, - [807] = {.lex_state = 176, .external_lex_state = 23}, - [808] = {.lex_state = 176, .external_lex_state = 23}, - [809] = {.lex_state = 151, .external_lex_state = 8}, - [810] = {.lex_state = 176, .external_lex_state = 23}, - [811] = {.lex_state = 178, .external_lex_state = 21}, - [812] = {.lex_state = 176, .external_lex_state = 21}, - [813] = {.lex_state = 435, .external_lex_state = 3}, - [814] = {.lex_state = 435, .external_lex_state = 3}, - [815] = {.lex_state = 176, .external_lex_state = 21}, - [816] = {.lex_state = 176, .external_lex_state = 23}, - [817] = {.lex_state = 176, .external_lex_state = 23}, - [818] = {.lex_state = 176, .external_lex_state = 23}, - [819] = {.lex_state = 172, .external_lex_state = 3}, - [820] = {.lex_state = 176, .external_lex_state = 21}, - [821] = {.lex_state = 172, .external_lex_state = 3}, - [822] = {.lex_state = 172, .external_lex_state = 3}, - [823] = {.lex_state = 176, .external_lex_state = 21}, - [824] = {.lex_state = 253, .external_lex_state = 10}, - [825] = {.lex_state = 172, .external_lex_state = 3}, - [826] = {.lex_state = 176, .external_lex_state = 21}, - [827] = {.lex_state = 172, .external_lex_state = 3}, - [828] = {.lex_state = 435, .external_lex_state = 3}, - [829] = {.lex_state = 435, .external_lex_state = 3}, - [830] = {.lex_state = 172, .external_lex_state = 3}, - [831] = {.lex_state = 151, .external_lex_state = 8}, - [832] = {.lex_state = 176, .external_lex_state = 21}, - [833] = {.lex_state = 176, .external_lex_state = 21}, - [834] = {.lex_state = 172, .external_lex_state = 3}, - [835] = {.lex_state = 176, .external_lex_state = 21}, - [836] = {.lex_state = 177, .external_lex_state = 21}, - [837] = {.lex_state = 172, .external_lex_state = 3}, - [838] = {.lex_state = 176, .external_lex_state = 21}, - [839] = {.lex_state = 172, .external_lex_state = 3}, - [840] = {.lex_state = 176, .external_lex_state = 21}, - [841] = {.lex_state = 176, .external_lex_state = 21}, - [842] = {.lex_state = 172, .external_lex_state = 3}, - [843] = {.lex_state = 176, .external_lex_state = 21}, - [844] = {.lex_state = 177, .external_lex_state = 21}, - [845] = {.lex_state = 172, .external_lex_state = 3}, - [846] = {.lex_state = 435, .external_lex_state = 3}, - [847] = {.lex_state = 172, .external_lex_state = 3}, - [848] = {.lex_state = 172, .external_lex_state = 3}, - [849] = {.lex_state = 172, .external_lex_state = 3}, - [850] = {.lex_state = 172, .external_lex_state = 3}, - [851] = {.lex_state = 172, .external_lex_state = 3}, - [852] = {.lex_state = 172, .external_lex_state = 3}, - [853] = {.lex_state = 172, .external_lex_state = 3}, - [854] = {.lex_state = 172, .external_lex_state = 3}, - [855] = {.lex_state = 435, .external_lex_state = 3}, - [856] = {.lex_state = 435, .external_lex_state = 3}, - [857] = {.lex_state = 215, .external_lex_state = 19}, - [858] = {.lex_state = 215, .external_lex_state = 19}, - [859] = {.lex_state = 172, .external_lex_state = 3}, - [860] = {.lex_state = 253, .external_lex_state = 10}, - [861] = {.lex_state = 253, .external_lex_state = 10}, - [862] = {.lex_state = 204, .external_lex_state = 16}, - [863] = {.lex_state = 204, .external_lex_state = 16}, - [864] = {.lex_state = 253, .external_lex_state = 10}, - [865] = {.lex_state = 253, .external_lex_state = 10}, - [866] = {.lex_state = 253, .external_lex_state = 10}, - [867] = {.lex_state = 435, .external_lex_state = 3}, - [868] = {.lex_state = 253, .external_lex_state = 10}, - [869] = {.lex_state = 253, .external_lex_state = 10}, - [870] = {.lex_state = 178, .external_lex_state = 21}, - [871] = {.lex_state = 177, .external_lex_state = 21}, - [872] = {.lex_state = 151, .external_lex_state = 8}, - [873] = {.lex_state = 178, .external_lex_state = 21}, - [874] = {.lex_state = 178, .external_lex_state = 21}, - [875] = {.lex_state = 178, .external_lex_state = 21}, - [876] = {.lex_state = 178, .external_lex_state = 21}, - [877] = {.lex_state = 178, .external_lex_state = 21}, - [878] = {.lex_state = 176, .external_lex_state = 23}, - [879] = {.lex_state = 178, .external_lex_state = 21}, - [880] = {.lex_state = 176, .external_lex_state = 23}, - [881] = {.lex_state = 176, .external_lex_state = 23}, - [882] = {.lex_state = 436, .external_lex_state = 21}, - [883] = {.lex_state = 436, .external_lex_state = 21}, - [884] = {.lex_state = 176, .external_lex_state = 23}, - [885] = {.lex_state = 178, .external_lex_state = 21}, - [886] = {.lex_state = 435, .external_lex_state = 3}, - [887] = {.lex_state = 176, .external_lex_state = 23}, - [888] = {.lex_state = 436, .external_lex_state = 21}, - [889] = {.lex_state = 178, .external_lex_state = 23}, - [890] = {.lex_state = 436, .external_lex_state = 21}, - [891] = {.lex_state = 178, .external_lex_state = 23}, - [892] = {.lex_state = 436, .external_lex_state = 21}, - [893] = {.lex_state = 436, .external_lex_state = 21}, - [894] = {.lex_state = 238, .external_lex_state = 2}, - [895] = {.lex_state = 436, .external_lex_state = 21}, - [896] = {.lex_state = 238, .external_lex_state = 2}, - [897] = {.lex_state = 178, .external_lex_state = 23}, - [898] = {.lex_state = 436, .external_lex_state = 21}, - [899] = {.lex_state = 238, .external_lex_state = 2}, - [900] = {.lex_state = 135, .external_lex_state = 11}, - [901] = {.lex_state = 178, .external_lex_state = 21}, - [902] = {.lex_state = 436, .external_lex_state = 21}, - [903] = {.lex_state = 436, .external_lex_state = 21}, - [904] = {.lex_state = 135, .external_lex_state = 11}, - [905] = {.lex_state = 176, .external_lex_state = 23}, - [906] = {.lex_state = 178, .external_lex_state = 21}, - [907] = {.lex_state = 155, .external_lex_state = 8}, - [908] = {.lex_state = 238, .external_lex_state = 2}, - [909] = {.lex_state = 176, .external_lex_state = 23}, - [910] = {.lex_state = 178, .external_lex_state = 21}, - [911] = {.lex_state = 436, .external_lex_state = 21}, - [912] = {.lex_state = 436, .external_lex_state = 21}, - [913] = {.lex_state = 178, .external_lex_state = 23}, - [914] = {.lex_state = 178, .external_lex_state = 23}, - [915] = {.lex_state = 180, .external_lex_state = 21}, - [916] = {.lex_state = 178, .external_lex_state = 23}, - [917] = {.lex_state = 176, .external_lex_state = 23}, - [918] = {.lex_state = 178, .external_lex_state = 21}, - [919] = {.lex_state = 180, .external_lex_state = 21}, - [920] = {.lex_state = 176, .external_lex_state = 23}, - [921] = {.lex_state = 178, .external_lex_state = 21}, - [922] = {.lex_state = 178, .external_lex_state = 21}, - [923] = {.lex_state = 176, .external_lex_state = 23}, - [924] = {.lex_state = 155, .external_lex_state = 8}, - [925] = {.lex_state = 435, .external_lex_state = 3}, - [926] = {.lex_state = 435, .external_lex_state = 3}, - [927] = {.lex_state = 178, .external_lex_state = 21}, - [928] = {.lex_state = 435, .external_lex_state = 3}, - [929] = {.lex_state = 178, .external_lex_state = 21}, - [930] = {.lex_state = 435, .external_lex_state = 3}, - [931] = {.lex_state = 435, .external_lex_state = 3}, - [932] = {.lex_state = 435, .external_lex_state = 3}, - [933] = {.lex_state = 177, .external_lex_state = 23}, - [934] = {.lex_state = 435, .external_lex_state = 3}, - [935] = {.lex_state = 435, .external_lex_state = 3}, - [936] = {.lex_state = 177, .external_lex_state = 23}, - [937] = {.lex_state = 180, .external_lex_state = 21}, - [938] = {.lex_state = 435, .external_lex_state = 3}, - [939] = {.lex_state = 180, .external_lex_state = 21}, - [940] = {.lex_state = 155, .external_lex_state = 8}, - [941] = {.lex_state = 238, .external_lex_state = 2}, - [942] = {.lex_state = 180, .external_lex_state = 21}, - [943] = {.lex_state = 180, .external_lex_state = 21}, - [944] = {.lex_state = 435, .external_lex_state = 3}, - [945] = {.lex_state = 435, .external_lex_state = 3}, - [946] = {.lex_state = 435, .external_lex_state = 3}, - [947] = {.lex_state = 435, .external_lex_state = 3}, - [948] = {.lex_state = 180, .external_lex_state = 21}, - [949] = {.lex_state = 238, .external_lex_state = 2}, - [950] = {.lex_state = 151, .external_lex_state = 8}, - [951] = {.lex_state = 435, .external_lex_state = 3}, - [952] = {.lex_state = 435, .external_lex_state = 3}, - [953] = {.lex_state = 177, .external_lex_state = 21}, - [954] = {.lex_state = 177, .external_lex_state = 21}, - [955] = {.lex_state = 435, .external_lex_state = 3}, - [956] = {.lex_state = 176, .external_lex_state = 23}, - [957] = {.lex_state = 238, .external_lex_state = 2}, - [958] = {.lex_state = 435, .external_lex_state = 3}, - [959] = {.lex_state = 435, .external_lex_state = 3}, - [960] = {.lex_state = 177, .external_lex_state = 21}, - [961] = {.lex_state = 176, .external_lex_state = 23}, - [962] = {.lex_state = 178, .external_lex_state = 21}, - [963] = {.lex_state = 436, .external_lex_state = 21}, - [964] = {.lex_state = 436, .external_lex_state = 21}, - [965] = {.lex_state = 155, .external_lex_state = 8}, - [966] = {.lex_state = 177, .external_lex_state = 21}, - [967] = {.lex_state = 177, .external_lex_state = 21}, - [968] = {.lex_state = 435, .external_lex_state = 3}, - [969] = {.lex_state = 435, .external_lex_state = 3}, - [970] = {.lex_state = 177, .external_lex_state = 21}, - [971] = {.lex_state = 177, .external_lex_state = 21}, - [972] = {.lex_state = 435, .external_lex_state = 3}, - [973] = {.lex_state = 178, .external_lex_state = 21}, - [974] = {.lex_state = 151, .external_lex_state = 8}, - [975] = {.lex_state = 435, .external_lex_state = 3}, - [976] = {.lex_state = 435, .external_lex_state = 3}, - [977] = {.lex_state = 435, .external_lex_state = 3}, - [978] = {.lex_state = 435, .external_lex_state = 3}, - [979] = {.lex_state = 178, .external_lex_state = 21}, - [980] = {.lex_state = 435, .external_lex_state = 3}, - [981] = {.lex_state = 176, .external_lex_state = 23}, - [982] = {.lex_state = 177, .external_lex_state = 21}, - [983] = {.lex_state = 177, .external_lex_state = 21}, - [984] = {.lex_state = 176, .external_lex_state = 23}, - [985] = {.lex_state = 177, .external_lex_state = 21}, - [986] = {.lex_state = 178, .external_lex_state = 21}, - [987] = {.lex_state = 177, .external_lex_state = 21}, - [988] = {.lex_state = 435, .external_lex_state = 3}, - [989] = {.lex_state = 176, .external_lex_state = 23}, - [990] = {.lex_state = 176, .external_lex_state = 23}, - [991] = {.lex_state = 435, .external_lex_state = 3}, - [992] = {.lex_state = 177, .external_lex_state = 23}, - [993] = {.lex_state = 177, .external_lex_state = 23}, - [994] = {.lex_state = 177, .external_lex_state = 21}, - [995] = {.lex_state = 435, .external_lex_state = 3}, - [996] = {.lex_state = 135, .external_lex_state = 11}, - [997] = {.lex_state = 177, .external_lex_state = 21}, - [998] = {.lex_state = 177, .external_lex_state = 21}, - [999] = {.lex_state = 436, .external_lex_state = 21}, - [1000] = {.lex_state = 436, .external_lex_state = 21}, - [1001] = {.lex_state = 177, .external_lex_state = 21}, - [1002] = {.lex_state = 238, .external_lex_state = 2}, - [1003] = {.lex_state = 151, .external_lex_state = 8}, - [1004] = {.lex_state = 177, .external_lex_state = 23}, - [1005] = {.lex_state = 435, .external_lex_state = 3}, - [1006] = {.lex_state = 435, .external_lex_state = 3}, - [1007] = {.lex_state = 435, .external_lex_state = 3}, - [1008] = {.lex_state = 435, .external_lex_state = 3}, - [1009] = {.lex_state = 435, .external_lex_state = 3}, - [1010] = {.lex_state = 435, .external_lex_state = 3}, - [1011] = {.lex_state = 435, .external_lex_state = 3}, - [1012] = {.lex_state = 435, .external_lex_state = 3}, - [1013] = {.lex_state = 180, .external_lex_state = 21}, - [1014] = {.lex_state = 176, .external_lex_state = 23}, - [1015] = {.lex_state = 435, .external_lex_state = 3}, - [1016] = {.lex_state = 177, .external_lex_state = 21}, - [1017] = {.lex_state = 176, .external_lex_state = 23}, - [1018] = {.lex_state = 176, .external_lex_state = 23}, - [1019] = {.lex_state = 177, .external_lex_state = 21}, - [1020] = {.lex_state = 176, .external_lex_state = 23}, - [1021] = {.lex_state = 435, .external_lex_state = 3}, - [1022] = {.lex_state = 435, .external_lex_state = 3}, - [1023] = {.lex_state = 435, .external_lex_state = 3}, - [1024] = {.lex_state = 435, .external_lex_state = 3}, - [1025] = {.lex_state = 177, .external_lex_state = 23}, - [1026] = {.lex_state = 253, .external_lex_state = 10}, - [1027] = {.lex_state = 177, .external_lex_state = 21}, - [1028] = {.lex_state = 177, .external_lex_state = 21}, - [1029] = {.lex_state = 435, .external_lex_state = 3}, - [1030] = {.lex_state = 435, .external_lex_state = 3}, - [1031] = {.lex_state = 435, .external_lex_state = 3}, - [1032] = {.lex_state = 435, .external_lex_state = 3}, - [1033] = {.lex_state = 435, .external_lex_state = 3}, - [1034] = {.lex_state = 435, .external_lex_state = 3}, - [1035] = {.lex_state = 177, .external_lex_state = 23}, - [1036] = {.lex_state = 135, .external_lex_state = 11}, - [1037] = {.lex_state = 180, .external_lex_state = 23}, - [1038] = {.lex_state = 178, .external_lex_state = 23}, - [1039] = {.lex_state = 178, .external_lex_state = 23}, - [1040] = {.lex_state = 436, .external_lex_state = 21}, - [1041] = {.lex_state = 436, .external_lex_state = 21}, - [1042] = {.lex_state = 178, .external_lex_state = 23}, - [1043] = {.lex_state = 436, .external_lex_state = 21}, - [1044] = {.lex_state = 166, .external_lex_state = 11}, - [1045] = {.lex_state = 180, .external_lex_state = 21}, - [1046] = {.lex_state = 178, .external_lex_state = 23}, - [1047] = {.lex_state = 178, .external_lex_state = 23}, - [1048] = {.lex_state = 436, .external_lex_state = 21}, - [1049] = {.lex_state = 147, .external_lex_state = 11}, - [1050] = {.lex_state = 177, .external_lex_state = 23}, - [1051] = {.lex_state = 436, .external_lex_state = 21}, - [1052] = {.lex_state = 180, .external_lex_state = 21}, - [1053] = {.lex_state = 436, .external_lex_state = 21}, - [1054] = {.lex_state = 178, .external_lex_state = 23}, - [1055] = {.lex_state = 178, .external_lex_state = 23}, - [1056] = {.lex_state = 177, .external_lex_state = 23}, - [1057] = {.lex_state = 180, .external_lex_state = 21}, - [1058] = {.lex_state = 178, .external_lex_state = 23}, - [1059] = {.lex_state = 432, .external_lex_state = 8}, - [1060] = {.lex_state = 436, .external_lex_state = 21}, - [1061] = {.lex_state = 432, .external_lex_state = 8}, - [1062] = {.lex_state = 178, .external_lex_state = 23}, - [1063] = {.lex_state = 436, .external_lex_state = 21}, - [1064] = {.lex_state = 180, .external_lex_state = 23}, - [1065] = {.lex_state = 436, .external_lex_state = 21}, - [1066] = {.lex_state = 436, .external_lex_state = 21}, - [1067] = {.lex_state = 180, .external_lex_state = 23}, - [1068] = {.lex_state = 164, .external_lex_state = 11}, - [1069] = {.lex_state = 177, .external_lex_state = 23}, - [1070] = {.lex_state = 180, .external_lex_state = 21}, - [1071] = {.lex_state = 178, .external_lex_state = 23}, - [1072] = {.lex_state = 437, .external_lex_state = 21}, - [1073] = {.lex_state = 437, .external_lex_state = 21}, - [1074] = {.lex_state = 437, .external_lex_state = 21}, - [1075] = {.lex_state = 177, .external_lex_state = 23}, - [1076] = {.lex_state = 436, .external_lex_state = 21}, - [1077] = {.lex_state = 178, .external_lex_state = 23}, - [1078] = {.lex_state = 436, .external_lex_state = 23}, - [1079] = {.lex_state = 432, .external_lex_state = 8}, - [1080] = {.lex_state = 436, .external_lex_state = 23}, - [1081] = {.lex_state = 180, .external_lex_state = 23}, - [1082] = {.lex_state = 180, .external_lex_state = 21}, - [1083] = {.lex_state = 177, .external_lex_state = 23}, - [1084] = {.lex_state = 436, .external_lex_state = 21}, - [1085] = {.lex_state = 180, .external_lex_state = 21}, - [1086] = {.lex_state = 177, .external_lex_state = 23}, - [1087] = {.lex_state = 180, .external_lex_state = 21}, - [1088] = {.lex_state = 180, .external_lex_state = 21}, - [1089] = {.lex_state = 177, .external_lex_state = 23}, - [1090] = {.lex_state = 166, .external_lex_state = 11}, - [1091] = {.lex_state = 436, .external_lex_state = 23}, - [1092] = {.lex_state = 180, .external_lex_state = 21}, - [1093] = {.lex_state = 180, .external_lex_state = 21}, - [1094] = {.lex_state = 178, .external_lex_state = 23}, - [1095] = {.lex_state = 436, .external_lex_state = 21}, - [1096] = {.lex_state = 432, .external_lex_state = 8}, - [1097] = {.lex_state = 177, .external_lex_state = 23}, - [1098] = {.lex_state = 436, .external_lex_state = 21}, - [1099] = {.lex_state = 177, .external_lex_state = 23}, - [1100] = {.lex_state = 180, .external_lex_state = 21}, - [1101] = {.lex_state = 436, .external_lex_state = 23}, - [1102] = {.lex_state = 436, .external_lex_state = 23}, - [1103] = {.lex_state = 135, .external_lex_state = 12}, - [1104] = {.lex_state = 432, .external_lex_state = 8}, - [1105] = {.lex_state = 177, .external_lex_state = 23}, - [1106] = {.lex_state = 436, .external_lex_state = 21}, - [1107] = {.lex_state = 177, .external_lex_state = 23}, - [1108] = {.lex_state = 178, .external_lex_state = 23}, - [1109] = {.lex_state = 436, .external_lex_state = 21}, - [1110] = {.lex_state = 436, .external_lex_state = 23}, - [1111] = {.lex_state = 436, .external_lex_state = 21}, - [1112] = {.lex_state = 177, .external_lex_state = 23}, - [1113] = {.lex_state = 180, .external_lex_state = 21}, - [1114] = {.lex_state = 180, .external_lex_state = 21}, - [1115] = {.lex_state = 180, .external_lex_state = 21}, - [1116] = {.lex_state = 436, .external_lex_state = 21}, - [1117] = {.lex_state = 436, .external_lex_state = 21}, - [1118] = {.lex_state = 177, .external_lex_state = 23}, - [1119] = {.lex_state = 180, .external_lex_state = 21}, - [1120] = {.lex_state = 436, .external_lex_state = 21}, - [1121] = {.lex_state = 177, .external_lex_state = 23}, - [1122] = {.lex_state = 437, .external_lex_state = 21}, - [1123] = {.lex_state = 177, .external_lex_state = 23}, - [1124] = {.lex_state = 437, .external_lex_state = 21}, - [1125] = {.lex_state = 437, .external_lex_state = 21}, - [1126] = {.lex_state = 437, .external_lex_state = 21}, - [1127] = {.lex_state = 437, .external_lex_state = 21}, - [1128] = {.lex_state = 437, .external_lex_state = 21}, - [1129] = {.lex_state = 437, .external_lex_state = 21}, - [1130] = {.lex_state = 164, .external_lex_state = 11}, - [1131] = {.lex_state = 437, .external_lex_state = 21}, - [1132] = {.lex_state = 155, .external_lex_state = 8}, - [1133] = {.lex_state = 178, .external_lex_state = 23}, - [1134] = {.lex_state = 178, .external_lex_state = 23}, - [1135] = {.lex_state = 436, .external_lex_state = 23}, - [1136] = {.lex_state = 436, .external_lex_state = 23}, - [1137] = {.lex_state = 135, .external_lex_state = 11}, - [1138] = {.lex_state = 177, .external_lex_state = 23}, - [1139] = {.lex_state = 432, .external_lex_state = 8}, - [1140] = {.lex_state = 164, .external_lex_state = 11}, - [1141] = {.lex_state = 177, .external_lex_state = 23}, - [1142] = {.lex_state = 177, .external_lex_state = 23}, - [1143] = {.lex_state = 177, .external_lex_state = 23}, - [1144] = {.lex_state = 436, .external_lex_state = 21}, - [1145] = {.lex_state = 437, .external_lex_state = 21}, - [1146] = {.lex_state = 155, .external_lex_state = 8}, - [1147] = {.lex_state = 437, .external_lex_state = 21}, - [1148] = {.lex_state = 180, .external_lex_state = 21}, - [1149] = {.lex_state = 135, .external_lex_state = 12}, - [1150] = {.lex_state = 436, .external_lex_state = 21}, - [1151] = {.lex_state = 436, .external_lex_state = 21}, - [1152] = {.lex_state = 178, .external_lex_state = 23}, - [1153] = {.lex_state = 436, .external_lex_state = 21}, - [1154] = {.lex_state = 432, .external_lex_state = 8}, - [1155] = {.lex_state = 436, .external_lex_state = 21}, - [1156] = {.lex_state = 436, .external_lex_state = 23}, - [1157] = {.lex_state = 436, .external_lex_state = 21}, - [1158] = {.lex_state = 178, .external_lex_state = 23}, - [1159] = {.lex_state = 436, .external_lex_state = 23}, - [1160] = {.lex_state = 178, .external_lex_state = 23}, - [1161] = {.lex_state = 436, .external_lex_state = 21}, - [1162] = {.lex_state = 436, .external_lex_state = 21}, - [1163] = {.lex_state = 436, .external_lex_state = 21}, - [1164] = {.lex_state = 436, .external_lex_state = 21}, - [1165] = {.lex_state = 436, .external_lex_state = 23}, - [1166] = {.lex_state = 437, .external_lex_state = 21}, - [1167] = {.lex_state = 436, .external_lex_state = 21}, - [1168] = {.lex_state = 436, .external_lex_state = 21}, - [1169] = {.lex_state = 437, .external_lex_state = 21}, - [1170] = {.lex_state = 436, .external_lex_state = 21}, - [1171] = {.lex_state = 436, .external_lex_state = 21}, - [1172] = {.lex_state = 180, .external_lex_state = 21}, - [1173] = {.lex_state = 436, .external_lex_state = 21}, - [1174] = {.lex_state = 436, .external_lex_state = 21}, - [1175] = {.lex_state = 436, .external_lex_state = 21}, - [1176] = {.lex_state = 436, .external_lex_state = 21}, - [1177] = {.lex_state = 178, .external_lex_state = 23}, - [1178] = {.lex_state = 180, .external_lex_state = 23}, - [1179] = {.lex_state = 180, .external_lex_state = 23}, - [1180] = {.lex_state = 436, .external_lex_state = 21}, - [1181] = {.lex_state = 436, .external_lex_state = 21}, - [1182] = {.lex_state = 436, .external_lex_state = 21}, - [1183] = {.lex_state = 155, .external_lex_state = 8}, - [1184] = {.lex_state = 166, .external_lex_state = 11}, - [1185] = {.lex_state = 436, .external_lex_state = 23}, - [1186] = {.lex_state = 432, .external_lex_state = 8}, - [1187] = {.lex_state = 436, .external_lex_state = 21}, - [1188] = {.lex_state = 436, .external_lex_state = 21}, - [1189] = {.lex_state = 436, .external_lex_state = 21}, - [1190] = {.lex_state = 180, .external_lex_state = 21}, - [1191] = {.lex_state = 178, .external_lex_state = 23}, - [1192] = {.lex_state = 147, .external_lex_state = 11}, - [1193] = {.lex_state = 147, .external_lex_state = 11}, - [1194] = {.lex_state = 135, .external_lex_state = 11}, - [1195] = {.lex_state = 436, .external_lex_state = 21}, - [1196] = {.lex_state = 436, .external_lex_state = 21}, - [1197] = {.lex_state = 436, .external_lex_state = 21}, - [1198] = {.lex_state = 180, .external_lex_state = 21}, - [1199] = {.lex_state = 135, .external_lex_state = 11}, - [1200] = {.lex_state = 155, .external_lex_state = 8}, - [1201] = {.lex_state = 180, .external_lex_state = 21}, - [1202] = {.lex_state = 437, .external_lex_state = 21}, - [1203] = {.lex_state = 437, .external_lex_state = 21}, - [1204] = {.lex_state = 166, .external_lex_state = 11}, - [1205] = {.lex_state = 437, .external_lex_state = 21}, - [1206] = {.lex_state = 437, .external_lex_state = 21}, - [1207] = {.lex_state = 437, .external_lex_state = 21}, - [1208] = {.lex_state = 437, .external_lex_state = 21}, - [1209] = {.lex_state = 436, .external_lex_state = 23}, - [1210] = {.lex_state = 437, .external_lex_state = 21}, - [1211] = {.lex_state = 437, .external_lex_state = 21}, - [1212] = {.lex_state = 437, .external_lex_state = 23}, - [1213] = {.lex_state = 437, .external_lex_state = 23}, - [1214] = {.lex_state = 436, .external_lex_state = 23}, - [1215] = {.lex_state = 437, .external_lex_state = 21}, - [1216] = {.lex_state = 164, .external_lex_state = 11}, - [1217] = {.lex_state = 437, .external_lex_state = 21}, - [1218] = {.lex_state = 437, .external_lex_state = 21}, - [1219] = {.lex_state = 436, .external_lex_state = 23}, - [1220] = {.lex_state = 436, .external_lex_state = 23}, - [1221] = {.lex_state = 437, .external_lex_state = 21}, - [1222] = {.lex_state = 147, .external_lex_state = 11}, - [1223] = {.lex_state = 436, .external_lex_state = 23}, - [1224] = {.lex_state = 436, .external_lex_state = 23}, - [1225] = {.lex_state = 437, .external_lex_state = 21}, - [1226] = {.lex_state = 147, .external_lex_state = 12}, - [1227] = {.lex_state = 437, .external_lex_state = 21}, - [1228] = {.lex_state = 437, .external_lex_state = 21}, - [1229] = {.lex_state = 436, .external_lex_state = 23}, - [1230] = {.lex_state = 436, .external_lex_state = 23}, - [1231] = {.lex_state = 436, .external_lex_state = 23}, - [1232] = {.lex_state = 436, .external_lex_state = 23}, - [1233] = {.lex_state = 437, .external_lex_state = 21}, - [1234] = {.lex_state = 437, .external_lex_state = 21}, - [1235] = {.lex_state = 436, .external_lex_state = 23}, - [1236] = {.lex_state = 436, .external_lex_state = 23}, - [1237] = {.lex_state = 437, .external_lex_state = 21}, - [1238] = {.lex_state = 437, .external_lex_state = 21}, - [1239] = {.lex_state = 436, .external_lex_state = 23}, - [1240] = {.lex_state = 166, .external_lex_state = 11}, - [1241] = {.lex_state = 437, .external_lex_state = 21}, - [1242] = {.lex_state = 436, .external_lex_state = 23}, - [1243] = {.lex_state = 437, .external_lex_state = 21}, - [1244] = {.lex_state = 437, .external_lex_state = 21}, - [1245] = {.lex_state = 437, .external_lex_state = 21}, - [1246] = {.lex_state = 436, .external_lex_state = 23}, - [1247] = {.lex_state = 437, .external_lex_state = 21}, - [1248] = {.lex_state = 164, .external_lex_state = 12}, - [1249] = {.lex_state = 437, .external_lex_state = 21}, - [1250] = {.lex_state = 436, .external_lex_state = 23}, - [1251] = {.lex_state = 436, .external_lex_state = 23}, - [1252] = {.lex_state = 436, .external_lex_state = 23}, - [1253] = {.lex_state = 436, .external_lex_state = 23}, - [1254] = {.lex_state = 164, .external_lex_state = 12}, - [1255] = {.lex_state = 147, .external_lex_state = 11}, - [1256] = {.lex_state = 437, .external_lex_state = 21}, - [1257] = {.lex_state = 437, .external_lex_state = 21}, - [1258] = {.lex_state = 147, .external_lex_state = 11}, - [1259] = {.lex_state = 436, .external_lex_state = 23}, - [1260] = {.lex_state = 436, .external_lex_state = 23}, - [1261] = {.lex_state = 164, .external_lex_state = 11}, - [1262] = {.lex_state = 164, .external_lex_state = 11}, - [1263] = {.lex_state = 436, .external_lex_state = 23}, - [1264] = {.lex_state = 436, .external_lex_state = 23}, - [1265] = {.lex_state = 432, .external_lex_state = 8}, - [1266] = {.lex_state = 436, .external_lex_state = 23}, - [1267] = {.lex_state = 436, .external_lex_state = 23}, - [1268] = {.lex_state = 431, .external_lex_state = 11}, - [1269] = {.lex_state = 180, .external_lex_state = 23}, - [1270] = {.lex_state = 437, .external_lex_state = 21}, - [1271] = {.lex_state = 180, .external_lex_state = 23}, - [1272] = {.lex_state = 437, .external_lex_state = 21}, - [1273] = {.lex_state = 180, .external_lex_state = 23}, - [1274] = {.lex_state = 135, .external_lex_state = 12}, - [1275] = {.lex_state = 432, .external_lex_state = 8}, - [1276] = {.lex_state = 437, .external_lex_state = 21}, - [1277] = {.lex_state = 180, .external_lex_state = 23}, - [1278] = {.lex_state = 432, .external_lex_state = 8}, - [1279] = {.lex_state = 180, .external_lex_state = 23}, - [1280] = {.lex_state = 437, .external_lex_state = 21}, - [1281] = {.lex_state = 437, .external_lex_state = 23}, - [1282] = {.lex_state = 432, .external_lex_state = 8}, - [1283] = {.lex_state = 172, .external_lex_state = 3}, - [1284] = {.lex_state = 437, .external_lex_state = 21}, - [1285] = {.lex_state = 180, .external_lex_state = 23}, - [1286] = {.lex_state = 180, .external_lex_state = 23}, - [1287] = {.lex_state = 437, .external_lex_state = 21}, - [1288] = {.lex_state = 437, .external_lex_state = 21}, - [1289] = {.lex_state = 431, .external_lex_state = 11}, - [1290] = {.lex_state = 180, .external_lex_state = 23}, - [1291] = {.lex_state = 164, .external_lex_state = 11}, - [1292] = {.lex_state = 437, .external_lex_state = 21}, - [1293] = {.lex_state = 437, .external_lex_state = 21}, - [1294] = {.lex_state = 180, .external_lex_state = 23}, - [1295] = {.lex_state = 431, .external_lex_state = 11}, - [1296] = {.lex_state = 437, .external_lex_state = 21}, - [1297] = {.lex_state = 437, .external_lex_state = 21}, - [1298] = {.lex_state = 437, .external_lex_state = 21}, - [1299] = {.lex_state = 164, .external_lex_state = 11}, - [1300] = {.lex_state = 437, .external_lex_state = 21}, - [1301] = {.lex_state = 180, .external_lex_state = 23}, - [1302] = {.lex_state = 437, .external_lex_state = 21}, - [1303] = {.lex_state = 437, .external_lex_state = 23}, - [1304] = {.lex_state = 436, .external_lex_state = 23}, - [1305] = {.lex_state = 436, .external_lex_state = 23}, - [1306] = {.lex_state = 436, .external_lex_state = 23}, - [1307] = {.lex_state = 436, .external_lex_state = 23}, - [1308] = {.lex_state = 436, .external_lex_state = 23}, - [1309] = {.lex_state = 436, .external_lex_state = 23}, - [1310] = {.lex_state = 437, .external_lex_state = 23}, - [1311] = {.lex_state = 437, .external_lex_state = 23}, - [1312] = {.lex_state = 436, .external_lex_state = 23}, - [1313] = {.lex_state = 436, .external_lex_state = 23}, - [1314] = {.lex_state = 436, .external_lex_state = 23}, - [1315] = {.lex_state = 180, .external_lex_state = 23}, - [1316] = {.lex_state = 436, .external_lex_state = 23}, - [1317] = {.lex_state = 436, .external_lex_state = 23}, - [1318] = {.lex_state = 436, .external_lex_state = 23}, - [1319] = {.lex_state = 436, .external_lex_state = 23}, - [1320] = {.lex_state = 436, .external_lex_state = 23}, - [1321] = {.lex_state = 437, .external_lex_state = 21}, - [1322] = {.lex_state = 240, .external_lex_state = 13}, - [1323] = {.lex_state = 436, .external_lex_state = 23}, - [1324] = {.lex_state = 240, .external_lex_state = 13}, - [1325] = {.lex_state = 436, .external_lex_state = 23}, - [1326] = {.lex_state = 436, .external_lex_state = 23}, - [1327] = {.lex_state = 436, .external_lex_state = 23}, - [1328] = {.lex_state = 240, .external_lex_state = 13}, - [1329] = {.lex_state = 180, .external_lex_state = 23}, - [1330] = {.lex_state = 437, .external_lex_state = 21}, - [1331] = {.lex_state = 436, .external_lex_state = 23}, - [1332] = {.lex_state = 437, .external_lex_state = 21}, - [1333] = {.lex_state = 436, .external_lex_state = 23}, - [1334] = {.lex_state = 437, .external_lex_state = 23}, - [1335] = {.lex_state = 180, .external_lex_state = 23}, - [1336] = {.lex_state = 431, .external_lex_state = 11}, - [1337] = {.lex_state = 437, .external_lex_state = 23}, - [1338] = {.lex_state = 180, .external_lex_state = 23}, - [1339] = {.lex_state = 437, .external_lex_state = 23}, - [1340] = {.lex_state = 437, .external_lex_state = 21}, - [1341] = {.lex_state = 432, .external_lex_state = 8}, - [1342] = {.lex_state = 432, .external_lex_state = 8}, - [1343] = {.lex_state = 180, .external_lex_state = 23}, - [1344] = {.lex_state = 437, .external_lex_state = 21}, - [1345] = {.lex_state = 166, .external_lex_state = 11}, - [1346] = {.lex_state = 180, .external_lex_state = 23}, - [1347] = {.lex_state = 164, .external_lex_state = 11}, - [1348] = {.lex_state = 431, .external_lex_state = 11}, - [1349] = {.lex_state = 180, .external_lex_state = 23}, - [1350] = {.lex_state = 147, .external_lex_state = 12}, - [1351] = {.lex_state = 180, .external_lex_state = 23}, - [1352] = {.lex_state = 432, .external_lex_state = 8}, - [1353] = {.lex_state = 437, .external_lex_state = 23}, - [1354] = {.lex_state = 437, .external_lex_state = 23}, - [1355] = {.lex_state = 437, .external_lex_state = 21}, - [1356] = {.lex_state = 437, .external_lex_state = 23}, - [1357] = {.lex_state = 147, .external_lex_state = 11}, - [1358] = {.lex_state = 432, .external_lex_state = 8}, - [1359] = {.lex_state = 180, .external_lex_state = 23}, - [1360] = {.lex_state = 437, .external_lex_state = 21}, - [1361] = {.lex_state = 431, .external_lex_state = 11}, - [1362] = {.lex_state = 180, .external_lex_state = 23}, - [1363] = {.lex_state = 437, .external_lex_state = 23}, - [1364] = {.lex_state = 437, .external_lex_state = 23}, - [1365] = {.lex_state = 166, .external_lex_state = 11}, - [1366] = {.lex_state = 172, .external_lex_state = 3}, - [1367] = {.lex_state = 431, .external_lex_state = 11}, - [1368] = {.lex_state = 166, .external_lex_state = 11}, - [1369] = {.lex_state = 172, .external_lex_state = 3}, - [1370] = {.lex_state = 434, .external_lex_state = 11}, - [1371] = {.lex_state = 431, .external_lex_state = 11}, - [1372] = {.lex_state = 431, .external_lex_state = 12}, - [1373] = {.lex_state = 434, .external_lex_state = 11}, - [1374] = {.lex_state = 431, .external_lex_state = 11}, - [1375] = {.lex_state = 437, .external_lex_state = 23}, - [1376] = {.lex_state = 431, .external_lex_state = 11}, - [1377] = {.lex_state = 172, .external_lex_state = 3}, - [1378] = {.lex_state = 172, .external_lex_state = 3}, - [1379] = {.lex_state = 437, .external_lex_state = 23}, - [1380] = {.lex_state = 218, .external_lex_state = 24}, - [1381] = {.lex_state = 437, .external_lex_state = 23}, - [1382] = {.lex_state = 172, .external_lex_state = 3}, - [1383] = {.lex_state = 437, .external_lex_state = 23}, - [1384] = {.lex_state = 437, .external_lex_state = 23}, - [1385] = {.lex_state = 431, .external_lex_state = 11}, - [1386] = {.lex_state = 166, .external_lex_state = 12}, - [1387] = {.lex_state = 241, .external_lex_state = 25}, - [1388] = {.lex_state = 166, .external_lex_state = 11}, - [1389] = {.lex_state = 166, .external_lex_state = 11}, - [1390] = {.lex_state = 431, .external_lex_state = 12}, - [1391] = {.lex_state = 437, .external_lex_state = 23}, - [1392] = {.lex_state = 172, .external_lex_state = 3}, - [1393] = {.lex_state = 172, .external_lex_state = 3}, - [1394] = {.lex_state = 431, .external_lex_state = 11}, - [1395] = {.lex_state = 437, .external_lex_state = 23}, - [1396] = {.lex_state = 437, .external_lex_state = 23}, - [1397] = {.lex_state = 172, .external_lex_state = 3}, - [1398] = {.lex_state = 437, .external_lex_state = 23}, - [1399] = {.lex_state = 437, .external_lex_state = 23}, - [1400] = {.lex_state = 437, .external_lex_state = 23}, - [1401] = {.lex_state = 437, .external_lex_state = 23}, - [1402] = {.lex_state = 437, .external_lex_state = 23}, - [1403] = {.lex_state = 437, .external_lex_state = 23}, - [1404] = {.lex_state = 431, .external_lex_state = 12}, - [1405] = {.lex_state = 437, .external_lex_state = 23}, - [1406] = {.lex_state = 437, .external_lex_state = 23}, - [1407] = {.lex_state = 172, .external_lex_state = 3}, - [1408] = {.lex_state = 166, .external_lex_state = 11}, - [1409] = {.lex_state = 437, .external_lex_state = 23}, - [1410] = {.lex_state = 437, .external_lex_state = 23}, - [1411] = {.lex_state = 437, .external_lex_state = 23}, - [1412] = {.lex_state = 437, .external_lex_state = 23}, - [1413] = {.lex_state = 200, .external_lex_state = 10}, - [1414] = {.lex_state = 200, .external_lex_state = 10}, - [1415] = {.lex_state = 166, .external_lex_state = 12}, - [1416] = {.lex_state = 217, .external_lex_state = 24}, - [1417] = {.lex_state = 437, .external_lex_state = 23}, - [1418] = {.lex_state = 437, .external_lex_state = 23}, - [1419] = {.lex_state = 434, .external_lex_state = 11}, - [1420] = {.lex_state = 437, .external_lex_state = 23}, - [1421] = {.lex_state = 431, .external_lex_state = 12}, - [1422] = {.lex_state = 437, .external_lex_state = 23}, - [1423] = {.lex_state = 147, .external_lex_state = 12}, - [1424] = {.lex_state = 164, .external_lex_state = 12}, - [1425] = {.lex_state = 437, .external_lex_state = 23}, - [1426] = {.lex_state = 437, .external_lex_state = 23}, - [1427] = {.lex_state = 437, .external_lex_state = 23}, - [1428] = {.lex_state = 437, .external_lex_state = 23}, - [1429] = {.lex_state = 437, .external_lex_state = 23}, - [1430] = {.lex_state = 437, .external_lex_state = 23}, - [1431] = {.lex_state = 437, .external_lex_state = 23}, - [1432] = {.lex_state = 431, .external_lex_state = 11}, - [1433] = {.lex_state = 437, .external_lex_state = 23}, - [1434] = {.lex_state = 431, .external_lex_state = 11}, - [1435] = {.lex_state = 437, .external_lex_state = 23}, - [1436] = {.lex_state = 437, .external_lex_state = 23}, - [1437] = {.lex_state = 437, .external_lex_state = 23}, - [1438] = {.lex_state = 434, .external_lex_state = 11}, - [1439] = {.lex_state = 437, .external_lex_state = 23}, - [1440] = {.lex_state = 437, .external_lex_state = 23}, - [1441] = {.lex_state = 437, .external_lex_state = 23}, - [1442] = {.lex_state = 437, .external_lex_state = 23}, - [1443] = {.lex_state = 434, .external_lex_state = 11}, - [1444] = {.lex_state = 437, .external_lex_state = 23}, - [1445] = {.lex_state = 437, .external_lex_state = 23}, - [1446] = {.lex_state = 434, .external_lex_state = 11}, - [1447] = {.lex_state = 166, .external_lex_state = 11}, - [1448] = {.lex_state = 437, .external_lex_state = 23}, - [1449] = {.lex_state = 437, .external_lex_state = 23}, - [1450] = {.lex_state = 434, .external_lex_state = 11}, - [1451] = {.lex_state = 434, .external_lex_state = 11}, - [1452] = {.lex_state = 434, .external_lex_state = 11}, - [1453] = {.lex_state = 434, .external_lex_state = 11}, - [1454] = {.lex_state = 434, .external_lex_state = 11}, - [1455] = {.lex_state = 434, .external_lex_state = 11}, - [1456] = {.lex_state = 434, .external_lex_state = 11}, - [1457] = {.lex_state = 434, .external_lex_state = 11}, - [1458] = {.lex_state = 218, .external_lex_state = 24}, - [1459] = {.lex_state = 241, .external_lex_state = 25}, - [1460] = {.lex_state = 241, .external_lex_state = 25}, - [1461] = {.lex_state = 434, .external_lex_state = 11}, - [1462] = {.lex_state = 434, .external_lex_state = 11}, - [1463] = {.lex_state = 238, .external_lex_state = 2}, - [1464] = {.lex_state = 434, .external_lex_state = 11}, - [1465] = {.lex_state = 434, .external_lex_state = 12}, - [1466] = {.lex_state = 434, .external_lex_state = 11}, - [1467] = {.lex_state = 238, .external_lex_state = 2}, - [1468] = {.lex_state = 431, .external_lex_state = 12}, - [1469] = {.lex_state = 434, .external_lex_state = 11}, - [1470] = {.lex_state = 218, .external_lex_state = 24}, - [1471] = {.lex_state = 241, .external_lex_state = 25}, - [1472] = {.lex_state = 223, .external_lex_state = 17}, - [1473] = {.lex_state = 217, .external_lex_state = 24}, - [1474] = {.lex_state = 434, .external_lex_state = 11}, - [1475] = {.lex_state = 241, .external_lex_state = 25}, - [1476] = {.lex_state = 434, .external_lex_state = 11}, - [1477] = {.lex_state = 434, .external_lex_state = 11}, - [1478] = {.lex_state = 434, .external_lex_state = 11}, - [1479] = {.lex_state = 434, .external_lex_state = 11}, - [1480] = {.lex_state = 217, .external_lex_state = 24}, - [1481] = {.lex_state = 434, .external_lex_state = 11}, - [1482] = {.lex_state = 217, .external_lex_state = 24}, - [1483] = {.lex_state = 434, .external_lex_state = 11}, - [1484] = {.lex_state = 434, .external_lex_state = 11}, - [1485] = {.lex_state = 217, .external_lex_state = 24}, - [1486] = {.lex_state = 166, .external_lex_state = 12}, - [1487] = {.lex_state = 434, .external_lex_state = 11}, - [1488] = {.lex_state = 217, .external_lex_state = 24}, - [1489] = {.lex_state = 434, .external_lex_state = 11}, - [1490] = {.lex_state = 434, .external_lex_state = 11}, - [1491] = {.lex_state = 217, .external_lex_state = 24}, - [1492] = {.lex_state = 434, .external_lex_state = 11}, - [1493] = {.lex_state = 434, .external_lex_state = 11}, - [1494] = {.lex_state = 434, .external_lex_state = 11}, - [1495] = {.lex_state = 434, .external_lex_state = 11}, - [1496] = {.lex_state = 434, .external_lex_state = 12}, - [1497] = {.lex_state = 218, .external_lex_state = 24}, - [1498] = {.lex_state = 434, .external_lex_state = 11}, - [1499] = {.lex_state = 434, .external_lex_state = 11}, - [1500] = {.lex_state = 434, .external_lex_state = 11}, - [1501] = {.lex_state = 434, .external_lex_state = 11}, - [1502] = {.lex_state = 431, .external_lex_state = 12}, - [1503] = {.lex_state = 434, .external_lex_state = 11}, - [1504] = {.lex_state = 217, .external_lex_state = 24}, - [1505] = {.lex_state = 217, .external_lex_state = 24}, - [1506] = {.lex_state = 217, .external_lex_state = 24}, - [1507] = {.lex_state = 177, .external_lex_state = 21}, - [1508] = {.lex_state = 434, .external_lex_state = 11}, - [1509] = {.lex_state = 434, .external_lex_state = 11}, - [1510] = {.lex_state = 434, .external_lex_state = 11}, - [1511] = {.lex_state = 217, .external_lex_state = 24}, - [1512] = {.lex_state = 434, .external_lex_state = 11}, - [1513] = {.lex_state = 220, .external_lex_state = 24}, - [1514] = {.lex_state = 434, .external_lex_state = 11}, - [1515] = {.lex_state = 177, .external_lex_state = 21}, - [1516] = {.lex_state = 434, .external_lex_state = 11}, - [1517] = {.lex_state = 177, .external_lex_state = 21}, - [1518] = {.lex_state = 241, .external_lex_state = 25}, - [1519] = {.lex_state = 434, .external_lex_state = 12}, - [1520] = {.lex_state = 238, .external_lex_state = 2}, - [1521] = {.lex_state = 241, .external_lex_state = 25}, - [1522] = {.lex_state = 217, .external_lex_state = 24}, - [1523] = {.lex_state = 434, .external_lex_state = 11}, - [1524] = {.lex_state = 241, .external_lex_state = 25}, - [1525] = {.lex_state = 241, .external_lex_state = 25}, - [1526] = {.lex_state = 434, .external_lex_state = 11}, - [1527] = {.lex_state = 223, .external_lex_state = 17}, - [1528] = {.lex_state = 217, .external_lex_state = 24}, - [1529] = {.lex_state = 434, .external_lex_state = 11}, - [1530] = {.lex_state = 177, .external_lex_state = 21}, - [1531] = {.lex_state = 434, .external_lex_state = 11}, - [1532] = {.lex_state = 217, .external_lex_state = 24}, - [1533] = {.lex_state = 177, .external_lex_state = 21}, - [1534] = {.lex_state = 434, .external_lex_state = 11}, - [1535] = {.lex_state = 434, .external_lex_state = 11}, - [1536] = {.lex_state = 434, .external_lex_state = 11}, - [1537] = {.lex_state = 217, .external_lex_state = 24}, - [1538] = {.lex_state = 434, .external_lex_state = 11}, - [1539] = {.lex_state = 241, .external_lex_state = 25}, - [1540] = {.lex_state = 434, .external_lex_state = 11}, - [1541] = {.lex_state = 434, .external_lex_state = 11}, - [1542] = {.lex_state = 217, .external_lex_state = 24}, - [1543] = {.lex_state = 434, .external_lex_state = 11}, - [1544] = {.lex_state = 241, .external_lex_state = 25}, - [1545] = {.lex_state = 217, .external_lex_state = 24}, - [1546] = {.lex_state = 218, .external_lex_state = 24}, - [1547] = {.lex_state = 218, .external_lex_state = 24}, - [1548] = {.lex_state = 434, .external_lex_state = 11}, - [1549] = {.lex_state = 434, .external_lex_state = 11}, - [1550] = {.lex_state = 434, .external_lex_state = 11}, - [1551] = {.lex_state = 217, .external_lex_state = 24}, - [1552] = {.lex_state = 434, .external_lex_state = 11}, - [1553] = {.lex_state = 434, .external_lex_state = 11}, - [1554] = {.lex_state = 434, .external_lex_state = 11}, - [1555] = {.lex_state = 434, .external_lex_state = 12}, - [1556] = {.lex_state = 434, .external_lex_state = 11}, - [1557] = {.lex_state = 218, .external_lex_state = 24}, - [1558] = {.lex_state = 217, .external_lex_state = 24}, - [1559] = {.lex_state = 434, .external_lex_state = 11}, - [1560] = {.lex_state = 434, .external_lex_state = 11}, - [1561] = {.lex_state = 217, .external_lex_state = 24}, - [1562] = {.lex_state = 434, .external_lex_state = 11}, - [1563] = {.lex_state = 434, .external_lex_state = 11}, - [1564] = {.lex_state = 434, .external_lex_state = 11}, - [1565] = {.lex_state = 177, .external_lex_state = 21}, - [1566] = {.lex_state = 217, .external_lex_state = 24}, - [1567] = {.lex_state = 434, .external_lex_state = 11}, - [1568] = {.lex_state = 434, .external_lex_state = 11}, - [1569] = {.lex_state = 217, .external_lex_state = 24}, - [1570] = {.lex_state = 434, .external_lex_state = 11}, - [1571] = {.lex_state = 434, .external_lex_state = 11}, - [1572] = {.lex_state = 177, .external_lex_state = 21}, - [1573] = {.lex_state = 177, .external_lex_state = 23}, - [1574] = {.lex_state = 199, .external_lex_state = 26}, - [1575] = {.lex_state = 218, .external_lex_state = 24}, - [1576] = {.lex_state = 180, .external_lex_state = 21}, - [1577] = {.lex_state = 180, .external_lex_state = 21}, - [1578] = {.lex_state = 180, .external_lex_state = 21}, - [1579] = {.lex_state = 180, .external_lex_state = 21}, - [1580] = {.lex_state = 180, .external_lex_state = 21}, - [1581] = {.lex_state = 247, .external_lex_state = 27}, - [1582] = {.lex_state = 247, .external_lex_state = 27}, - [1583] = {.lex_state = 218, .external_lex_state = 24}, - [1584] = {.lex_state = 223, .external_lex_state = 17}, - [1585] = {.lex_state = 223, .external_lex_state = 17}, - [1586] = {.lex_state = 220, .external_lex_state = 19}, - [1587] = {.lex_state = 223, .external_lex_state = 17}, - [1588] = {.lex_state = 247, .external_lex_state = 27}, - [1589] = {.lex_state = 247, .external_lex_state = 27}, - [1590] = {.lex_state = 216, .external_lex_state = 19}, - [1591] = {.lex_state = 434, .external_lex_state = 12}, - [1592] = {.lex_state = 199, .external_lex_state = 26}, - [1593] = {.lex_state = 217, .external_lex_state = 24}, - [1594] = {.lex_state = 223, .external_lex_state = 17}, - [1595] = {.lex_state = 223, .external_lex_state = 17}, - [1596] = {.lex_state = 177, .external_lex_state = 23}, - [1597] = {.lex_state = 177, .external_lex_state = 23}, - [1598] = {.lex_state = 218, .external_lex_state = 19}, - [1599] = {.lex_state = 217, .external_lex_state = 24}, - [1600] = {.lex_state = 223, .external_lex_state = 17}, - [1601] = {.lex_state = 218, .external_lex_state = 24}, - [1602] = {.lex_state = 223, .external_lex_state = 17}, - [1603] = {.lex_state = 223, .external_lex_state = 17}, - [1604] = {.lex_state = 223, .external_lex_state = 17}, - [1605] = {.lex_state = 218, .external_lex_state = 24}, - [1606] = {.lex_state = 218, .external_lex_state = 24}, - [1607] = {.lex_state = 218, .external_lex_state = 24}, - [1608] = {.lex_state = 182, .external_lex_state = 28}, - [1609] = {.lex_state = 182, .external_lex_state = 28}, - [1610] = {.lex_state = 218, .external_lex_state = 24}, - [1611] = {.lex_state = 218, .external_lex_state = 24}, - [1612] = {.lex_state = 217, .external_lex_state = 24}, - [1613] = {.lex_state = 199, .external_lex_state = 26}, - [1614] = {.lex_state = 218, .external_lex_state = 24}, - [1615] = {.lex_state = 199, .external_lex_state = 26}, - [1616] = {.lex_state = 218, .external_lex_state = 24}, - [1617] = {.lex_state = 218, .external_lex_state = 24}, - [1618] = {.lex_state = 434, .external_lex_state = 11}, - [1619] = {.lex_state = 217, .external_lex_state = 24}, - [1620] = {.lex_state = 245, .external_lex_state = 29}, - [1621] = {.lex_state = 182, .external_lex_state = 28}, - [1622] = {.lex_state = 245, .external_lex_state = 29}, - [1623] = {.lex_state = 216, .external_lex_state = 19}, - [1624] = {.lex_state = 241, .external_lex_state = 25}, - [1625] = {.lex_state = 218, .external_lex_state = 24}, - [1626] = {.lex_state = 217, .external_lex_state = 24}, - [1627] = {.lex_state = 182, .external_lex_state = 28}, - [1628] = {.lex_state = 216, .external_lex_state = 19}, - [1629] = {.lex_state = 216, .external_lex_state = 19}, - [1630] = {.lex_state = 217, .external_lex_state = 24}, - [1631] = {.lex_state = 241, .external_lex_state = 25}, - [1632] = {.lex_state = 241, .external_lex_state = 25}, - [1633] = {.lex_state = 216, .external_lex_state = 19}, - [1634] = {.lex_state = 218, .external_lex_state = 24}, - [1635] = {.lex_state = 223, .external_lex_state = 17}, - [1636] = {.lex_state = 218, .external_lex_state = 19}, - [1637] = {.lex_state = 218, .external_lex_state = 24}, - [1638] = {.lex_state = 434, .external_lex_state = 12}, - [1639] = {.lex_state = 241, .external_lex_state = 25}, - [1640] = {.lex_state = 216, .external_lex_state = 19}, - [1641] = {.lex_state = 223, .external_lex_state = 17}, - [1642] = {.lex_state = 199, .external_lex_state = 26}, - [1643] = {.lex_state = 199, .external_lex_state = 26}, - [1644] = {.lex_state = 241, .external_lex_state = 25}, - [1645] = {.lex_state = 241, .external_lex_state = 25}, - [1646] = {.lex_state = 241, .external_lex_state = 25}, - [1647] = {.lex_state = 241, .external_lex_state = 25}, - [1648] = {.lex_state = 223, .external_lex_state = 17}, - [1649] = {.lex_state = 218, .external_lex_state = 24}, - [1650] = {.lex_state = 182, .external_lex_state = 28}, - [1651] = {.lex_state = 223, .external_lex_state = 17}, - [1652] = {.lex_state = 182, .external_lex_state = 28}, - [1653] = {.lex_state = 218, .external_lex_state = 24}, - [1654] = {.lex_state = 241, .external_lex_state = 25}, - [1655] = {.lex_state = 223, .external_lex_state = 17}, - [1656] = {.lex_state = 177, .external_lex_state = 23}, - [1657] = {.lex_state = 223, .external_lex_state = 17}, - [1658] = {.lex_state = 218, .external_lex_state = 24}, - [1659] = {.lex_state = 241, .external_lex_state = 25}, - [1660] = {.lex_state = 180, .external_lex_state = 21}, - [1661] = {.lex_state = 218, .external_lex_state = 24}, - [1662] = {.lex_state = 180, .external_lex_state = 21}, - [1663] = {.lex_state = 218, .external_lex_state = 24}, - [1664] = {.lex_state = 220, .external_lex_state = 19}, - [1665] = {.lex_state = 434, .external_lex_state = 11}, - [1666] = {.lex_state = 241, .external_lex_state = 25}, - [1667] = {.lex_state = 241, .external_lex_state = 25}, - [1668] = {.lex_state = 218, .external_lex_state = 24}, - [1669] = {.lex_state = 241, .external_lex_state = 25}, - [1670] = {.lex_state = 241, .external_lex_state = 25}, - [1671] = {.lex_state = 218, .external_lex_state = 24}, - [1672] = {.lex_state = 241, .external_lex_state = 25}, - [1673] = {.lex_state = 199, .external_lex_state = 26}, - [1674] = {.lex_state = 241, .external_lex_state = 25}, - [1675] = {.lex_state = 218, .external_lex_state = 24}, - [1676] = {.lex_state = 241, .external_lex_state = 25}, - [1677] = {.lex_state = 218, .external_lex_state = 24}, - [1678] = {.lex_state = 218, .external_lex_state = 24}, - [1679] = {.lex_state = 241, .external_lex_state = 25}, - [1680] = {.lex_state = 241, .external_lex_state = 25}, - [1681] = {.lex_state = 241, .external_lex_state = 25}, - [1682] = {.lex_state = 218, .external_lex_state = 24}, - [1683] = {.lex_state = 245, .external_lex_state = 29}, - [1684] = {.lex_state = 199, .external_lex_state = 26}, - [1685] = {.lex_state = 218, .external_lex_state = 24}, - [1686] = {.lex_state = 182, .external_lex_state = 28}, - [1687] = {.lex_state = 177, .external_lex_state = 23}, - [1688] = {.lex_state = 218, .external_lex_state = 24}, - [1689] = {.lex_state = 218, .external_lex_state = 24}, - [1690] = {.lex_state = 218, .external_lex_state = 24}, - [1691] = {.lex_state = 218, .external_lex_state = 24}, - [1692] = {.lex_state = 245, .external_lex_state = 29}, - [1693] = {.lex_state = 247, .external_lex_state = 27}, - [1694] = {.lex_state = 245, .external_lex_state = 29}, - [1695] = {.lex_state = 247, .external_lex_state = 27}, - [1696] = {.lex_state = 247, .external_lex_state = 27}, - [1697] = {.lex_state = 247, .external_lex_state = 27}, - [1698] = {.lex_state = 223, .external_lex_state = 17}, - [1699] = {.lex_state = 223, .external_lex_state = 17}, - [1700] = {.lex_state = 182, .external_lex_state = 28}, - [1701] = {.lex_state = 182, .external_lex_state = 28}, - [1702] = {.lex_state = 182, .external_lex_state = 28}, - [1703] = {.lex_state = 245, .external_lex_state = 29}, - [1704] = {.lex_state = 182, .external_lex_state = 28}, - [1705] = {.lex_state = 182, .external_lex_state = 28}, - [1706] = {.lex_state = 218, .external_lex_state = 24}, - [1707] = {.lex_state = 201, .external_lex_state = 2}, - [1708] = {.lex_state = 201, .external_lex_state = 2}, - [1709] = {.lex_state = 199, .external_lex_state = 30}, - [1710] = {.lex_state = 218, .external_lex_state = 24}, - [1711] = {.lex_state = 218, .external_lex_state = 24}, - [1712] = {.lex_state = 245, .external_lex_state = 29}, - [1713] = {.lex_state = 223, .external_lex_state = 17}, - [1714] = {.lex_state = 199, .external_lex_state = 30}, - [1715] = {.lex_state = 218, .external_lex_state = 19}, - [1716] = {.lex_state = 218, .external_lex_state = 19}, - [1717] = {.lex_state = 199, .external_lex_state = 30}, - [1718] = {.lex_state = 218, .external_lex_state = 19}, - [1719] = {.lex_state = 218, .external_lex_state = 19}, - [1720] = {.lex_state = 245, .external_lex_state = 29}, - [1721] = {.lex_state = 245, .external_lex_state = 29}, - [1722] = {.lex_state = 218, .external_lex_state = 19}, - [1723] = {.lex_state = 218, .external_lex_state = 19}, - [1724] = {.lex_state = 218, .external_lex_state = 19}, - [1725] = {.lex_state = 199, .external_lex_state = 30}, - [1726] = {.lex_state = 218, .external_lex_state = 19}, - [1727] = {.lex_state = 245, .external_lex_state = 29}, - [1728] = {.lex_state = 245, .external_lex_state = 29}, - [1729] = {.lex_state = 245, .external_lex_state = 31}, - [1730] = {.lex_state = 218, .external_lex_state = 19}, - [1731] = {.lex_state = 243, .external_lex_state = 14}, - [1732] = {.lex_state = 218, .external_lex_state = 19}, - [1733] = {.lex_state = 245, .external_lex_state = 29}, - [1734] = {.lex_state = 218, .external_lex_state = 19}, - [1735] = {.lex_state = 199, .external_lex_state = 30}, - [1736] = {.lex_state = 218, .external_lex_state = 19}, - [1737] = {.lex_state = 218, .external_lex_state = 19}, - [1738] = {.lex_state = 245, .external_lex_state = 29}, - [1739] = {.lex_state = 218, .external_lex_state = 19}, - [1740] = {.lex_state = 199, .external_lex_state = 30}, - [1741] = {.lex_state = 199, .external_lex_state = 30}, - [1742] = {.lex_state = 199, .external_lex_state = 30}, - [1743] = {.lex_state = 218, .external_lex_state = 19}, - [1744] = {.lex_state = 218, .external_lex_state = 19}, - [1745] = {.lex_state = 242, .external_lex_state = 27}, - [1746] = {.lex_state = 245, .external_lex_state = 29}, - [1747] = {.lex_state = 199, .external_lex_state = 30}, - [1748] = {.lex_state = 245, .external_lex_state = 29}, - [1749] = {.lex_state = 218, .external_lex_state = 19}, - [1750] = {.lex_state = 218, .external_lex_state = 19}, - [1751] = {.lex_state = 218, .external_lex_state = 19}, - [1752] = {.lex_state = 199, .external_lex_state = 30}, - [1753] = {.lex_state = 199, .external_lex_state = 30}, - [1754] = {.lex_state = 199, .external_lex_state = 30}, - [1755] = {.lex_state = 218, .external_lex_state = 19}, - [1756] = {.lex_state = 247, .external_lex_state = 32}, - [1757] = {.lex_state = 247, .external_lex_state = 27}, - [1758] = {.lex_state = 247, .external_lex_state = 32}, - [1759] = {.lex_state = 218, .external_lex_state = 19}, - [1760] = {.lex_state = 218, .external_lex_state = 19}, - [1761] = {.lex_state = 199, .external_lex_state = 30}, - [1762] = {.lex_state = 218, .external_lex_state = 19}, - [1763] = {.lex_state = 245, .external_lex_state = 31}, - [1764] = {.lex_state = 199, .external_lex_state = 30}, - [1765] = {.lex_state = 243, .external_lex_state = 14}, - [1766] = {.lex_state = 247, .external_lex_state = 27}, - [1767] = {.lex_state = 247, .external_lex_state = 27}, - [1768] = {.lex_state = 218, .external_lex_state = 19}, - [1769] = {.lex_state = 199, .external_lex_state = 30}, - [1770] = {.lex_state = 245, .external_lex_state = 31}, - [1771] = {.lex_state = 242, .external_lex_state = 27}, - [1772] = {.lex_state = 242, .external_lex_state = 27}, - [1773] = {.lex_state = 245, .external_lex_state = 31}, - [1774] = {.lex_state = 199, .external_lex_state = 30}, - [1775] = {.lex_state = 218, .external_lex_state = 19}, - [1776] = {.lex_state = 247, .external_lex_state = 27}, - [1777] = {.lex_state = 218, .external_lex_state = 19}, - [1778] = {.lex_state = 245, .external_lex_state = 31}, - [1779] = {.lex_state = 199, .external_lex_state = 30}, - [1780] = {.lex_state = 245, .external_lex_state = 31}, - [1781] = {.lex_state = 218, .external_lex_state = 19}, - [1782] = {.lex_state = 247, .external_lex_state = 27}, - [1783] = {.lex_state = 247, .external_lex_state = 32}, - [1784] = {.lex_state = 245, .external_lex_state = 29}, - [1785] = {.lex_state = 199, .external_lex_state = 30}, - [1786] = {.lex_state = 199, .external_lex_state = 30}, - [1787] = {.lex_state = 199, .external_lex_state = 30}, - [1788] = {.lex_state = 247, .external_lex_state = 32}, - [1789] = {.lex_state = 247, .external_lex_state = 27}, - [1790] = {.lex_state = 247, .external_lex_state = 32}, - [1791] = {.lex_state = 245, .external_lex_state = 29}, - [1792] = {.lex_state = 245, .external_lex_state = 29}, - [1793] = {.lex_state = 180, .external_lex_state = 23}, - [1794] = {.lex_state = 218, .external_lex_state = 19}, - [1795] = {.lex_state = 247, .external_lex_state = 27}, - [1796] = {.lex_state = 223, .external_lex_state = 17}, - [1797] = {.lex_state = 180, .external_lex_state = 23}, - [1798] = {.lex_state = 199, .external_lex_state = 30}, - [1799] = {.lex_state = 247, .external_lex_state = 32}, - [1800] = {.lex_state = 247, .external_lex_state = 27}, - [1801] = {.lex_state = 199, .external_lex_state = 30}, - [1802] = {.lex_state = 218, .external_lex_state = 19}, - [1803] = {.lex_state = 199, .external_lex_state = 30}, - [1804] = {.lex_state = 245, .external_lex_state = 29}, - [1805] = {.lex_state = 245, .external_lex_state = 29}, - [1806] = {.lex_state = 199, .external_lex_state = 30}, - [1807] = {.lex_state = 247, .external_lex_state = 27}, - [1808] = {.lex_state = 199, .external_lex_state = 30}, - [1809] = {.lex_state = 247, .external_lex_state = 27}, - [1810] = {.lex_state = 223, .external_lex_state = 17}, - [1811] = {.lex_state = 199, .external_lex_state = 30}, - [1812] = {.lex_state = 242, .external_lex_state = 27}, - [1813] = {.lex_state = 223, .external_lex_state = 17}, - [1814] = {.lex_state = 199, .external_lex_state = 30}, - [1815] = {.lex_state = 245, .external_lex_state = 29}, - [1816] = {.lex_state = 245, .external_lex_state = 29}, - [1817] = {.lex_state = 199, .external_lex_state = 30}, - [1818] = {.lex_state = 218, .external_lex_state = 19}, - [1819] = {.lex_state = 199, .external_lex_state = 30}, - [1820] = {.lex_state = 218, .external_lex_state = 19}, - [1821] = {.lex_state = 218, .external_lex_state = 19}, - [1822] = {.lex_state = 245, .external_lex_state = 29}, - [1823] = {.lex_state = 218, .external_lex_state = 19}, - [1824] = {.lex_state = 223, .external_lex_state = 22}, - [1825] = {.lex_state = 218, .external_lex_state = 19}, - [1826] = {.lex_state = 243, .external_lex_state = 14}, - [1827] = {.lex_state = 242, .external_lex_state = 27}, - [1828] = {.lex_state = 223, .external_lex_state = 17}, - [1829] = {.lex_state = 218, .external_lex_state = 19}, - [1830] = {.lex_state = 242, .external_lex_state = 27}, - [1831] = {.lex_state = 217, .external_lex_state = 19}, - [1832] = {.lex_state = 245, .external_lex_state = 29}, - [1833] = {.lex_state = 245, .external_lex_state = 29}, - [1834] = {.lex_state = 223, .external_lex_state = 17}, - [1835] = {.lex_state = 218, .external_lex_state = 19}, - [1836] = {.lex_state = 199, .external_lex_state = 30}, - [1837] = {.lex_state = 218, .external_lex_state = 19}, - [1838] = {.lex_state = 218, .external_lex_state = 19}, - [1839] = {.lex_state = 218, .external_lex_state = 19}, - [1840] = {.lex_state = 199, .external_lex_state = 30}, - [1841] = {.lex_state = 245, .external_lex_state = 29}, - [1842] = {.lex_state = 223, .external_lex_state = 17}, - [1843] = {.lex_state = 218, .external_lex_state = 19}, - [1844] = {.lex_state = 247, .external_lex_state = 27}, - [1845] = {.lex_state = 223, .external_lex_state = 17}, - [1846] = {.lex_state = 218, .external_lex_state = 19}, - [1847] = {.lex_state = 199, .external_lex_state = 30}, - [1848] = {.lex_state = 218, .external_lex_state = 19}, - [1849] = {.lex_state = 223, .external_lex_state = 17}, - [1850] = {.lex_state = 218, .external_lex_state = 19}, - [1851] = {.lex_state = 247, .external_lex_state = 27}, - [1852] = {.lex_state = 223, .external_lex_state = 17}, - [1853] = {.lex_state = 223, .external_lex_state = 17}, - [1854] = {.lex_state = 243, .external_lex_state = 14}, - [1855] = {.lex_state = 199, .external_lex_state = 30}, - [1856] = {.lex_state = 223, .external_lex_state = 17}, - [1857] = {.lex_state = 223, .external_lex_state = 17}, - [1858] = {.lex_state = 199, .external_lex_state = 30}, - [1859] = {.lex_state = 199, .external_lex_state = 30}, - [1860] = {.lex_state = 199, .external_lex_state = 30}, - [1861] = {.lex_state = 218, .external_lex_state = 19}, - [1862] = {.lex_state = 218, .external_lex_state = 19}, - [1863] = {.lex_state = 218, .external_lex_state = 19}, - [1864] = {.lex_state = 247, .external_lex_state = 27}, - [1865] = {.lex_state = 247, .external_lex_state = 27}, - [1866] = {.lex_state = 218, .external_lex_state = 19}, - [1867] = {.lex_state = 218, .external_lex_state = 19}, - [1868] = {.lex_state = 199, .external_lex_state = 30}, - [1869] = {.lex_state = 218, .external_lex_state = 19}, - [1870] = {.lex_state = 199, .external_lex_state = 30}, - [1871] = {.lex_state = 218, .external_lex_state = 19}, - [1872] = {.lex_state = 218, .external_lex_state = 19}, - [1873] = {.lex_state = 218, .external_lex_state = 19}, - [1874] = {.lex_state = 218, .external_lex_state = 19}, - [1875] = {.lex_state = 247, .external_lex_state = 27}, - [1876] = {.lex_state = 247, .external_lex_state = 27}, - [1877] = {.lex_state = 223, .external_lex_state = 17}, - [1878] = {.lex_state = 180, .external_lex_state = 23}, - [1879] = {.lex_state = 218, .external_lex_state = 19}, - [1880] = {.lex_state = 180, .external_lex_state = 23}, - [1881] = {.lex_state = 223, .external_lex_state = 17}, - [1882] = {.lex_state = 247, .external_lex_state = 27}, - [1883] = {.lex_state = 220, .external_lex_state = 19}, - [1884] = {.lex_state = 199, .external_lex_state = 30}, - [1885] = {.lex_state = 223, .external_lex_state = 17}, - [1886] = {.lex_state = 218, .external_lex_state = 19}, - [1887] = {.lex_state = 218, .external_lex_state = 19}, - [1888] = {.lex_state = 199, .external_lex_state = 30}, - [1889] = {.lex_state = 199, .external_lex_state = 30}, - [1890] = {.lex_state = 223, .external_lex_state = 17}, - [1891] = {.lex_state = 242, .external_lex_state = 27}, - [1892] = {.lex_state = 247, .external_lex_state = 27}, - [1893] = {.lex_state = 247, .external_lex_state = 27}, - [1894] = {.lex_state = 242, .external_lex_state = 27}, - [1895] = {.lex_state = 199, .external_lex_state = 30}, - [1896] = {.lex_state = 218, .external_lex_state = 19}, - [1897] = {.lex_state = 218, .external_lex_state = 19}, - [1898] = {.lex_state = 199, .external_lex_state = 30}, - [1899] = {.lex_state = 218, .external_lex_state = 19}, - [1900] = {.lex_state = 223, .external_lex_state = 17}, - [1901] = {.lex_state = 247, .external_lex_state = 27}, - [1902] = {.lex_state = 218, .external_lex_state = 19}, - [1903] = {.lex_state = 223, .external_lex_state = 17}, - [1904] = {.lex_state = 218, .external_lex_state = 19}, - [1905] = {.lex_state = 218, .external_lex_state = 19}, - [1906] = {.lex_state = 199, .external_lex_state = 30}, - [1907] = {.lex_state = 223, .external_lex_state = 17}, - [1908] = {.lex_state = 218, .external_lex_state = 19}, - [1909] = {.lex_state = 218, .external_lex_state = 19}, - [1910] = {.lex_state = 217, .external_lex_state = 19}, - [1911] = {.lex_state = 218, .external_lex_state = 19}, - [1912] = {.lex_state = 199, .external_lex_state = 30}, - [1913] = {.lex_state = 199, .external_lex_state = 30}, - [1914] = {.lex_state = 199, .external_lex_state = 30}, - [1915] = {.lex_state = 218, .external_lex_state = 19}, - [1916] = {.lex_state = 218, .external_lex_state = 19}, - [1917] = {.lex_state = 199, .external_lex_state = 30}, - [1918] = {.lex_state = 180, .external_lex_state = 23}, - [1919] = {.lex_state = 199, .external_lex_state = 30}, - [1920] = {.lex_state = 223, .external_lex_state = 17}, - [1921] = {.lex_state = 218, .external_lex_state = 19}, - [1922] = {.lex_state = 199, .external_lex_state = 30}, - [1923] = {.lex_state = 223, .external_lex_state = 22}, - [1924] = {.lex_state = 218, .external_lex_state = 19}, - [1925] = {.lex_state = 218, .external_lex_state = 19}, - [1926] = {.lex_state = 218, .external_lex_state = 24}, - [1927] = {.lex_state = 218, .external_lex_state = 19}, - [1928] = {.lex_state = 245, .external_lex_state = 31}, - [1929] = {.lex_state = 223, .external_lex_state = 17}, - [1930] = {.lex_state = 247, .external_lex_state = 32}, - [1931] = {.lex_state = 242, .external_lex_state = 32}, - [1932] = {.lex_state = 242, .external_lex_state = 32}, - [1933] = {.lex_state = 245, .external_lex_state = 31}, - [1934] = {.lex_state = 245, .external_lex_state = 31}, - [1935] = {.lex_state = 242, .external_lex_state = 32}, - [1936] = {.lex_state = 247, .external_lex_state = 32}, - [1937] = {.lex_state = 247, .external_lex_state = 32}, - [1938] = {.lex_state = 245, .external_lex_state = 31}, - [1939] = {.lex_state = 245, .external_lex_state = 31}, - [1940] = {.lex_state = 247, .external_lex_state = 32}, - [1941] = {.lex_state = 218, .external_lex_state = 19}, - [1942] = {.lex_state = 242, .external_lex_state = 27}, - [1943] = {.lex_state = 245, .external_lex_state = 31}, - [1944] = {.lex_state = 245, .external_lex_state = 31}, - [1945] = {.lex_state = 218, .external_lex_state = 19}, - [1946] = {.lex_state = 245, .external_lex_state = 31}, - [1947] = {.lex_state = 245, .external_lex_state = 31}, - [1948] = {.lex_state = 218, .external_lex_state = 19}, - [1949] = {.lex_state = 242, .external_lex_state = 27}, - [1950] = {.lex_state = 242, .external_lex_state = 27}, - [1951] = {.lex_state = 242, .external_lex_state = 32}, - [1952] = {.lex_state = 242, .external_lex_state = 27}, - [1953] = {.lex_state = 245, .external_lex_state = 31}, - [1954] = {.lex_state = 218, .external_lex_state = 19}, - [1955] = {.lex_state = 242, .external_lex_state = 27}, - [1956] = {.lex_state = 242, .external_lex_state = 27}, - [1957] = {.lex_state = 245, .external_lex_state = 31}, - [1958] = {.lex_state = 242, .external_lex_state = 27}, - [1959] = {.lex_state = 242, .external_lex_state = 27}, - [1960] = {.lex_state = 247, .external_lex_state = 32}, - [1961] = {.lex_state = 217, .external_lex_state = 24}, - [1962] = {.lex_state = 217, .external_lex_state = 24}, - [1963] = {.lex_state = 247, .external_lex_state = 32}, - [1964] = {.lex_state = 247, .external_lex_state = 32}, - [1965] = {.lex_state = 217, .external_lex_state = 24}, - [1966] = {.lex_state = 242, .external_lex_state = 27}, - [1967] = {.lex_state = 223, .external_lex_state = 17}, - [1968] = {.lex_state = 244, .external_lex_state = 15}, - [1969] = {.lex_state = 242, .external_lex_state = 27}, - [1970] = {.lex_state = 243, .external_lex_state = 14}, - [1971] = {.lex_state = 245, .external_lex_state = 31}, - [1972] = {.lex_state = 221, .external_lex_state = 19}, - [1973] = {.lex_state = 223, .external_lex_state = 17}, - [1974] = {.lex_state = 223, .external_lex_state = 17}, - [1975] = {.lex_state = 245, .external_lex_state = 31}, - [1976] = {.lex_state = 246, .external_lex_state = 13}, - [1977] = {.lex_state = 245, .external_lex_state = 31}, - [1978] = {.lex_state = 223, .external_lex_state = 17}, - [1979] = {.lex_state = 242, .external_lex_state = 27}, - [1980] = {.lex_state = 142, .external_lex_state = 33}, - [1981] = {.lex_state = 245, .external_lex_state = 31}, - [1982] = {.lex_state = 223, .external_lex_state = 17}, - [1983] = {.lex_state = 244, .external_lex_state = 15}, - [1984] = {.lex_state = 242, .external_lex_state = 27}, - [1985] = {.lex_state = 218, .external_lex_state = 19}, - [1986] = {.lex_state = 246, .external_lex_state = 13}, - [1987] = {.lex_state = 245, .external_lex_state = 31}, - [1988] = {.lex_state = 242, .external_lex_state = 27}, - [1989] = {.lex_state = 218, .external_lex_state = 19}, - [1990] = {.lex_state = 218, .external_lex_state = 19}, - [1991] = {.lex_state = 243, .external_lex_state = 14}, - [1992] = {.lex_state = 245, .external_lex_state = 31}, - [1993] = {.lex_state = 246, .external_lex_state = 13}, - [1994] = {.lex_state = 242, .external_lex_state = 27}, - [1995] = {.lex_state = 247, .external_lex_state = 32}, - [1996] = {.lex_state = 247, .external_lex_state = 32}, - [1997] = {.lex_state = 64, .external_lex_state = 34}, - [1998] = {.lex_state = 245, .external_lex_state = 31}, - [1999] = {.lex_state = 245, .external_lex_state = 31}, - [2000] = {.lex_state = 242, .external_lex_state = 27}, - [2001] = {.lex_state = 64, .external_lex_state = 34}, - [2002] = {.lex_state = 245, .external_lex_state = 31}, - [2003] = {.lex_state = 223, .external_lex_state = 17}, - [2004] = {.lex_state = 223, .external_lex_state = 17}, - [2005] = {.lex_state = 247, .external_lex_state = 32}, - [2006] = {.lex_state = 242, .external_lex_state = 27}, - [2007] = {.lex_state = 247, .external_lex_state = 32}, - [2008] = {.lex_state = 247, .external_lex_state = 32}, - [2009] = {.lex_state = 217, .external_lex_state = 19}, - [2010] = {.lex_state = 247, .external_lex_state = 32}, - [2011] = {.lex_state = 247, .external_lex_state = 32}, - [2012] = {.lex_state = 242, .external_lex_state = 27}, - [2013] = {.lex_state = 247, .external_lex_state = 32}, - [2014] = {.lex_state = 243, .external_lex_state = 14}, - [2015] = {.lex_state = 242, .external_lex_state = 27}, - [2016] = {.lex_state = 247, .external_lex_state = 32}, - [2017] = {.lex_state = 242, .external_lex_state = 27}, - [2018] = {.lex_state = 247, .external_lex_state = 32}, - [2019] = {.lex_state = 223, .external_lex_state = 22}, - [2020] = {.lex_state = 242, .external_lex_state = 32}, - [2021] = {.lex_state = 242, .external_lex_state = 32}, - [2022] = {.lex_state = 247, .external_lex_state = 32}, - [2023] = {.lex_state = 217, .external_lex_state = 24}, - [2024] = {.lex_state = 247, .external_lex_state = 32}, - [2025] = {.lex_state = 252, .external_lex_state = 35}, - [2026] = {.lex_state = 223, .external_lex_state = 17}, - [2027] = {.lex_state = 252, .external_lex_state = 35}, - [2028] = {.lex_state = 223, .external_lex_state = 17}, - [2029] = {.lex_state = 243, .external_lex_state = 14}, - [2030] = {.lex_state = 252, .external_lex_state = 35}, - [2031] = {.lex_state = 247, .external_lex_state = 32}, - [2032] = {.lex_state = 242, .external_lex_state = 27}, - [2033] = {.lex_state = 252, .external_lex_state = 35}, - [2034] = {.lex_state = 223, .external_lex_state = 17}, - [2035] = {.lex_state = 246, .external_lex_state = 13}, - [2036] = {.lex_state = 217, .external_lex_state = 19}, - [2037] = {.lex_state = 218, .external_lex_state = 19}, - [2038] = {.lex_state = 218, .external_lex_state = 19}, - [2039] = {.lex_state = 242, .external_lex_state = 32}, - [2040] = {.lex_state = 217, .external_lex_state = 19}, - [2041] = {.lex_state = 218, .external_lex_state = 19}, - [2042] = {.lex_state = 217, .external_lex_state = 19}, - [2043] = {.lex_state = 242, .external_lex_state = 32}, - [2044] = {.lex_state = 252, .external_lex_state = 10}, - [2045] = {.lex_state = 218, .external_lex_state = 19}, - [2046] = {.lex_state = 252, .external_lex_state = 10}, - [2047] = {.lex_state = 242, .external_lex_state = 32}, - [2048] = {.lex_state = 242, .external_lex_state = 32}, - [2049] = {.lex_state = 242, .external_lex_state = 32}, - [2050] = {.lex_state = 217, .external_lex_state = 19}, - [2051] = {.lex_state = 217, .external_lex_state = 19}, - [2052] = {.lex_state = 217, .external_lex_state = 19}, - [2053] = {.lex_state = 240, .external_lex_state = 13}, - [2054] = {.lex_state = 218, .external_lex_state = 19}, - [2055] = {.lex_state = 252, .external_lex_state = 10}, - [2056] = {.lex_state = 217, .external_lex_state = 19}, - [2057] = {.lex_state = 218, .external_lex_state = 19}, - [2058] = {.lex_state = 217, .external_lex_state = 19}, - [2059] = {.lex_state = 217, .external_lex_state = 19}, - [2060] = {.lex_state = 218, .external_lex_state = 19}, - [2061] = {.lex_state = 217, .external_lex_state = 19}, - [2062] = {.lex_state = 218, .external_lex_state = 19}, - [2063] = {.lex_state = 217, .external_lex_state = 19}, - [2064] = {.lex_state = 217, .external_lex_state = 19}, - [2065] = {.lex_state = 223, .external_lex_state = 22}, - [2066] = {.lex_state = 217, .external_lex_state = 19}, - [2067] = {.lex_state = 218, .external_lex_state = 19}, - [2068] = {.lex_state = 252, .external_lex_state = 10}, - [2069] = {.lex_state = 244, .external_lex_state = 18}, - [2070] = {.lex_state = 242, .external_lex_state = 32}, - [2071] = {.lex_state = 223, .external_lex_state = 22}, - [2072] = {.lex_state = 217, .external_lex_state = 19}, - [2073] = {.lex_state = 223, .external_lex_state = 22}, - [2074] = {.lex_state = 223, .external_lex_state = 22}, - [2075] = {.lex_state = 217, .external_lex_state = 19}, - [2076] = {.lex_state = 246, .external_lex_state = 13}, - [2077] = {.lex_state = 242, .external_lex_state = 32}, - [2078] = {.lex_state = 252, .external_lex_state = 10}, - [2079] = {.lex_state = 218, .external_lex_state = 19}, - [2080] = {.lex_state = 217, .external_lex_state = 19}, - [2081] = {.lex_state = 246, .external_lex_state = 16}, - [2082] = {.lex_state = 242, .external_lex_state = 32}, - [2083] = {.lex_state = 242, .external_lex_state = 32}, - [2084] = {.lex_state = 242, .external_lex_state = 32}, - [2085] = {.lex_state = 217, .external_lex_state = 19}, - [2086] = {.lex_state = 217, .external_lex_state = 19}, - [2087] = {.lex_state = 217, .external_lex_state = 19}, - [2088] = {.lex_state = 217, .external_lex_state = 19}, - [2089] = {.lex_state = 64, .external_lex_state = 36}, - [2090] = {.lex_state = 64, .external_lex_state = 36}, - [2091] = {.lex_state = 217, .external_lex_state = 19}, - [2092] = {.lex_state = 218, .external_lex_state = 19}, - [2093] = {.lex_state = 223, .external_lex_state = 22}, - [2094] = {.lex_state = 244, .external_lex_state = 18}, - [2095] = {.lex_state = 223, .external_lex_state = 22}, - [2096] = {.lex_state = 223, .external_lex_state = 22}, - [2097] = {.lex_state = 223, .external_lex_state = 22}, - [2098] = {.lex_state = 217, .external_lex_state = 19}, - [2099] = {.lex_state = 217, .external_lex_state = 19}, - [2100] = {.lex_state = 217, .external_lex_state = 19}, - [2101] = {.lex_state = 242, .external_lex_state = 32}, - [2102] = {.lex_state = 218, .external_lex_state = 19}, - [2103] = {.lex_state = 242, .external_lex_state = 32}, - [2104] = {.lex_state = 217, .external_lex_state = 19}, - [2105] = {.lex_state = 244, .external_lex_state = 15}, - [2106] = {.lex_state = 218, .external_lex_state = 19}, - [2107] = {.lex_state = 218, .external_lex_state = 19}, - [2108] = {.lex_state = 242, .external_lex_state = 32}, - [2109] = {.lex_state = 145, .external_lex_state = 34}, - [2110] = {.lex_state = 217, .external_lex_state = 19}, - [2111] = {.lex_state = 223, .external_lex_state = 22}, - [2112] = {.lex_state = 218, .external_lex_state = 19}, - [2113] = {.lex_state = 217, .external_lex_state = 19}, - [2114] = {.lex_state = 246, .external_lex_state = 13}, - [2115] = {.lex_state = 252, .external_lex_state = 10}, - [2116] = {.lex_state = 217, .external_lex_state = 19}, - [2117] = {.lex_state = 217, .external_lex_state = 19}, - [2118] = {.lex_state = 246, .external_lex_state = 16}, - [2119] = {.lex_state = 217, .external_lex_state = 19}, - [2120] = {.lex_state = 218, .external_lex_state = 19}, - [2121] = {.lex_state = 145, .external_lex_state = 34}, - [2122] = {.lex_state = 217, .external_lex_state = 19}, - [2123] = {.lex_state = 244, .external_lex_state = 15}, - [2124] = {.lex_state = 246, .external_lex_state = 13}, - [2125] = {.lex_state = 217, .external_lex_state = 19}, - [2126] = {.lex_state = 242, .external_lex_state = 32}, - [2127] = {.lex_state = 242, .external_lex_state = 32}, - [2128] = {.lex_state = 218, .external_lex_state = 19}, - [2129] = {.lex_state = 217, .external_lex_state = 19}, - [2130] = {.lex_state = 217, .external_lex_state = 19}, - [2131] = {.lex_state = 217, .external_lex_state = 19}, - [2132] = {.lex_state = 217, .external_lex_state = 19}, - [2133] = {.lex_state = 217, .external_lex_state = 19}, - [2134] = {.lex_state = 240, .external_lex_state = 13}, - [2135] = {.lex_state = 218, .external_lex_state = 19}, - [2136] = {.lex_state = 242, .external_lex_state = 32}, - [2137] = {.lex_state = 217, .external_lex_state = 19}, - [2138] = {.lex_state = 242, .external_lex_state = 32}, - [2139] = {.lex_state = 218, .external_lex_state = 19}, - [2140] = {.lex_state = 223, .external_lex_state = 22}, - [2141] = {.lex_state = 242, .external_lex_state = 32}, - [2142] = {.lex_state = 240, .external_lex_state = 13}, - [2143] = {.lex_state = 223, .external_lex_state = 22}, - [2144] = {.lex_state = 217, .external_lex_state = 19}, - [2145] = {.lex_state = 217, .external_lex_state = 19}, - [2146] = {.lex_state = 242, .external_lex_state = 32}, - [2147] = {.lex_state = 242, .external_lex_state = 32}, - [2148] = {.lex_state = 250, .external_lex_state = 37}, - [2149] = {.lex_state = 218, .external_lex_state = 19}, - [2150] = {.lex_state = 240, .external_lex_state = 13}, - [2151] = {.lex_state = 149, .external_lex_state = 34}, - [2152] = {.lex_state = 250, .external_lex_state = 37}, - [2153] = {.lex_state = 250, .external_lex_state = 37}, - [2154] = {.lex_state = 240, .external_lex_state = 13}, - [2155] = {.lex_state = 254, .external_lex_state = 35}, - [2156] = {.lex_state = 240, .external_lex_state = 16}, - [2157] = {.lex_state = 250, .external_lex_state = 37}, - [2158] = {.lex_state = 250, .external_lex_state = 37}, - [2159] = {.lex_state = 430, .external_lex_state = 34}, - [2160] = {.lex_state = 254, .external_lex_state = 35}, - [2161] = {.lex_state = 157, .external_lex_state = 34}, - [2162] = {.lex_state = 145, .external_lex_state = 36}, - [2163] = {.lex_state = 218, .external_lex_state = 19}, - [2164] = {.lex_state = 430, .external_lex_state = 34}, - [2165] = {.lex_state = 250, .external_lex_state = 37}, - [2166] = {.lex_state = 149, .external_lex_state = 34}, - [2167] = {.lex_state = 145, .external_lex_state = 36}, - [2168] = {.lex_state = 250, .external_lex_state = 37}, - [2169] = {.lex_state = 240, .external_lex_state = 13}, - [2170] = {.lex_state = 240, .external_lex_state = 13}, - [2171] = {.lex_state = 250, .external_lex_state = 37}, - [2172] = {.lex_state = 246, .external_lex_state = 16}, - [2173] = {.lex_state = 254, .external_lex_state = 35}, - [2174] = {.lex_state = 250, .external_lex_state = 37}, - [2175] = {.lex_state = 240, .external_lex_state = 13}, - [2176] = {.lex_state = 244, .external_lex_state = 18}, - [2177] = {.lex_state = 240, .external_lex_state = 13}, - [2178] = {.lex_state = 240, .external_lex_state = 16}, - [2179] = {.lex_state = 254, .external_lex_state = 35}, - [2180] = {.lex_state = 254, .external_lex_state = 35}, - [2181] = {.lex_state = 218, .external_lex_state = 19}, - [2182] = {.lex_state = 250, .external_lex_state = 37}, - [2183] = {.lex_state = 250, .external_lex_state = 37}, - [2184] = {.lex_state = 250, .external_lex_state = 37}, - [2185] = {.lex_state = 254, .external_lex_state = 35}, - [2186] = {.lex_state = 157, .external_lex_state = 34}, - [2187] = {.lex_state = 218, .external_lex_state = 19}, - [2188] = {.lex_state = 254, .external_lex_state = 35}, - [2189] = {.lex_state = 254, .external_lex_state = 35}, - [2190] = {.lex_state = 240, .external_lex_state = 37}, - [2191] = {.lex_state = 240, .external_lex_state = 37}, - [2192] = {.lex_state = 183, .external_lex_state = 38}, - [2193] = {.lex_state = 240, .external_lex_state = 37}, - [2194] = {.lex_state = 254, .external_lex_state = 35}, - [2195] = {.lex_state = 240, .external_lex_state = 37}, - [2196] = {.lex_state = 183, .external_lex_state = 38}, - [2197] = {.lex_state = 254, .external_lex_state = 35}, - [2198] = {.lex_state = 430, .external_lex_state = 34}, - [2199] = {.lex_state = 430, .external_lex_state = 34}, - [2200] = {.lex_state = 254, .external_lex_state = 35}, - [2201] = {.lex_state = 72, .external_lex_state = 39}, - [2202] = {.lex_state = 240, .external_lex_state = 37}, - [2203] = {.lex_state = 254, .external_lex_state = 35}, - [2204] = {.lex_state = 240, .external_lex_state = 37}, - [2205] = {.lex_state = 254, .external_lex_state = 35}, - [2206] = {.lex_state = 254, .external_lex_state = 35}, - [2207] = {.lex_state = 240, .external_lex_state = 37}, - [2208] = {.lex_state = 240, .external_lex_state = 37}, - [2209] = {.lex_state = 254, .external_lex_state = 35}, - [2210] = {.lex_state = 240, .external_lex_state = 37}, - [2211] = {.lex_state = 253, .external_lex_state = 20}, - [2212] = {.lex_state = 430, .external_lex_state = 36}, - [2213] = {.lex_state = 240, .external_lex_state = 16}, - [2214] = {.lex_state = 240, .external_lex_state = 37}, - [2215] = {.lex_state = 240, .external_lex_state = 37}, - [2216] = {.lex_state = 430, .external_lex_state = 36}, - [2217] = {.lex_state = 254, .external_lex_state = 35}, - [2218] = {.lex_state = 157, .external_lex_state = 36}, - [2219] = {.lex_state = 157, .external_lex_state = 36}, - [2220] = {.lex_state = 240, .external_lex_state = 37}, - [2221] = {.lex_state = 149, .external_lex_state = 36}, - [2222] = {.lex_state = 183, .external_lex_state = 38}, - [2223] = {.lex_state = 240, .external_lex_state = 37}, - [2224] = {.lex_state = 254, .external_lex_state = 35}, - [2225] = {.lex_state = 254, .external_lex_state = 35}, - [2226] = {.lex_state = 149, .external_lex_state = 36}, - [2227] = {.lex_state = 240, .external_lex_state = 37}, - [2228] = {.lex_state = 254, .external_lex_state = 35}, - [2229] = {.lex_state = 254, .external_lex_state = 35}, - [2230] = {.lex_state = 240, .external_lex_state = 37}, - [2231] = {.lex_state = 254, .external_lex_state = 35}, - [2232] = {.lex_state = 240, .external_lex_state = 37}, - [2233] = {.lex_state = 183, .external_lex_state = 38}, - [2234] = {.lex_state = 254, .external_lex_state = 35}, - [2235] = {.lex_state = 254, .external_lex_state = 35}, - [2236] = {.lex_state = 240, .external_lex_state = 37}, - [2237] = {.lex_state = 240, .external_lex_state = 37}, - [2238] = {.lex_state = 254, .external_lex_state = 35}, - [2239] = {.lex_state = 254, .external_lex_state = 35}, - [2240] = {.lex_state = 254, .external_lex_state = 35}, - [2241] = {.lex_state = 72, .external_lex_state = 39}, - [2242] = {.lex_state = 248, .external_lex_state = 10}, - [2243] = {.lex_state = 255, .external_lex_state = 40}, - [2244] = {.lex_state = 72, .external_lex_state = 39}, - [2245] = {.lex_state = 72, .external_lex_state = 39}, - [2246] = {.lex_state = 72, .external_lex_state = 39}, - [2247] = {.lex_state = 72, .external_lex_state = 39}, - [2248] = {.lex_state = 430, .external_lex_state = 36}, - [2249] = {.lex_state = 72, .external_lex_state = 39}, - [2250] = {.lex_state = 430, .external_lex_state = 36}, - [2251] = {.lex_state = 255, .external_lex_state = 40}, - [2252] = {.lex_state = 255, .external_lex_state = 40}, - [2253] = {.lex_state = 255, .external_lex_state = 40}, - [2254] = {.lex_state = 72, .external_lex_state = 39}, - [2255] = {.lex_state = 72, .external_lex_state = 39}, - [2256] = {.lex_state = 72, .external_lex_state = 39}, - [2257] = {.lex_state = 72, .external_lex_state = 39}, - [2258] = {.lex_state = 72, .external_lex_state = 39}, - [2259] = {.lex_state = 72, .external_lex_state = 39}, - [2260] = {.lex_state = 72, .external_lex_state = 39}, - [2261] = {.lex_state = 255, .external_lex_state = 40}, - [2262] = {.lex_state = 253, .external_lex_state = 10}, - [2263] = {.lex_state = 255, .external_lex_state = 40}, - [2264] = {.lex_state = 255, .external_lex_state = 40}, - [2265] = {.lex_state = 248, .external_lex_state = 10}, - [2266] = {.lex_state = 255, .external_lex_state = 40}, - [2267] = {.lex_state = 255, .external_lex_state = 40}, - [2268] = {.lex_state = 248, .external_lex_state = 10}, - [2269] = {.lex_state = 72, .external_lex_state = 39}, - [2270] = {.lex_state = 72, .external_lex_state = 39}, - [2271] = {.lex_state = 255, .external_lex_state = 40}, - [2272] = {.lex_state = 255, .external_lex_state = 40}, - [2273] = {.lex_state = 255, .external_lex_state = 40}, - [2274] = {.lex_state = 72, .external_lex_state = 39}, - [2275] = {.lex_state = 72, .external_lex_state = 39}, - [2276] = {.lex_state = 240, .external_lex_state = 37}, - [2277] = {.lex_state = 248, .external_lex_state = 10}, - [2278] = {.lex_state = 72, .external_lex_state = 39}, - [2279] = {.lex_state = 255, .external_lex_state = 40}, - [2280] = {.lex_state = 173, .external_lex_state = 38}, - [2281] = {.lex_state = 173, .external_lex_state = 38}, - [2282] = {.lex_state = 255, .external_lex_state = 40}, - [2283] = {.lex_state = 255, .external_lex_state = 40}, - [2284] = {.lex_state = 255, .external_lex_state = 40}, - [2285] = {.lex_state = 255, .external_lex_state = 40}, - [2286] = {.lex_state = 255, .external_lex_state = 40}, - [2287] = {.lex_state = 255, .external_lex_state = 40}, - [2288] = {.lex_state = 255, .external_lex_state = 40}, - [2289] = {.lex_state = 248, .external_lex_state = 10}, - [2290] = {.lex_state = 255, .external_lex_state = 40}, - [2291] = {.lex_state = 253, .external_lex_state = 10}, - [2292] = {.lex_state = 72, .external_lex_state = 39}, - [2293] = {.lex_state = 255, .external_lex_state = 40}, - [2294] = {.lex_state = 255, .external_lex_state = 40}, - [2295] = {.lex_state = 238, .external_lex_state = 2}, - [2296] = {.lex_state = 224, .external_lex_state = 19}, - [2297] = {.lex_state = 253, .external_lex_state = 10}, - [2298] = {.lex_state = 253, .external_lex_state = 10}, - [2299] = {.lex_state = 253, .external_lex_state = 10}, - [2300] = {.lex_state = 225, .external_lex_state = 19}, - [2301] = {.lex_state = 224, .external_lex_state = 19}, - [2302] = {.lex_state = 240, .external_lex_state = 30}, - [2303] = {.lex_state = 225, .external_lex_state = 19}, - [2304] = {.lex_state = 225, .external_lex_state = 19}, - [2305] = {.lex_state = 225, .external_lex_state = 19}, - [2306] = {.lex_state = 240, .external_lex_state = 30}, - [2307] = {.lex_state = 240, .external_lex_state = 30}, - [2308] = {.lex_state = 240, .external_lex_state = 30}, - [2309] = {.lex_state = 205, .external_lex_state = 10}, - [2310] = {.lex_state = 166, .external_lex_state = 38}, - [2311] = {.lex_state = 224, .external_lex_state = 19}, - [2312] = {.lex_state = 240, .external_lex_state = 30}, - [2313] = {.lex_state = 240, .external_lex_state = 30}, - [2314] = {.lex_state = 205, .external_lex_state = 10}, - [2315] = {.lex_state = 225, .external_lex_state = 19}, - [2316] = {.lex_state = 224, .external_lex_state = 19}, - [2317] = {.lex_state = 240, .external_lex_state = 30}, - [2318] = {.lex_state = 160, .external_lex_state = 34}, - [2319] = {.lex_state = 224, .external_lex_state = 19}, - [2320] = {.lex_state = 224, .external_lex_state = 19}, - [2321] = {.lex_state = 240, .external_lex_state = 30}, - [2322] = {.lex_state = 225, .external_lex_state = 19}, - [2323] = {.lex_state = 240, .external_lex_state = 30}, - [2324] = {.lex_state = 240, .external_lex_state = 30}, - [2325] = {.lex_state = 240, .external_lex_state = 30}, - [2326] = {.lex_state = 160, .external_lex_state = 34}, - [2327] = {.lex_state = 240, .external_lex_state = 30}, - [2328] = {.lex_state = 240, .external_lex_state = 30}, - [2329] = {.lex_state = 240, .external_lex_state = 30}, - [2330] = {.lex_state = 240, .external_lex_state = 30}, - [2331] = {.lex_state = 225, .external_lex_state = 19}, - [2332] = {.lex_state = 224, .external_lex_state = 19}, - [2333] = {.lex_state = 225, .external_lex_state = 19}, - [2334] = {.lex_state = 240, .external_lex_state = 30}, - [2335] = {.lex_state = 240, .external_lex_state = 30}, - [2336] = {.lex_state = 239, .external_lex_state = 41}, - [2337] = {.lex_state = 225, .external_lex_state = 19}, - [2338] = {.lex_state = 225, .external_lex_state = 19}, - [2339] = {.lex_state = 224, .external_lex_state = 19}, - [2340] = {.lex_state = 225, .external_lex_state = 19}, - [2341] = {.lex_state = 240, .external_lex_state = 30}, - [2342] = {.lex_state = 224, .external_lex_state = 19}, - [2343] = {.lex_state = 224, .external_lex_state = 19}, - [2344] = {.lex_state = 224, .external_lex_state = 19}, - [2345] = {.lex_state = 239, .external_lex_state = 41}, - [2346] = {.lex_state = 224, .external_lex_state = 19}, - [2347] = {.lex_state = 240, .external_lex_state = 30}, - [2348] = {.lex_state = 240, .external_lex_state = 30}, - [2349] = {.lex_state = 240, .external_lex_state = 30}, - [2350] = {.lex_state = 240, .external_lex_state = 30}, - [2351] = {.lex_state = 225, .external_lex_state = 19}, - [2352] = {.lex_state = 224, .external_lex_state = 19}, - [2353] = {.lex_state = 224, .external_lex_state = 19}, - [2354] = {.lex_state = 224, .external_lex_state = 19}, - [2355] = {.lex_state = 225, .external_lex_state = 19}, - [2356] = {.lex_state = 240, .external_lex_state = 30}, - [2357] = {.lex_state = 240, .external_lex_state = 30}, - [2358] = {.lex_state = 224, .external_lex_state = 19}, - [2359] = {.lex_state = 224, .external_lex_state = 19}, - [2360] = {.lex_state = 225, .external_lex_state = 19}, - [2361] = {.lex_state = 225, .external_lex_state = 19}, - [2362] = {.lex_state = 225, .external_lex_state = 19}, - [2363] = {.lex_state = 239, .external_lex_state = 41}, - [2364] = {.lex_state = 240, .external_lex_state = 30}, - [2365] = {.lex_state = 240, .external_lex_state = 30}, - [2366] = {.lex_state = 225, .external_lex_state = 19}, - [2367] = {.lex_state = 225, .external_lex_state = 19}, - [2368] = {.lex_state = 239, .external_lex_state = 41}, - [2369] = {.lex_state = 225, .external_lex_state = 19}, - [2370] = {.lex_state = 240, .external_lex_state = 30}, - [2371] = {.lex_state = 224, .external_lex_state = 19}, - [2372] = {.lex_state = 240, .external_lex_state = 30}, - [2373] = {.lex_state = 224, .external_lex_state = 19}, - [2374] = {.lex_state = 240, .external_lex_state = 30}, - [2375] = {.lex_state = 240, .external_lex_state = 30}, - [2376] = {.lex_state = 239, .external_lex_state = 41}, - [2377] = {.lex_state = 239, .external_lex_state = 41}, - [2378] = {.lex_state = 166, .external_lex_state = 38}, - [2379] = {.lex_state = 240, .external_lex_state = 30}, - [2380] = {.lex_state = 166, .external_lex_state = 38}, - [2381] = {.lex_state = 224, .external_lex_state = 19}, - [2382] = {.lex_state = 239, .external_lex_state = 41}, - [2383] = {.lex_state = 240, .external_lex_state = 30}, - [2384] = {.lex_state = 239, .external_lex_state = 41}, - [2385] = {.lex_state = 225, .external_lex_state = 19}, - [2386] = {.lex_state = 240, .external_lex_state = 30}, - [2387] = {.lex_state = 226, .external_lex_state = 42}, - [2388] = {.lex_state = 175, .external_lex_state = 38}, - [2389] = {.lex_state = 239, .external_lex_state = 41}, - [2390] = {.lex_state = 175, .external_lex_state = 38}, - [2391] = {.lex_state = 240, .external_lex_state = 43}, - [2392] = {.lex_state = 240, .external_lex_state = 43}, - [2393] = {.lex_state = 240, .external_lex_state = 30}, - [2394] = {.lex_state = 240, .external_lex_state = 30}, - [2395] = {.lex_state = 239, .external_lex_state = 41}, - [2396] = {.lex_state = 240, .external_lex_state = 30}, - [2397] = {.lex_state = 240, .external_lex_state = 30}, - [2398] = {.lex_state = 240, .external_lex_state = 37}, - [2399] = {.lex_state = 239, .external_lex_state = 41}, - [2400] = {.lex_state = 240, .external_lex_state = 30}, - [2401] = {.lex_state = 226, .external_lex_state = 42}, - [2402] = {.lex_state = 240, .external_lex_state = 43}, - [2403] = {.lex_state = 240, .external_lex_state = 30}, - [2404] = {.lex_state = 240, .external_lex_state = 30}, - [2405] = {.lex_state = 240, .external_lex_state = 30}, - [2406] = {.lex_state = 239, .external_lex_state = 41}, - [2407] = {.lex_state = 240, .external_lex_state = 30}, - [2408] = {.lex_state = 240, .external_lex_state = 43}, - [2409] = {.lex_state = 239, .external_lex_state = 41}, - [2410] = {.lex_state = 240, .external_lex_state = 37}, - [2411] = {.lex_state = 240, .external_lex_state = 30}, - [2412] = {.lex_state = 239, .external_lex_state = 41}, - [2413] = {.lex_state = 239, .external_lex_state = 41}, - [2414] = {.lex_state = 239, .external_lex_state = 41}, - [2415] = {.lex_state = 240, .external_lex_state = 30}, - [2416] = {.lex_state = 240, .external_lex_state = 30}, - [2417] = {.lex_state = 240, .external_lex_state = 30}, - [2418] = {.lex_state = 240, .external_lex_state = 30}, - [2419] = {.lex_state = 240, .external_lex_state = 30}, - [2420] = {.lex_state = 239, .external_lex_state = 41}, - [2421] = {.lex_state = 240, .external_lex_state = 30}, - [2422] = {.lex_state = 240, .external_lex_state = 30}, - [2423] = {.lex_state = 240, .external_lex_state = 30}, - [2424] = {.lex_state = 240, .external_lex_state = 30}, - [2425] = {.lex_state = 239, .external_lex_state = 41}, - [2426] = {.lex_state = 240, .external_lex_state = 37}, - [2427] = {.lex_state = 240, .external_lex_state = 30}, - [2428] = {.lex_state = 239, .external_lex_state = 41}, - [2429] = {.lex_state = 240, .external_lex_state = 43}, - [2430] = {.lex_state = 240, .external_lex_state = 30}, - [2431] = {.lex_state = 240, .external_lex_state = 30}, - [2432] = {.lex_state = 240, .external_lex_state = 30}, - [2433] = {.lex_state = 240, .external_lex_state = 30}, - [2434] = {.lex_state = 240, .external_lex_state = 30}, - [2435] = {.lex_state = 240, .external_lex_state = 30}, - [2436] = {.lex_state = 240, .external_lex_state = 30}, - [2437] = {.lex_state = 240, .external_lex_state = 30}, - [2438] = {.lex_state = 239, .external_lex_state = 41}, - [2439] = {.lex_state = 240, .external_lex_state = 43}, - [2440] = {.lex_state = 239, .external_lex_state = 41}, - [2441] = {.lex_state = 240, .external_lex_state = 30}, - [2442] = {.lex_state = 240, .external_lex_state = 30}, - [2443] = {.lex_state = 239, .external_lex_state = 41}, - [2444] = {.lex_state = 239, .external_lex_state = 41}, - [2445] = {.lex_state = 206, .external_lex_state = 30}, - [2446] = {.lex_state = 239, .external_lex_state = 41}, - [2447] = {.lex_state = 240, .external_lex_state = 43}, - [2448] = {.lex_state = 239, .external_lex_state = 41}, - [2449] = {.lex_state = 240, .external_lex_state = 30}, - [2450] = {.lex_state = 206, .external_lex_state = 30}, - [2451] = {.lex_state = 240, .external_lex_state = 30}, - [2452] = {.lex_state = 240, .external_lex_state = 30}, - [2453] = {.lex_state = 240, .external_lex_state = 30}, - [2454] = {.lex_state = 239, .external_lex_state = 41}, - [2455] = {.lex_state = 239, .external_lex_state = 41}, - [2456] = {.lex_state = 160, .external_lex_state = 36}, - [2457] = {.lex_state = 160, .external_lex_state = 36}, - [2458] = {.lex_state = 227, .external_lex_state = 44}, - [2459] = {.lex_state = 239, .external_lex_state = 41}, - [2460] = {.lex_state = 227, .external_lex_state = 44}, - [2461] = {.lex_state = 240, .external_lex_state = 30}, - [2462] = {.lex_state = 248, .external_lex_state = 10}, - [2463] = {.lex_state = 240, .external_lex_state = 30}, - [2464] = {.lex_state = 248, .external_lex_state = 10}, - [2465] = {.lex_state = 240, .external_lex_state = 30}, - [2466] = {.lex_state = 240, .external_lex_state = 30}, - [2467] = {.lex_state = 240, .external_lex_state = 30}, - [2468] = {.lex_state = 240, .external_lex_state = 30}, - [2469] = {.lex_state = 240, .external_lex_state = 30}, - [2470] = {.lex_state = 240, .external_lex_state = 30}, - [2471] = {.lex_state = 240, .external_lex_state = 30}, - [2472] = {.lex_state = 240, .external_lex_state = 30}, - [2473] = {.lex_state = 73, .external_lex_state = 45}, - [2474] = {.lex_state = 240, .external_lex_state = 30}, - [2475] = {.lex_state = 240, .external_lex_state = 30}, - [2476] = {.lex_state = 240, .external_lex_state = 30}, - [2477] = {.lex_state = 240, .external_lex_state = 30}, - [2478] = {.lex_state = 256, .external_lex_state = 46}, - [2479] = {.lex_state = 256, .external_lex_state = 46}, - [2480] = {.lex_state = 227, .external_lex_state = 47}, - [2481] = {.lex_state = 227, .external_lex_state = 47}, - [2482] = {.lex_state = 240, .external_lex_state = 30}, - [2483] = {.lex_state = 238, .external_lex_state = 2}, - [2484] = {.lex_state = 240, .external_lex_state = 30}, - [2485] = {.lex_state = 240, .external_lex_state = 30}, - [2486] = {.lex_state = 240, .external_lex_state = 30}, - [2487] = {.lex_state = 240, .external_lex_state = 30}, - [2488] = {.lex_state = 73, .external_lex_state = 45}, - [2489] = {.lex_state = 240, .external_lex_state = 30}, - [2490] = {.lex_state = 240, .external_lex_state = 30}, - [2491] = {.lex_state = 240, .external_lex_state = 30}, - [2492] = {.lex_state = 256, .external_lex_state = 46}, - [2493] = {.lex_state = 256, .external_lex_state = 46}, - [2494] = {.lex_state = 240, .external_lex_state = 30}, - [2495] = {.lex_state = 238, .external_lex_state = 2}, - [2496] = {.lex_state = 240, .external_lex_state = 30}, - [2497] = {.lex_state = 256, .external_lex_state = 46}, - [2498] = {.lex_state = 240, .external_lex_state = 30}, - [2499] = {.lex_state = 256, .external_lex_state = 46}, - [2500] = {.lex_state = 256, .external_lex_state = 46}, - [2501] = {.lex_state = 256, .external_lex_state = 46}, - [2502] = {.lex_state = 238, .external_lex_state = 2}, - [2503] = {.lex_state = 240, .external_lex_state = 30}, - [2504] = {.lex_state = 73, .external_lex_state = 45}, - [2505] = {.lex_state = 240, .external_lex_state = 30}, - [2506] = {.lex_state = 255, .external_lex_state = 30}, - [2507] = {.lex_state = 255, .external_lex_state = 30}, - [2508] = {.lex_state = 255, .external_lex_state = 30}, - [2509] = {.lex_state = 255, .external_lex_state = 30}, - [2510] = {.lex_state = 238, .external_lex_state = 2}, - [2511] = {.lex_state = 255, .external_lex_state = 30}, - [2512] = {.lex_state = 255, .external_lex_state = 30}, - [2513] = {.lex_state = 255, .external_lex_state = 30}, - [2514] = {.lex_state = 255, .external_lex_state = 30}, - [2515] = {.lex_state = 255, .external_lex_state = 30}, - [2516] = {.lex_state = 73, .external_lex_state = 45}, - [2517] = {.lex_state = 255, .external_lex_state = 30}, - [2518] = {.lex_state = 255, .external_lex_state = 30}, - [2519] = {.lex_state = 255, .external_lex_state = 30}, - [2520] = {.lex_state = 255, .external_lex_state = 30}, - [2521] = {.lex_state = 255, .external_lex_state = 30}, - [2522] = {.lex_state = 255, .external_lex_state = 30}, - [2523] = {.lex_state = 255, .external_lex_state = 30}, - [2524] = {.lex_state = 255, .external_lex_state = 30}, - [2525] = {.lex_state = 255, .external_lex_state = 30}, - [2526] = {.lex_state = 255, .external_lex_state = 30}, - [2527] = {.lex_state = 255, .external_lex_state = 30}, - [2528] = {.lex_state = 255, .external_lex_state = 30}, - [2529] = {.lex_state = 255, .external_lex_state = 30}, - [2530] = {.lex_state = 238, .external_lex_state = 2}, - [2531] = {.lex_state = 255, .external_lex_state = 30}, - [2532] = {.lex_state = 255, .external_lex_state = 30}, - [2533] = {.lex_state = 255, .external_lex_state = 30}, - [2534] = {.lex_state = 255, .external_lex_state = 30}, - [2535] = {.lex_state = 255, .external_lex_state = 30}, - [2536] = {.lex_state = 255, .external_lex_state = 30}, - [2537] = {.lex_state = 255, .external_lex_state = 30}, - [2538] = {.lex_state = 255, .external_lex_state = 30}, - [2539] = {.lex_state = 255, .external_lex_state = 30}, - [2540] = {.lex_state = 255, .external_lex_state = 30}, - [2541] = {.lex_state = 255, .external_lex_state = 30}, - [2542] = {.lex_state = 255, .external_lex_state = 30}, - [2543] = {.lex_state = 255, .external_lex_state = 30}, - [2544] = {.lex_state = 73, .external_lex_state = 45}, - [2545] = {.lex_state = 255, .external_lex_state = 30}, - [2546] = {.lex_state = 255, .external_lex_state = 30}, - [2547] = {.lex_state = 255, .external_lex_state = 30}, - [2548] = {.lex_state = 255, .external_lex_state = 30}, - [2549] = {.lex_state = 255, .external_lex_state = 30}, - [2550] = {.lex_state = 255, .external_lex_state = 30}, - [2551] = {.lex_state = 255, .external_lex_state = 30}, - [2552] = {.lex_state = 255, .external_lex_state = 30}, - [2553] = {.lex_state = 255, .external_lex_state = 30}, - [2554] = {.lex_state = 255, .external_lex_state = 30}, - [2555] = {.lex_state = 255, .external_lex_state = 30}, - [2556] = {.lex_state = 255, .external_lex_state = 30}, - [2557] = {.lex_state = 255, .external_lex_state = 30}, - [2558] = {.lex_state = 255, .external_lex_state = 30}, - [2559] = {.lex_state = 255, .external_lex_state = 30}, - [2560] = {.lex_state = 255, .external_lex_state = 30}, - [2561] = {.lex_state = 255, .external_lex_state = 30}, - [2562] = {.lex_state = 255, .external_lex_state = 30}, - [2563] = {.lex_state = 255, .external_lex_state = 30}, - [2564] = {.lex_state = 255, .external_lex_state = 30}, - [2565] = {.lex_state = 255, .external_lex_state = 30}, - [2566] = {.lex_state = 255, .external_lex_state = 30}, - [2567] = {.lex_state = 255, .external_lex_state = 30}, - [2568] = {.lex_state = 255, .external_lex_state = 30}, - [2569] = {.lex_state = 255, .external_lex_state = 30}, - [2570] = {.lex_state = 255, .external_lex_state = 30}, - [2571] = {.lex_state = 255, .external_lex_state = 30}, - [2572] = {.lex_state = 255, .external_lex_state = 30}, - [2573] = {.lex_state = 255, .external_lex_state = 30}, - [2574] = {.lex_state = 255, .external_lex_state = 30}, - [2575] = {.lex_state = 255, .external_lex_state = 30}, - [2576] = {.lex_state = 255, .external_lex_state = 30}, - [2577] = {.lex_state = 255, .external_lex_state = 30}, - [2578] = {.lex_state = 255, .external_lex_state = 30}, - [2579] = {.lex_state = 255, .external_lex_state = 30}, - [2580] = {.lex_state = 255, .external_lex_state = 30}, - [2581] = {.lex_state = 255, .external_lex_state = 30}, - [2582] = {.lex_state = 255, .external_lex_state = 30}, - [2583] = {.lex_state = 255, .external_lex_state = 30}, - [2584] = {.lex_state = 255, .external_lex_state = 30}, - [2585] = {.lex_state = 255, .external_lex_state = 30}, - [2586] = {.lex_state = 255, .external_lex_state = 30}, - [2587] = {.lex_state = 255, .external_lex_state = 30}, - [2588] = {.lex_state = 255, .external_lex_state = 30}, - [2589] = {.lex_state = 255, .external_lex_state = 30}, - [2590] = {.lex_state = 255, .external_lex_state = 30}, - [2591] = {.lex_state = 255, .external_lex_state = 30}, - [2592] = {.lex_state = 255, .external_lex_state = 30}, - [2593] = {.lex_state = 255, .external_lex_state = 30}, - [2594] = {.lex_state = 255, .external_lex_state = 30}, - [2595] = {.lex_state = 255, .external_lex_state = 30}, - [2596] = {.lex_state = 255, .external_lex_state = 30}, - [2597] = {.lex_state = 255, .external_lex_state = 30}, - [2598] = {.lex_state = 255, .external_lex_state = 30}, - [2599] = {.lex_state = 255, .external_lex_state = 30}, - [2600] = {.lex_state = 255, .external_lex_state = 30}, - [2601] = {.lex_state = 255, .external_lex_state = 30}, - [2602] = {.lex_state = 255, .external_lex_state = 30}, - [2603] = {.lex_state = 75, .external_lex_state = 48}, - [2604] = {.lex_state = 255, .external_lex_state = 30}, - [2605] = {.lex_state = 238, .external_lex_state = 2}, - [2606] = {.lex_state = 255, .external_lex_state = 30}, - [2607] = {.lex_state = 255, .external_lex_state = 30}, - [2608] = {.lex_state = 255, .external_lex_state = 30}, - [2609] = {.lex_state = 255, .external_lex_state = 30}, - [2610] = {.lex_state = 255, .external_lex_state = 30}, - [2611] = {.lex_state = 255, .external_lex_state = 30}, - [2612] = {.lex_state = 238, .external_lex_state = 2}, - [2613] = {.lex_state = 255, .external_lex_state = 30}, - [2614] = {.lex_state = 255, .external_lex_state = 30}, - [2615] = {.lex_state = 255, .external_lex_state = 30}, - [2616] = {.lex_state = 255, .external_lex_state = 30}, - [2617] = {.lex_state = 255, .external_lex_state = 30}, - [2618] = {.lex_state = 255, .external_lex_state = 30}, - [2619] = {.lex_state = 255, .external_lex_state = 30}, - [2620] = {.lex_state = 255, .external_lex_state = 30}, - [2621] = {.lex_state = 255, .external_lex_state = 30}, - [2622] = {.lex_state = 255, .external_lex_state = 30}, - [2623] = {.lex_state = 255, .external_lex_state = 30}, - [2624] = {.lex_state = 255, .external_lex_state = 30}, - [2625] = {.lex_state = 255, .external_lex_state = 30}, - [2626] = {.lex_state = 255, .external_lex_state = 30}, - [2627] = {.lex_state = 255, .external_lex_state = 30}, - [2628] = {.lex_state = 255, .external_lex_state = 30}, - [2629] = {.lex_state = 255, .external_lex_state = 30}, - [2630] = {.lex_state = 255, .external_lex_state = 30}, - [2631] = {.lex_state = 255, .external_lex_state = 30}, - [2632] = {.lex_state = 255, .external_lex_state = 30}, - [2633] = {.lex_state = 255, .external_lex_state = 30}, - [2634] = {.lex_state = 255, .external_lex_state = 30}, - [2635] = {.lex_state = 255, .external_lex_state = 30}, - [2636] = {.lex_state = 255, .external_lex_state = 30}, - [2637] = {.lex_state = 255, .external_lex_state = 30}, - [2638] = {.lex_state = 255, .external_lex_state = 30}, - [2639] = {.lex_state = 255, .external_lex_state = 30}, - [2640] = {.lex_state = 255, .external_lex_state = 30}, - [2641] = {.lex_state = 255, .external_lex_state = 30}, - [2642] = {.lex_state = 255, .external_lex_state = 30}, - [2643] = {.lex_state = 255, .external_lex_state = 30}, - [2644] = {.lex_state = 255, .external_lex_state = 30}, - [2645] = {.lex_state = 73, .external_lex_state = 45}, - [2646] = {.lex_state = 255, .external_lex_state = 30}, - [2647] = {.lex_state = 255, .external_lex_state = 30}, - [2648] = {.lex_state = 255, .external_lex_state = 30}, - [2649] = {.lex_state = 255, .external_lex_state = 30}, - [2650] = {.lex_state = 255, .external_lex_state = 30}, - [2651] = {.lex_state = 255, .external_lex_state = 30}, - [2652] = {.lex_state = 255, .external_lex_state = 30}, - [2653] = {.lex_state = 255, .external_lex_state = 30}, - [2654] = {.lex_state = 255, .external_lex_state = 30}, - [2655] = {.lex_state = 255, .external_lex_state = 30}, - [2656] = {.lex_state = 255, .external_lex_state = 30}, - [2657] = {.lex_state = 255, .external_lex_state = 30}, - [2658] = {.lex_state = 255, .external_lex_state = 30}, - [2659] = {.lex_state = 255, .external_lex_state = 30}, - [2660] = {.lex_state = 255, .external_lex_state = 30}, - [2661] = {.lex_state = 255, .external_lex_state = 30}, - [2662] = {.lex_state = 255, .external_lex_state = 30}, - [2663] = {.lex_state = 255, .external_lex_state = 30}, - [2664] = {.lex_state = 255, .external_lex_state = 30}, - [2665] = {.lex_state = 255, .external_lex_state = 30}, - [2666] = {.lex_state = 255, .external_lex_state = 30}, - [2667] = {.lex_state = 255, .external_lex_state = 30}, - [2668] = {.lex_state = 255, .external_lex_state = 30}, - [2669] = {.lex_state = 255, .external_lex_state = 30}, - [2670] = {.lex_state = 255, .external_lex_state = 30}, - [2671] = {.lex_state = 255, .external_lex_state = 30}, - [2672] = {.lex_state = 255, .external_lex_state = 30}, - [2673] = {.lex_state = 255, .external_lex_state = 30}, - [2674] = {.lex_state = 255, .external_lex_state = 30}, - [2675] = {.lex_state = 255, .external_lex_state = 30}, - [2676] = {.lex_state = 255, .external_lex_state = 30}, - [2677] = {.lex_state = 255, .external_lex_state = 30}, - [2678] = {.lex_state = 255, .external_lex_state = 30}, - [2679] = {.lex_state = 255, .external_lex_state = 30}, - [2680] = {.lex_state = 255, .external_lex_state = 30}, - [2681] = {.lex_state = 255, .external_lex_state = 30}, - [2682] = {.lex_state = 255, .external_lex_state = 30}, - [2683] = {.lex_state = 255, .external_lex_state = 30}, - [2684] = {.lex_state = 255, .external_lex_state = 30}, - [2685] = {.lex_state = 255, .external_lex_state = 30}, - [2686] = {.lex_state = 255, .external_lex_state = 30}, - [2687] = {.lex_state = 255, .external_lex_state = 30}, - [2688] = {.lex_state = 255, .external_lex_state = 30}, - [2689] = {.lex_state = 255, .external_lex_state = 30}, - [2690] = {.lex_state = 255, .external_lex_state = 30}, - [2691] = {.lex_state = 255, .external_lex_state = 30}, - [2692] = {.lex_state = 255, .external_lex_state = 30}, - [2693] = {.lex_state = 255, .external_lex_state = 30}, - [2694] = {.lex_state = 255, .external_lex_state = 30}, - [2695] = {.lex_state = 255, .external_lex_state = 30}, - [2696] = {.lex_state = 255, .external_lex_state = 30}, - [2697] = {.lex_state = 255, .external_lex_state = 30}, - [2698] = {.lex_state = 255, .external_lex_state = 30}, - [2699] = {.lex_state = 255, .external_lex_state = 30}, - [2700] = {.lex_state = 255, .external_lex_state = 30}, - [2701] = {.lex_state = 255, .external_lex_state = 30}, - [2702] = {.lex_state = 255, .external_lex_state = 30}, - [2703] = {.lex_state = 255, .external_lex_state = 30}, - [2704] = {.lex_state = 255, .external_lex_state = 30}, - [2705] = {.lex_state = 255, .external_lex_state = 30}, - [2706] = {.lex_state = 255, .external_lex_state = 30}, - [2707] = {.lex_state = 255, .external_lex_state = 30}, - [2708] = {.lex_state = 255, .external_lex_state = 30}, - [2709] = {.lex_state = 255, .external_lex_state = 30}, - [2710] = {.lex_state = 75, .external_lex_state = 36}, - [2711] = {.lex_state = 75, .external_lex_state = 36}, - [2712] = {.lex_state = 425, .external_lex_state = 48}, - [2713] = {.lex_state = 75, .external_lex_state = 48}, - [2714] = {.lex_state = 75, .external_lex_state = 34}, - [2715] = {.lex_state = 75, .external_lex_state = 36}, - [2716] = {.lex_state = 75, .external_lex_state = 36}, - [2717] = {.lex_state = 75, .external_lex_state = 48}, - [2718] = {.lex_state = 75, .external_lex_state = 48}, - [2719] = {.lex_state = 75, .external_lex_state = 36}, - [2720] = {.lex_state = 75, .external_lex_state = 36}, - [2721] = {.lex_state = 75, .external_lex_state = 49}, - [2722] = {.lex_state = 75, .external_lex_state = 34}, - [2723] = {.lex_state = 75, .external_lex_state = 48}, - [2724] = {.lex_state = 75, .external_lex_state = 48}, - [2725] = {.lex_state = 75, .external_lex_state = 48}, - [2726] = {.lex_state = 425, .external_lex_state = 49}, - [2727] = {.lex_state = 75, .external_lex_state = 36}, - [2728] = {.lex_state = 425, .external_lex_state = 48}, - [2729] = {.lex_state = 425, .external_lex_state = 48}, - [2730] = {.lex_state = 75, .external_lex_state = 48}, - [2731] = {.lex_state = 75, .external_lex_state = 48}, - [2732] = {.lex_state = 75, .external_lex_state = 48}, - [2733] = {.lex_state = 425, .external_lex_state = 48}, - [2734] = {.lex_state = 75, .external_lex_state = 48}, - [2735] = {.lex_state = 75, .external_lex_state = 48}, - [2736] = {.lex_state = 75, .external_lex_state = 48}, - [2737] = {.lex_state = 75, .external_lex_state = 48}, - [2738] = {.lex_state = 426, .external_lex_state = 34}, - [2739] = {.lex_state = 425, .external_lex_state = 48}, - [2740] = {.lex_state = 425, .external_lex_state = 48}, - [2741] = {.lex_state = 75, .external_lex_state = 48}, - [2742] = {.lex_state = 425, .external_lex_state = 48}, - [2743] = {.lex_state = 425, .external_lex_state = 48}, - [2744] = {.lex_state = 75, .external_lex_state = 49}, - [2745] = {.lex_state = 75, .external_lex_state = 48}, - [2746] = {.lex_state = 425, .external_lex_state = 48}, - [2747] = {.lex_state = 75, .external_lex_state = 48}, - [2748] = {.lex_state = 75, .external_lex_state = 36}, - [2749] = {.lex_state = 75, .external_lex_state = 34}, - [2750] = {.lex_state = 75, .external_lex_state = 36}, - [2751] = {.lex_state = 75, .external_lex_state = 48}, - [2752] = {.lex_state = 75, .external_lex_state = 34}, - [2753] = {.lex_state = 425, .external_lex_state = 48}, - [2754] = {.lex_state = 75, .external_lex_state = 48}, - [2755] = {.lex_state = 425, .external_lex_state = 48}, - [2756] = {.lex_state = 75, .external_lex_state = 34}, - [2757] = {.lex_state = 75, .external_lex_state = 48}, - [2758] = {.lex_state = 75, .external_lex_state = 34}, - [2759] = {.lex_state = 75, .external_lex_state = 36}, - [2760] = {.lex_state = 75, .external_lex_state = 48}, - [2761] = {.lex_state = 75, .external_lex_state = 48}, - [2762] = {.lex_state = 75, .external_lex_state = 49}, - [2763] = {.lex_state = 425, .external_lex_state = 48}, - [2764] = {.lex_state = 425, .external_lex_state = 48}, - [2765] = {.lex_state = 75, .external_lex_state = 49}, - [2766] = {.lex_state = 75, .external_lex_state = 49}, - [2767] = {.lex_state = 425, .external_lex_state = 48}, - [2768] = {.lex_state = 75, .external_lex_state = 48}, - [2769] = {.lex_state = 75, .external_lex_state = 48}, - [2770] = {.lex_state = 425, .external_lex_state = 48}, - [2771] = {.lex_state = 75, .external_lex_state = 48}, - [2772] = {.lex_state = 425, .external_lex_state = 48}, - [2773] = {.lex_state = 75, .external_lex_state = 49}, - [2774] = {.lex_state = 425, .external_lex_state = 48}, - [2775] = {.lex_state = 425, .external_lex_state = 48}, - [2776] = {.lex_state = 425, .external_lex_state = 48}, - [2777] = {.lex_state = 75, .external_lex_state = 49}, - [2778] = {.lex_state = 75, .external_lex_state = 48}, - [2779] = {.lex_state = 75, .external_lex_state = 49}, - [2780] = {.lex_state = 75, .external_lex_state = 36}, - [2781] = {.lex_state = 425, .external_lex_state = 48}, - [2782] = {.lex_state = 425, .external_lex_state = 48}, - [2783] = {.lex_state = 75, .external_lex_state = 36}, - [2784] = {.lex_state = 75, .external_lex_state = 48}, - [2785] = {.lex_state = 425, .external_lex_state = 48}, - [2786] = {.lex_state = 75, .external_lex_state = 48}, - [2787] = {.lex_state = 75, .external_lex_state = 48}, - [2788] = {.lex_state = 426, .external_lex_state = 34}, - [2789] = {.lex_state = 425, .external_lex_state = 48}, - [2790] = {.lex_state = 75, .external_lex_state = 48}, - [2791] = {.lex_state = 75, .external_lex_state = 49}, - [2792] = {.lex_state = 75, .external_lex_state = 48}, - [2793] = {.lex_state = 425, .external_lex_state = 48}, - [2794] = {.lex_state = 425, .external_lex_state = 48}, - [2795] = {.lex_state = 425, .external_lex_state = 49}, - [2796] = {.lex_state = 425, .external_lex_state = 36}, - [2797] = {.lex_state = 425, .external_lex_state = 36}, - [2798] = {.lex_state = 425, .external_lex_state = 36}, - [2799] = {.lex_state = 75, .external_lex_state = 36}, - [2800] = {.lex_state = 425, .external_lex_state = 36}, - [2801] = {.lex_state = 251}, - [2802] = {.lex_state = 251}, - [2803] = {.lex_state = 251}, - [2804] = {.lex_state = 425, .external_lex_state = 48}, - [2805] = {.lex_state = 425, .external_lex_state = 48}, - [2806] = {.lex_state = 425, .external_lex_state = 49}, - [2807] = {.lex_state = 426, .external_lex_state = 36}, - [2808] = {.lex_state = 75, .external_lex_state = 49}, - [2809] = {.lex_state = 425, .external_lex_state = 36}, - [2810] = {.lex_state = 425, .external_lex_state = 49}, - [2811] = {.lex_state = 184, .external_lex_state = 50}, - [2812] = {.lex_state = 184, .external_lex_state = 50}, - [2813] = {.lex_state = 426, .external_lex_state = 36}, - [2814] = {.lex_state = 425, .external_lex_state = 36}, - [2815] = {.lex_state = 425, .external_lex_state = 49}, - [2816] = {.lex_state = 425, .external_lex_state = 48}, - [2817] = {.lex_state = 425, .external_lex_state = 49}, - [2818] = {.lex_state = 426, .external_lex_state = 34}, - [2819] = {.lex_state = 425, .external_lex_state = 34}, - [2820] = {.lex_state = 425, .external_lex_state = 48}, - [2821] = {.lex_state = 425, .external_lex_state = 36}, - [2822] = {.lex_state = 75, .external_lex_state = 49}, - [2823] = {.lex_state = 425, .external_lex_state = 49}, - [2824] = {.lex_state = 425, .external_lex_state = 49}, - [2825] = {.lex_state = 425, .external_lex_state = 36}, - [2826] = {.lex_state = 425, .external_lex_state = 49}, - [2827] = {.lex_state = 75, .external_lex_state = 49}, - [2828] = {.lex_state = 75, .external_lex_state = 49}, - [2829] = {.lex_state = 251}, - [2830] = {.lex_state = 184, .external_lex_state = 50}, - [2831] = {.lex_state = 425, .external_lex_state = 48}, - [2832] = {.lex_state = 425, .external_lex_state = 48}, - [2833] = {.lex_state = 425, .external_lex_state = 36}, - [2834] = {.lex_state = 251}, - [2835] = {.lex_state = 75, .external_lex_state = 49}, - [2836] = {.lex_state = 75, .external_lex_state = 49}, - [2837] = {.lex_state = 425, .external_lex_state = 49}, - [2838] = {.lex_state = 425, .external_lex_state = 49}, - [2839] = {.lex_state = 425, .external_lex_state = 49}, - [2840] = {.lex_state = 75, .external_lex_state = 49}, - [2841] = {.lex_state = 75, .external_lex_state = 36}, - [2842] = {.lex_state = 75, .external_lex_state = 49}, - [2843] = {.lex_state = 425, .external_lex_state = 49}, - [2844] = {.lex_state = 75, .external_lex_state = 49}, - [2845] = {.lex_state = 425, .external_lex_state = 36}, - [2846] = {.lex_state = 425, .external_lex_state = 49}, - [2847] = {.lex_state = 426, .external_lex_state = 36}, - [2848] = {.lex_state = 425, .external_lex_state = 49}, - [2849] = {.lex_state = 425, .external_lex_state = 49}, - [2850] = {.lex_state = 75, .external_lex_state = 49}, - [2851] = {.lex_state = 425, .external_lex_state = 36}, - [2852] = {.lex_state = 425, .external_lex_state = 49}, - [2853] = {.lex_state = 425, .external_lex_state = 49}, - [2854] = {.lex_state = 425, .external_lex_state = 36}, - [2855] = {.lex_state = 426, .external_lex_state = 36}, - [2856] = {.lex_state = 425, .external_lex_state = 48}, - [2857] = {.lex_state = 425, .external_lex_state = 48}, - [2858] = {.lex_state = 75, .external_lex_state = 49}, - [2859] = {.lex_state = 251}, - [2860] = {.lex_state = 184, .external_lex_state = 50}, - [2861] = {.lex_state = 425, .external_lex_state = 34}, - [2862] = {.lex_state = 75, .external_lex_state = 49}, - [2863] = {.lex_state = 425, .external_lex_state = 49}, - [2864] = {.lex_state = 75, .external_lex_state = 36}, - [2865] = {.lex_state = 251}, - [2866] = {.lex_state = 184, .external_lex_state = 50}, - [2867] = {.lex_state = 425, .external_lex_state = 49}, - [2868] = {.lex_state = 425, .external_lex_state = 34}, - [2869] = {.lex_state = 425, .external_lex_state = 48}, - [2870] = {.lex_state = 425, .external_lex_state = 48}, - [2871] = {.lex_state = 426, .external_lex_state = 36}, - [2872] = {.lex_state = 251}, - [2873] = {.lex_state = 426, .external_lex_state = 36}, - [2874] = {.lex_state = 426, .external_lex_state = 36}, - [2875] = {.lex_state = 75, .external_lex_state = 49}, - [2876] = {.lex_state = 75, .external_lex_state = 36}, - [2877] = {.lex_state = 75, .external_lex_state = 49}, - [2878] = {.lex_state = 425, .external_lex_state = 49}, - [2879] = {.lex_state = 425, .external_lex_state = 49}, - [2880] = {.lex_state = 75, .external_lex_state = 49}, - [2881] = {.lex_state = 75, .external_lex_state = 34}, - [2882] = {.lex_state = 251}, - [2883] = {.lex_state = 425, .external_lex_state = 48}, - [2884] = {.lex_state = 75, .external_lex_state = 49}, - [2885] = {.lex_state = 426, .external_lex_state = 34}, - [2886] = {.lex_state = 75, .external_lex_state = 36}, - [2887] = {.lex_state = 75, .external_lex_state = 49}, - [2888] = {.lex_state = 425, .external_lex_state = 49}, - [2889] = {.lex_state = 75, .external_lex_state = 49}, - [2890] = {.lex_state = 75, .external_lex_state = 49}, - [2891] = {.lex_state = 184, .external_lex_state = 50}, - [2892] = {.lex_state = 425, .external_lex_state = 34}, - [2893] = {.lex_state = 75, .external_lex_state = 49}, - [2894] = {.lex_state = 75, .external_lex_state = 49}, - [2895] = {.lex_state = 426, .external_lex_state = 36}, - [2896] = {.lex_state = 75, .external_lex_state = 49}, - [2897] = {.lex_state = 425, .external_lex_state = 48}, - [2898] = {.lex_state = 75, .external_lex_state = 49}, - [2899] = {.lex_state = 75, .external_lex_state = 49}, - [2900] = {.lex_state = 426, .external_lex_state = 34}, - [2901] = {.lex_state = 425, .external_lex_state = 49}, - [2902] = {.lex_state = 426, .external_lex_state = 36}, - [2903] = {.lex_state = 75, .external_lex_state = 49}, - [2904] = {.lex_state = 75, .external_lex_state = 49}, - [2905] = {.lex_state = 425, .external_lex_state = 36}, - [2906] = {.lex_state = 425, .external_lex_state = 49}, - [2907] = {.lex_state = 426, .external_lex_state = 36}, - [2908] = {.lex_state = 184, .external_lex_state = 50}, - [2909] = {.lex_state = 425, .external_lex_state = 36}, - [2910] = {.lex_state = 426, .external_lex_state = 34}, - [2911] = {.lex_state = 184, .external_lex_state = 50}, - [2912] = {.lex_state = 425, .external_lex_state = 36}, - [2913] = {.lex_state = 425, .external_lex_state = 48}, - [2914] = {.lex_state = 425, .external_lex_state = 36}, - [2915] = {.lex_state = 425, .external_lex_state = 49}, - [2916] = {.lex_state = 425, .external_lex_state = 48}, - [2917] = {.lex_state = 425, .external_lex_state = 49}, - [2918] = {.lex_state = 425, .external_lex_state = 49}, - [2919] = {.lex_state = 425, .external_lex_state = 49}, - [2920] = {.lex_state = 425, .external_lex_state = 49}, - [2921] = {.lex_state = 425, .external_lex_state = 49}, - [2922] = {.lex_state = 184, .external_lex_state = 50}, - [2923] = {.lex_state = 184, .external_lex_state = 50}, - [2924] = {.lex_state = 425, .external_lex_state = 49}, - [2925] = {.lex_state = 425, .external_lex_state = 34}, - [2926] = {.lex_state = 184, .external_lex_state = 50}, - [2927] = {.lex_state = 425, .external_lex_state = 49}, - [2928] = {.lex_state = 184, .external_lex_state = 50}, - [2929] = {.lex_state = 184, .external_lex_state = 50}, - [2930] = {.lex_state = 425, .external_lex_state = 49}, - [2931] = {.lex_state = 75, .external_lex_state = 36}, - [2932] = {.lex_state = 425, .external_lex_state = 49}, - [2933] = {.lex_state = 184, .external_lex_state = 50}, - [2934] = {.lex_state = 425, .external_lex_state = 36}, - [2935] = {.lex_state = 425, .external_lex_state = 49}, - [2936] = {.lex_state = 425, .external_lex_state = 36}, - [2937] = {.lex_state = 251}, - [2938] = {.lex_state = 184, .external_lex_state = 50}, - [2939] = {.lex_state = 184, .external_lex_state = 50}, - [2940] = {.lex_state = 425, .external_lex_state = 49}, - [2941] = {.lex_state = 425, .external_lex_state = 36}, - [2942] = {.lex_state = 75, .external_lex_state = 36}, - [2943] = {.lex_state = 251}, - [2944] = {.lex_state = 251}, - [2945] = {.lex_state = 425, .external_lex_state = 36}, - [2946] = {.lex_state = 184, .external_lex_state = 50}, - [2947] = {.lex_state = 75, .external_lex_state = 36}, - [2948] = {.lex_state = 251}, - [2949] = {.lex_state = 75, .external_lex_state = 34}, - [2950] = {.lex_state = 75, .external_lex_state = 36}, - [2951] = {.lex_state = 75, .external_lex_state = 34}, - [2952] = {.lex_state = 184, .external_lex_state = 50}, - [2953] = {.lex_state = 425, .external_lex_state = 36}, - [2954] = {.lex_state = 425, .external_lex_state = 36}, - [2955] = {.lex_state = 425, .external_lex_state = 48}, - [2956] = {.lex_state = 425, .external_lex_state = 36}, - [2957] = {.lex_state = 251}, - [2958] = {.lex_state = 184, .external_lex_state = 50}, - [2959] = {.lex_state = 425, .external_lex_state = 36}, - [2960] = {.lex_state = 425, .external_lex_state = 49}, - [2961] = {.lex_state = 75, .external_lex_state = 34}, - [2962] = {.lex_state = 184, .external_lex_state = 50}, - [2963] = {.lex_state = 251}, - [2964] = {.lex_state = 184, .external_lex_state = 50}, - [2965] = {.lex_state = 425, .external_lex_state = 49}, - [2966] = {.lex_state = 425, .external_lex_state = 49}, - [2967] = {.lex_state = 251}, - [2968] = {.lex_state = 426, .external_lex_state = 34}, - [2969] = {.lex_state = 184, .external_lex_state = 50}, - [2970] = {.lex_state = 75, .external_lex_state = 36}, - [2971] = {.lex_state = 425, .external_lex_state = 49}, - [2972] = {.lex_state = 425, .external_lex_state = 49}, - [2973] = {.lex_state = 425, .external_lex_state = 48}, - [2974] = {.lex_state = 75, .external_lex_state = 36}, - [2975] = {.lex_state = 426, .external_lex_state = 34}, - [2976] = {.lex_state = 251}, - [2977] = {.lex_state = 425, .external_lex_state = 34}, - [2978] = {.lex_state = 251}, - [2979] = {.lex_state = 184, .external_lex_state = 50}, - [2980] = {.lex_state = 184, .external_lex_state = 50}, - [2981] = {.lex_state = 184, .external_lex_state = 50}, - [2982] = {.lex_state = 184, .external_lex_state = 50}, - [2983] = {.lex_state = 425, .external_lex_state = 49}, - [2984] = {.lex_state = 426, .external_lex_state = 36}, - [2985] = {.lex_state = 75, .external_lex_state = 36}, - [2986] = {.lex_state = 426, .external_lex_state = 36}, - [2987] = {.lex_state = 249, .external_lex_state = 35}, - [2988] = {.lex_state = 426, .external_lex_state = 36}, - [2989] = {.lex_state = 425, .external_lex_state = 49}, - [2990] = {.lex_state = 75, .external_lex_state = 36}, - [2991] = {.lex_state = 75, .external_lex_state = 36}, - [2992] = {.lex_state = 426, .external_lex_state = 36}, - [2993] = {.lex_state = 426, .external_lex_state = 36}, - [2994] = {.lex_state = 426, .external_lex_state = 36}, - [2995] = {.lex_state = 426, .external_lex_state = 36}, - [2996] = {.lex_state = 75, .external_lex_state = 36}, - [2997] = {.lex_state = 426, .external_lex_state = 36}, - [2998] = {.lex_state = 425, .external_lex_state = 36}, - [2999] = {.lex_state = 249, .external_lex_state = 35}, - [3000] = {.lex_state = 75, .external_lex_state = 36}, - [3001] = {.lex_state = 75, .external_lex_state = 36}, - [3002] = {.lex_state = 75, .external_lex_state = 36}, - [3003] = {.lex_state = 75, .external_lex_state = 36}, - [3004] = {.lex_state = 426, .external_lex_state = 36}, - [3005] = {.lex_state = 249, .external_lex_state = 35}, - [3006] = {.lex_state = 75, .external_lex_state = 36}, - [3007] = {.lex_state = 75, .external_lex_state = 36}, - [3008] = {.lex_state = 75, .external_lex_state = 36}, - [3009] = {.lex_state = 75, .external_lex_state = 36}, - [3010] = {.lex_state = 75, .external_lex_state = 36}, - [3011] = {.lex_state = 426, .external_lex_state = 36}, - [3012] = {.lex_state = 75, .external_lex_state = 36}, - [3013] = {.lex_state = 75, .external_lex_state = 36}, - [3014] = {.lex_state = 426, .external_lex_state = 36}, - [3015] = {.lex_state = 75, .external_lex_state = 36}, - [3016] = {.lex_state = 425, .external_lex_state = 49}, - [3017] = {.lex_state = 425, .external_lex_state = 49}, - [3018] = {.lex_state = 426, .external_lex_state = 36}, - [3019] = {.lex_state = 426, .external_lex_state = 36}, - [3020] = {.lex_state = 249, .external_lex_state = 35}, - [3021] = {.lex_state = 426, .external_lex_state = 36}, - [3022] = {.lex_state = 75, .external_lex_state = 36}, - [3023] = {.lex_state = 75, .external_lex_state = 36}, - [3024] = {.lex_state = 249, .external_lex_state = 35}, - [3025] = {.lex_state = 75, .external_lex_state = 36}, - [3026] = {.lex_state = 426, .external_lex_state = 36}, - [3027] = {.lex_state = 426, .external_lex_state = 36}, - [3028] = {.lex_state = 426, .external_lex_state = 36}, - [3029] = {.lex_state = 426, .external_lex_state = 36}, - [3030] = {.lex_state = 425, .external_lex_state = 49}, - [3031] = {.lex_state = 75, .external_lex_state = 36}, - [3032] = {.lex_state = 425, .external_lex_state = 36}, - [3033] = {.lex_state = 426, .external_lex_state = 36}, - [3034] = {.lex_state = 425, .external_lex_state = 36}, - [3035] = {.lex_state = 426, .external_lex_state = 36}, - [3036] = {.lex_state = 426, .external_lex_state = 36}, - [3037] = {.lex_state = 426, .external_lex_state = 36}, - [3038] = {.lex_state = 426, .external_lex_state = 36}, - [3039] = {.lex_state = 75, .external_lex_state = 36}, - [3040] = {.lex_state = 426, .external_lex_state = 36}, - [3041] = {.lex_state = 426, .external_lex_state = 36}, - [3042] = {.lex_state = 75, .external_lex_state = 36}, - [3043] = {.lex_state = 426, .external_lex_state = 36}, - [3044] = {.lex_state = 75, .external_lex_state = 36}, - [3045] = {.lex_state = 75, .external_lex_state = 36}, - [3046] = {.lex_state = 75, .external_lex_state = 36}, - [3047] = {.lex_state = 258}, - [3048] = {.lex_state = 426, .external_lex_state = 36}, - [3049] = {.lex_state = 425, .external_lex_state = 36}, - [3050] = {.lex_state = 426, .external_lex_state = 36}, - [3051] = {.lex_state = 426, .external_lex_state = 36}, - [3052] = {.lex_state = 426, .external_lex_state = 36}, - [3053] = {.lex_state = 426, .external_lex_state = 36}, - [3054] = {.lex_state = 75, .external_lex_state = 36}, - [3055] = {.lex_state = 75, .external_lex_state = 36}, - [3056] = {.lex_state = 426, .external_lex_state = 36}, - [3057] = {.lex_state = 75, .external_lex_state = 36}, - [3058] = {.lex_state = 426, .external_lex_state = 36}, - [3059] = {.lex_state = 425, .external_lex_state = 49}, - [3060] = {.lex_state = 425, .external_lex_state = 49}, - [3061] = {.lex_state = 75, .external_lex_state = 36}, - [3062] = {.lex_state = 75, .external_lex_state = 36}, - [3063] = {.lex_state = 426, .external_lex_state = 36}, - [3064] = {.lex_state = 75, .external_lex_state = 36}, - [3065] = {.lex_state = 75, .external_lex_state = 36}, - [3066] = {.lex_state = 75, .external_lex_state = 36}, - [3067] = {.lex_state = 75, .external_lex_state = 36}, - [3068] = {.lex_state = 75, .external_lex_state = 36}, - [3069] = {.lex_state = 75, .external_lex_state = 36}, - [3070] = {.lex_state = 426, .external_lex_state = 36}, - [3071] = {.lex_state = 426, .external_lex_state = 36}, - [3072] = {.lex_state = 75, .external_lex_state = 36}, - [3073] = {.lex_state = 426, .external_lex_state = 36}, - [3074] = {.lex_state = 75, .external_lex_state = 36}, - [3075] = {.lex_state = 75, .external_lex_state = 36}, - [3076] = {.lex_state = 75, .external_lex_state = 36}, - [3077] = {.lex_state = 183, .external_lex_state = 38}, - [3078] = {.lex_state = 426, .external_lex_state = 36}, - [3079] = {.lex_state = 426, .external_lex_state = 36}, - [3080] = {.lex_state = 426, .external_lex_state = 36}, - [3081] = {.lex_state = 75, .external_lex_state = 36}, - [3082] = {.lex_state = 426, .external_lex_state = 36}, - [3083] = {.lex_state = 426, .external_lex_state = 36}, - [3084] = {.lex_state = 75, .external_lex_state = 36}, - [3085] = {.lex_state = 426, .external_lex_state = 36}, - [3086] = {.lex_state = 75, .external_lex_state = 36}, - [3087] = {.lex_state = 75, .external_lex_state = 36}, - [3088] = {.lex_state = 426, .external_lex_state = 36}, - [3089] = {.lex_state = 75, .external_lex_state = 36}, - [3090] = {.lex_state = 183, .external_lex_state = 38}, - [3091] = {.lex_state = 426, .external_lex_state = 36}, - [3092] = {.lex_state = 75, .external_lex_state = 36}, - [3093] = {.lex_state = 249, .external_lex_state = 35}, - [3094] = {.lex_state = 180, .external_lex_state = 50}, - [3095] = {.lex_state = 249, .external_lex_state = 35}, - [3096] = {.lex_state = 242, .external_lex_state = 51}, - [3097] = {.lex_state = 242, .external_lex_state = 51}, - [3098] = {.lex_state = 242, .external_lex_state = 51}, - [3099] = {.lex_state = 425, .external_lex_state = 36}, - [3100] = {.lex_state = 249, .external_lex_state = 35}, - [3101] = {.lex_state = 425, .external_lex_state = 36}, - [3102] = {.lex_state = 242, .external_lex_state = 51}, - [3103] = {.lex_state = 242, .external_lex_state = 51}, - [3104] = {.lex_state = 249, .external_lex_state = 35}, - [3105] = {.lex_state = 183, .external_lex_state = 38}, - [3106] = {.lex_state = 251}, - [3107] = {.lex_state = 249, .external_lex_state = 35}, - [3108] = {.lex_state = 251}, - [3109] = {.lex_state = 249, .external_lex_state = 35}, - [3110] = {.lex_state = 426, .external_lex_state = 36}, - [3111] = {.lex_state = 426, .external_lex_state = 36}, - [3112] = {.lex_state = 249, .external_lex_state = 35}, - [3113] = {.lex_state = 249, .external_lex_state = 35}, - [3114] = {.lex_state = 242, .external_lex_state = 51}, - [3115] = {.lex_state = 249, .external_lex_state = 35}, - [3116] = {.lex_state = 180, .external_lex_state = 50}, - [3117] = {.lex_state = 249, .external_lex_state = 35}, - [3118] = {.lex_state = 249, .external_lex_state = 35}, - [3119] = {.lex_state = 426, .external_lex_state = 36}, - [3120] = {.lex_state = 180, .external_lex_state = 50}, - [3121] = {.lex_state = 249, .external_lex_state = 35}, - [3122] = {.lex_state = 249, .external_lex_state = 35}, - [3123] = {.lex_state = 425, .external_lex_state = 36}, - [3124] = {.lex_state = 425, .external_lex_state = 36}, - [3125] = {.lex_state = 249, .external_lex_state = 35}, - [3126] = {.lex_state = 251}, - [3127] = {.lex_state = 251}, - [3128] = {.lex_state = 251}, - [3129] = {.lex_state = 425, .external_lex_state = 36}, - [3130] = {.lex_state = 249, .external_lex_state = 35}, - [3131] = {.lex_state = 251}, - [3132] = {.lex_state = 249, .external_lex_state = 35}, - [3133] = {.lex_state = 249, .external_lex_state = 35}, - [3134] = {.lex_state = 425, .external_lex_state = 36}, - [3135] = {.lex_state = 425, .external_lex_state = 36}, - [3136] = {.lex_state = 75, .external_lex_state = 48}, - [3137] = {.lex_state = 249, .external_lex_state = 35}, - [3138] = {.lex_state = 180, .external_lex_state = 50}, - [3139] = {.lex_state = 180, .external_lex_state = 50}, - [3140] = {.lex_state = 249, .external_lex_state = 35}, - [3141] = {.lex_state = 249, .external_lex_state = 35}, - [3142] = {.lex_state = 249, .external_lex_state = 35}, - [3143] = {.lex_state = 425, .external_lex_state = 36}, - [3144] = {.lex_state = 232, .external_lex_state = 52}, - [3145] = {.lex_state = 232, .external_lex_state = 52}, - [3146] = {.lex_state = 232, .external_lex_state = 52}, - [3147] = {.lex_state = 232, .external_lex_state = 52}, - [3148] = {.lex_state = 251, .external_lex_state = 42}, - [3149] = {.lex_state = 250, .external_lex_state = 37}, - [3150] = {.lex_state = 242, .external_lex_state = 51}, - [3151] = {.lex_state = 75, .external_lex_state = 48}, - [3152] = {.lex_state = 232, .external_lex_state = 52}, - [3153] = {.lex_state = 242, .external_lex_state = 51}, - [3154] = {.lex_state = 232, .external_lex_state = 52}, - [3155] = {.lex_state = 250, .external_lex_state = 37}, - [3156] = {.lex_state = 232, .external_lex_state = 52}, - [3157] = {.lex_state = 425, .external_lex_state = 36}, - [3158] = {.lex_state = 250, .external_lex_state = 37}, - [3159] = {.lex_state = 232, .external_lex_state = 52}, - [3160] = {.lex_state = 250, .external_lex_state = 37}, - [3161] = {.lex_state = 242, .external_lex_state = 51}, - [3162] = {.lex_state = 425, .external_lex_state = 36}, - [3163] = {.lex_state = 232, .external_lex_state = 52}, - [3164] = {.lex_state = 232, .external_lex_state = 52}, - [3165] = {.lex_state = 232, .external_lex_state = 52}, - [3166] = {.lex_state = 232, .external_lex_state = 52}, - [3167] = {.lex_state = 242, .external_lex_state = 51}, - [3168] = {.lex_state = 250, .external_lex_state = 37}, - [3169] = {.lex_state = 75, .external_lex_state = 34}, - [3170] = {.lex_state = 242, .external_lex_state = 51}, - [3171] = {.lex_state = 242, .external_lex_state = 51}, - [3172] = {.lex_state = 232, .external_lex_state = 52}, - [3173] = {.lex_state = 232, .external_lex_state = 52}, - [3174] = {.lex_state = 242, .external_lex_state = 51}, - [3175] = {.lex_state = 250, .external_lex_state = 37}, - [3176] = {.lex_state = 232, .external_lex_state = 52}, - [3177] = {.lex_state = 250, .external_lex_state = 37}, - [3178] = {.lex_state = 242, .external_lex_state = 51}, - [3179] = {.lex_state = 425, .external_lex_state = 36}, - [3180] = {.lex_state = 242, .external_lex_state = 51}, - [3181] = {.lex_state = 232, .external_lex_state = 52}, - [3182] = {.lex_state = 232, .external_lex_state = 52}, - [3183] = {.lex_state = 242, .external_lex_state = 51}, - [3184] = {.lex_state = 232, .external_lex_state = 52}, - [3185] = {.lex_state = 232, .external_lex_state = 52}, - [3186] = {.lex_state = 75, .external_lex_state = 48}, - [3187] = {.lex_state = 232, .external_lex_state = 52}, - [3188] = {.lex_state = 250, .external_lex_state = 37}, - [3189] = {.lex_state = 250, .external_lex_state = 37}, - [3190] = {.lex_state = 250, .external_lex_state = 37}, - [3191] = {.lex_state = 232, .external_lex_state = 52}, - [3192] = {.lex_state = 232, .external_lex_state = 52}, - [3193] = {.lex_state = 232, .external_lex_state = 52}, - [3194] = {.lex_state = 232, .external_lex_state = 52}, - [3195] = {.lex_state = 250, .external_lex_state = 37}, - [3196] = {.lex_state = 232, .external_lex_state = 52}, - [3197] = {.lex_state = 232, .external_lex_state = 52}, - [3198] = {.lex_state = 232, .external_lex_state = 52}, - [3199] = {.lex_state = 250, .external_lex_state = 37}, - [3200] = {.lex_state = 232, .external_lex_state = 52}, - [3201] = {.lex_state = 232, .external_lex_state = 52}, - [3202] = {.lex_state = 250, .external_lex_state = 37}, - [3203] = {.lex_state = 251, .external_lex_state = 42}, - [3204] = {.lex_state = 250, .external_lex_state = 37}, - [3205] = {.lex_state = 232, .external_lex_state = 52}, - [3206] = {.lex_state = 242, .external_lex_state = 51}, - [3207] = {.lex_state = 232, .external_lex_state = 52}, - [3208] = {.lex_state = 232, .external_lex_state = 52}, - [3209] = {.lex_state = 242, .external_lex_state = 51}, - [3210] = {.lex_state = 251, .external_lex_state = 42}, - [3211] = {.lex_state = 250, .external_lex_state = 37}, - [3212] = {.lex_state = 242, .external_lex_state = 51}, - [3213] = {.lex_state = 232, .external_lex_state = 52}, - [3214] = {.lex_state = 248, .external_lex_state = 10}, - [3215] = {.lex_state = 251, .external_lex_state = 42}, - [3216] = {.lex_state = 232, .external_lex_state = 52}, - [3217] = {.lex_state = 248, .external_lex_state = 10}, - [3218] = {.lex_state = 250, .external_lex_state = 37}, - [3219] = {.lex_state = 232, .external_lex_state = 52}, - [3220] = {.lex_state = 232, .external_lex_state = 52}, - [3221] = {.lex_state = 75, .external_lex_state = 36}, - [3222] = {.lex_state = 242, .external_lex_state = 51}, - [3223] = {.lex_state = 232, .external_lex_state = 52}, - [3224] = {.lex_state = 75, .external_lex_state = 36}, - [3225] = {.lex_state = 75, .external_lex_state = 36}, - [3226] = {.lex_state = 75, .external_lex_state = 36}, - [3227] = {.lex_state = 242, .external_lex_state = 51}, - [3228] = {.lex_state = 232, .external_lex_state = 52}, - [3229] = {.lex_state = 242, .external_lex_state = 51}, - [3230] = {.lex_state = 242, .external_lex_state = 51}, - [3231] = {.lex_state = 242, .external_lex_state = 51}, - [3232] = {.lex_state = 232, .external_lex_state = 52}, - [3233] = {.lex_state = 75, .external_lex_state = 49}, - [3234] = {.lex_state = 75, .external_lex_state = 48}, - [3235] = {.lex_state = 242, .external_lex_state = 51}, - [3236] = {.lex_state = 75, .external_lex_state = 48}, - [3237] = {.lex_state = 232, .external_lex_state = 52}, - [3238] = {.lex_state = 250, .external_lex_state = 37}, - [3239] = {.lex_state = 232, .external_lex_state = 53}, - [3240] = {.lex_state = 232, .external_lex_state = 52}, - [3241] = {.lex_state = 250, .external_lex_state = 37}, - [3242] = {.lex_state = 232, .external_lex_state = 52}, - [3243] = {.lex_state = 232, .external_lex_state = 52}, - [3244] = {.lex_state = 232, .external_lex_state = 52}, - [3245] = {.lex_state = 242, .external_lex_state = 51}, - [3246] = {.lex_state = 232, .external_lex_state = 52}, - [3247] = {.lex_state = 232, .external_lex_state = 52}, - [3248] = {.lex_state = 232, .external_lex_state = 52}, - [3249] = {.lex_state = 232, .external_lex_state = 52}, - [3250] = {.lex_state = 250, .external_lex_state = 37}, - [3251] = {.lex_state = 250, .external_lex_state = 37}, - [3252] = {.lex_state = 232, .external_lex_state = 52}, - [3253] = {.lex_state = 250, .external_lex_state = 37}, - [3254] = {.lex_state = 250, .external_lex_state = 37}, - [3255] = {.lex_state = 232, .external_lex_state = 52}, - [3256] = {.lex_state = 250, .external_lex_state = 37}, - [3257] = {.lex_state = 232, .external_lex_state = 52}, - [3258] = {.lex_state = 232, .external_lex_state = 52}, - [3259] = {.lex_state = 232, .external_lex_state = 52}, - [3260] = {.lex_state = 260, .external_lex_state = 54}, - [3261] = {.lex_state = 232, .external_lex_state = 52}, - [3262] = {.lex_state = 75, .external_lex_state = 34}, - [3263] = {.lex_state = 232, .external_lex_state = 52}, - [3264] = {.lex_state = 232, .external_lex_state = 52}, - [3265] = {.lex_state = 251, .external_lex_state = 42}, - [3266] = {.lex_state = 232, .external_lex_state = 52}, - [3267] = {.lex_state = 250, .external_lex_state = 37}, - [3268] = {.lex_state = 232, .external_lex_state = 52}, - [3269] = {.lex_state = 75, .external_lex_state = 36}, - [3270] = {.lex_state = 232, .external_lex_state = 52}, - [3271] = {.lex_state = 232, .external_lex_state = 52}, - [3272] = {.lex_state = 232, .external_lex_state = 52}, - [3273] = {.lex_state = 232, .external_lex_state = 52}, - [3274] = {.lex_state = 232, .external_lex_state = 52}, - [3275] = {.lex_state = 235, .external_lex_state = 55}, - [3276] = {.lex_state = 240, .external_lex_state = 37}, - [3277] = {.lex_state = 235, .external_lex_state = 55}, - [3278] = {.lex_state = 235, .external_lex_state = 55}, - [3279] = {.lex_state = 235, .external_lex_state = 55}, - [3280] = {.lex_state = 235, .external_lex_state = 55}, - [3281] = {.lex_state = 235, .external_lex_state = 55}, - [3282] = {.lex_state = 240, .external_lex_state = 37}, - [3283] = {.lex_state = 235, .external_lex_state = 55}, - [3284] = {.lex_state = 235, .external_lex_state = 55}, - [3285] = {.lex_state = 240, .external_lex_state = 37}, - [3286] = {.lex_state = 260, .external_lex_state = 54}, - [3287] = {.lex_state = 240, .external_lex_state = 37}, - [3288] = {.lex_state = 235, .external_lex_state = 55}, - [3289] = {.lex_state = 251, .external_lex_state = 44}, - [3290] = {.lex_state = 240, .external_lex_state = 37}, - [3291] = {.lex_state = 235, .external_lex_state = 55}, - [3292] = {.lex_state = 240, .external_lex_state = 37}, - [3293] = {.lex_state = 235, .external_lex_state = 55}, - [3294] = {.lex_state = 75, .external_lex_state = 49}, - [3295] = {.lex_state = 235, .external_lex_state = 55}, - [3296] = {.lex_state = 235, .external_lex_state = 55}, - [3297] = {.lex_state = 235, .external_lex_state = 55}, - [3298] = {.lex_state = 235, .external_lex_state = 55}, - [3299] = {.lex_state = 240, .external_lex_state = 37}, - [3300] = {.lex_state = 240, .external_lex_state = 37}, - [3301] = {.lex_state = 235, .external_lex_state = 55}, - [3302] = {.lex_state = 251, .external_lex_state = 47}, - [3303] = {.lex_state = 240, .external_lex_state = 37}, - [3304] = {.lex_state = 240, .external_lex_state = 37}, - [3305] = {.lex_state = 235, .external_lex_state = 55}, - [3306] = {.lex_state = 240, .external_lex_state = 37}, - [3307] = {.lex_state = 235, .external_lex_state = 55}, - [3308] = {.lex_state = 235, .external_lex_state = 55}, - [3309] = {.lex_state = 235, .external_lex_state = 55}, - [3310] = {.lex_state = 240, .external_lex_state = 37}, - [3311] = {.lex_state = 235, .external_lex_state = 55}, - [3312] = {.lex_state = 235, .external_lex_state = 55}, - [3313] = {.lex_state = 240, .external_lex_state = 37}, - [3314] = {.lex_state = 240, .external_lex_state = 37}, - [3315] = {.lex_state = 235, .external_lex_state = 55}, - [3316] = {.lex_state = 240, .external_lex_state = 37}, - [3317] = {.lex_state = 235, .external_lex_state = 55}, - [3318] = {.lex_state = 240, .external_lex_state = 37}, - [3319] = {.lex_state = 240, .external_lex_state = 37}, - [3320] = {.lex_state = 240, .external_lex_state = 37}, - [3321] = {.lex_state = 235, .external_lex_state = 55}, - [3322] = {.lex_state = 235, .external_lex_state = 55}, - [3323] = {.lex_state = 235, .external_lex_state = 55}, - [3324] = {.lex_state = 235, .external_lex_state = 55}, - [3325] = {.lex_state = 235, .external_lex_state = 55}, - [3326] = {.lex_state = 235, .external_lex_state = 55}, - [3327] = {.lex_state = 235, .external_lex_state = 55}, - [3328] = {.lex_state = 240, .external_lex_state = 37}, - [3329] = {.lex_state = 235, .external_lex_state = 55}, - [3330] = {.lex_state = 75, .external_lex_state = 49}, - [3331] = {.lex_state = 235, .external_lex_state = 55}, - [3332] = {.lex_state = 260, .external_lex_state = 54}, - [3333] = {.lex_state = 235, .external_lex_state = 55}, - [3334] = {.lex_state = 260, .external_lex_state = 54}, - [3335] = {.lex_state = 235, .external_lex_state = 55}, - [3336] = {.lex_state = 240, .external_lex_state = 37}, - [3337] = {.lex_state = 240, .external_lex_state = 37}, - [3338] = {.lex_state = 235, .external_lex_state = 55}, - [3339] = {.lex_state = 235, .external_lex_state = 55}, - [3340] = {.lex_state = 235, .external_lex_state = 55}, - [3341] = {.lex_state = 235, .external_lex_state = 55}, - [3342] = {.lex_state = 235, .external_lex_state = 55}, - [3343] = {.lex_state = 235, .external_lex_state = 55}, - [3344] = {.lex_state = 240, .external_lex_state = 37}, - [3345] = {.lex_state = 251, .external_lex_state = 47}, - [3346] = {.lex_state = 240, .external_lex_state = 37}, - [3347] = {.lex_state = 235, .external_lex_state = 55}, - [3348] = {.lex_state = 235, .external_lex_state = 55}, - [3349] = {.lex_state = 235, .external_lex_state = 55}, - [3350] = {.lex_state = 235, .external_lex_state = 55}, - [3351] = {.lex_state = 235, .external_lex_state = 55}, - [3352] = {.lex_state = 235, .external_lex_state = 55}, - [3353] = {.lex_state = 235, .external_lex_state = 55}, - [3354] = {.lex_state = 235, .external_lex_state = 55}, - [3355] = {.lex_state = 240, .external_lex_state = 30}, - [3356] = {.lex_state = 235, .external_lex_state = 55}, - [3357] = {.lex_state = 235, .external_lex_state = 55}, - [3358] = {.lex_state = 235, .external_lex_state = 55}, - [3359] = {.lex_state = 235, .external_lex_state = 55}, - [3360] = {.lex_state = 251, .external_lex_state = 47}, - [3361] = {.lex_state = 235, .external_lex_state = 55}, - [3362] = {.lex_state = 240, .external_lex_state = 37}, - [3363] = {.lex_state = 240, .external_lex_state = 37}, - [3364] = {.lex_state = 232, .external_lex_state = 56}, - [3365] = {.lex_state = 240, .external_lex_state = 37}, - [3366] = {.lex_state = 235, .external_lex_state = 55}, - [3367] = {.lex_state = 235, .external_lex_state = 55}, - [3368] = {.lex_state = 251, .external_lex_state = 47}, - [3369] = {.lex_state = 235, .external_lex_state = 55}, - [3370] = {.lex_state = 251, .external_lex_state = 47}, - [3371] = {.lex_state = 75, .external_lex_state = 49}, - [3372] = {.lex_state = 235, .external_lex_state = 55}, - [3373] = {.lex_state = 240, .external_lex_state = 37}, - [3374] = {.lex_state = 240, .external_lex_state = 37}, - [3375] = {.lex_state = 235, .external_lex_state = 55}, - [3376] = {.lex_state = 235, .external_lex_state = 55}, - [3377] = {.lex_state = 235, .external_lex_state = 55}, - [3378] = {.lex_state = 235, .external_lex_state = 55}, - [3379] = {.lex_state = 240, .external_lex_state = 37}, - [3380] = {.lex_state = 235, .external_lex_state = 55}, - [3381] = {.lex_state = 235, .external_lex_state = 55}, - [3382] = {.lex_state = 260, .external_lex_state = 54}, - [3383] = {.lex_state = 260, .external_lex_state = 54}, - [3384] = {.lex_state = 235, .external_lex_state = 55}, - [3385] = {.lex_state = 240, .external_lex_state = 37}, - [3386] = {.lex_state = 75, .external_lex_state = 49}, - [3387] = {.lex_state = 240, .external_lex_state = 37}, - [3388] = {.lex_state = 240, .external_lex_state = 37}, - [3389] = {.lex_state = 235, .external_lex_state = 55}, - [3390] = {.lex_state = 235, .external_lex_state = 55}, - [3391] = {.lex_state = 240, .external_lex_state = 37}, - [3392] = {.lex_state = 235, .external_lex_state = 55}, - [3393] = {.lex_state = 235, .external_lex_state = 55}, - [3394] = {.lex_state = 235, .external_lex_state = 55}, - [3395] = {.lex_state = 235, .external_lex_state = 55}, - [3396] = {.lex_state = 240, .external_lex_state = 37}, - [3397] = {.lex_state = 240, .external_lex_state = 37}, - [3398] = {.lex_state = 240, .external_lex_state = 37}, - [3399] = {.lex_state = 240, .external_lex_state = 37}, - [3400] = {.lex_state = 240, .external_lex_state = 37}, - [3401] = {.lex_state = 235, .external_lex_state = 55}, - [3402] = {.lex_state = 235, .external_lex_state = 55}, - [3403] = {.lex_state = 235, .external_lex_state = 55}, - [3404] = {.lex_state = 240, .external_lex_state = 37}, - [3405] = {.lex_state = 235, .external_lex_state = 55}, - [3406] = {.lex_state = 251, .external_lex_state = 44}, - [3407] = {.lex_state = 240, .external_lex_state = 37}, - [3408] = {.lex_state = 240, .external_lex_state = 37}, - [3409] = {.lex_state = 235, .external_lex_state = 55}, - [3410] = {.lex_state = 248, .external_lex_state = 10}, - [3411] = {.lex_state = 235, .external_lex_state = 55}, - [3412] = {.lex_state = 232, .external_lex_state = 53}, - [3413] = {.lex_state = 235, .external_lex_state = 55}, - [3414] = {.lex_state = 235, .external_lex_state = 55}, - [3415] = {.lex_state = 240, .external_lex_state = 37}, - [3416] = {.lex_state = 260, .external_lex_state = 54}, - [3417] = {.lex_state = 240, .external_lex_state = 37}, - [3418] = {.lex_state = 260, .external_lex_state = 54}, - [3419] = {.lex_state = 235, .external_lex_state = 55}, - [3420] = {.lex_state = 248, .external_lex_state = 10}, - [3421] = {.lex_state = 235, .external_lex_state = 55}, - [3422] = {.lex_state = 235, .external_lex_state = 55}, - [3423] = {.lex_state = 232, .external_lex_state = 53}, - [3424] = {.lex_state = 235, .external_lex_state = 55}, - [3425] = {.lex_state = 235, .external_lex_state = 55}, - [3426] = {.lex_state = 240, .external_lex_state = 37}, - [3427] = {.lex_state = 235, .external_lex_state = 55}, - [3428] = {.lex_state = 235, .external_lex_state = 55}, - [3429] = {.lex_state = 240, .external_lex_state = 37}, - [3430] = {.lex_state = 232, .external_lex_state = 53}, - [3431] = {.lex_state = 235, .external_lex_state = 55}, - [3432] = {.lex_state = 240, .external_lex_state = 30}, - [3433] = {.lex_state = 75, .external_lex_state = 49}, - [3434] = {.lex_state = 235, .external_lex_state = 55}, - [3435] = {.lex_state = 235, .external_lex_state = 55}, - [3436] = {.lex_state = 75, .external_lex_state = 49}, - [3437] = {.lex_state = 240, .external_lex_state = 37}, - [3438] = {.lex_state = 235, .external_lex_state = 55}, - [3439] = {.lex_state = 235, .external_lex_state = 55}, - [3440] = {.lex_state = 235, .external_lex_state = 55}, - [3441] = {.lex_state = 240, .external_lex_state = 37}, - [3442] = {.lex_state = 240, .external_lex_state = 37}, - [3443] = {.lex_state = 232, .external_lex_state = 53}, - [3444] = {.lex_state = 235, .external_lex_state = 55}, - [3445] = {.lex_state = 235, .external_lex_state = 55}, - [3446] = {.lex_state = 235, .external_lex_state = 55}, - [3447] = {.lex_state = 240, .external_lex_state = 37}, - [3448] = {.lex_state = 240, .external_lex_state = 37}, - [3449] = {.lex_state = 240, .external_lex_state = 37}, - [3450] = {.lex_state = 235, .external_lex_state = 55}, - [3451] = {.lex_state = 251, .external_lex_state = 47}, - [3452] = {.lex_state = 235, .external_lex_state = 55}, - [3453] = {.lex_state = 235, .external_lex_state = 55}, - [3454] = {.lex_state = 235, .external_lex_state = 55}, - [3455] = {.lex_state = 240, .external_lex_state = 37}, - [3456] = {.lex_state = 235, .external_lex_state = 55}, - [3457] = {.lex_state = 240, .external_lex_state = 37}, - [3458] = {.lex_state = 240, .external_lex_state = 37}, - [3459] = {.lex_state = 235, .external_lex_state = 55}, - [3460] = {.lex_state = 240, .external_lex_state = 37}, - [3461] = {.lex_state = 240, .external_lex_state = 37}, - [3462] = {.lex_state = 235, .external_lex_state = 55}, - [3463] = {.lex_state = 240, .external_lex_state = 37}, - [3464] = {.lex_state = 240, .external_lex_state = 37}, - [3465] = {.lex_state = 232, .external_lex_state = 53}, - [3466] = {.lex_state = 235, .external_lex_state = 55}, - [3467] = {.lex_state = 235, .external_lex_state = 55}, - [3468] = {.lex_state = 240, .external_lex_state = 37}, - [3469] = {.lex_state = 235, .external_lex_state = 55}, - [3470] = {.lex_state = 235, .external_lex_state = 55}, - [3471] = {.lex_state = 248, .external_lex_state = 10}, - [3472] = {.lex_state = 235, .external_lex_state = 55}, - [3473] = {.lex_state = 240, .external_lex_state = 37}, - [3474] = {.lex_state = 235, .external_lex_state = 55}, - [3475] = {.lex_state = 240, .external_lex_state = 37}, - [3476] = {.lex_state = 235, .external_lex_state = 55}, - [3477] = {.lex_state = 235, .external_lex_state = 55}, - [3478] = {.lex_state = 240, .external_lex_state = 37}, - [3479] = {.lex_state = 235, .external_lex_state = 55}, - [3480] = {.lex_state = 240, .external_lex_state = 37}, - [3481] = {.lex_state = 235, .external_lex_state = 55}, - [3482] = {.lex_state = 240, .external_lex_state = 37}, - [3483] = {.lex_state = 232, .external_lex_state = 53}, - [3484] = {.lex_state = 232, .external_lex_state = 53}, - [3485] = {.lex_state = 251, .external_lex_state = 42}, - [3486] = {.lex_state = 260, .external_lex_state = 54}, - [3487] = {.lex_state = 75, .external_lex_state = 36}, - [3488] = {.lex_state = 75, .external_lex_state = 36}, - [3489] = {.lex_state = 260, .external_lex_state = 54}, - [3490] = {.lex_state = 232, .external_lex_state = 56}, - [3491] = {.lex_state = 260, .external_lex_state = 54}, - [3492] = {.lex_state = 232, .external_lex_state = 56}, - [3493] = {.lex_state = 260, .external_lex_state = 54}, - [3494] = {.lex_state = 232, .external_lex_state = 56}, - [3495] = {.lex_state = 232, .external_lex_state = 56}, - [3496] = {.lex_state = 260, .external_lex_state = 54}, - [3497] = {.lex_state = 232, .external_lex_state = 44}, - [3498] = {.lex_state = 232, .external_lex_state = 53}, - [3499] = {.lex_state = 232, .external_lex_state = 56}, - [3500] = {.lex_state = 260, .external_lex_state = 54}, - [3501] = {.lex_state = 232, .external_lex_state = 56}, - [3502] = {.lex_state = 251, .external_lex_state = 42}, - [3503] = {.lex_state = 240, .external_lex_state = 30}, - [3504] = {.lex_state = 260, .external_lex_state = 54}, - [3505] = {.lex_state = 232, .external_lex_state = 53}, - [3506] = {.lex_state = 260, .external_lex_state = 54}, - [3507] = {.lex_state = 251, .external_lex_state = 42}, - [3508] = {.lex_state = 260, .external_lex_state = 54}, - [3509] = {.lex_state = 232, .external_lex_state = 53}, - [3510] = {.lex_state = 232, .external_lex_state = 56}, - [3511] = {.lex_state = 232, .external_lex_state = 44}, - [3512] = {.lex_state = 260, .external_lex_state = 54}, - [3513] = {.lex_state = 232, .external_lex_state = 53}, - [3514] = {.lex_state = 232, .external_lex_state = 53}, - [3515] = {.lex_state = 232, .external_lex_state = 53}, - [3516] = {.lex_state = 251, .external_lex_state = 42}, - [3517] = {.lex_state = 260, .external_lex_state = 54}, - [3518] = {.lex_state = 260, .external_lex_state = 54}, - [3519] = {.lex_state = 260, .external_lex_state = 54}, - [3520] = {.lex_state = 232, .external_lex_state = 53}, - [3521] = {.lex_state = 232, .external_lex_state = 53}, - [3522] = {.lex_state = 260, .external_lex_state = 54}, - [3523] = {.lex_state = 260, .external_lex_state = 54}, - [3524] = {.lex_state = 232, .external_lex_state = 53}, - [3525] = {.lex_state = 232, .external_lex_state = 53}, - [3526] = {.lex_state = 232, .external_lex_state = 53}, - [3527] = {.lex_state = 232, .external_lex_state = 53}, - [3528] = {.lex_state = 232, .external_lex_state = 53}, - [3529] = {.lex_state = 260, .external_lex_state = 54}, - [3530] = {.lex_state = 232, .external_lex_state = 53}, - [3531] = {.lex_state = 232, .external_lex_state = 53}, - [3532] = {.lex_state = 232, .external_lex_state = 53}, - [3533] = {.lex_state = 251, .external_lex_state = 42}, - [3534] = {.lex_state = 260, .external_lex_state = 54}, - [3535] = {.lex_state = 260, .external_lex_state = 54}, - [3536] = {.lex_state = 232, .external_lex_state = 53}, - [3537] = {.lex_state = 260, .external_lex_state = 54}, - [3538] = {.lex_state = 260, .external_lex_state = 54}, - [3539] = {.lex_state = 232, .external_lex_state = 53}, - [3540] = {.lex_state = 232, .external_lex_state = 56}, - [3541] = {.lex_state = 232, .external_lex_state = 56}, - [3542] = {.lex_state = 232, .external_lex_state = 56}, - [3543] = {.lex_state = 232, .external_lex_state = 56}, - [3544] = {.lex_state = 232, .external_lex_state = 56}, - [3545] = {.lex_state = 232, .external_lex_state = 56}, - [3546] = {.lex_state = 232, .external_lex_state = 47}, - [3547] = {.lex_state = 163, .external_lex_state = 45}, - [3548] = {.lex_state = 232, .external_lex_state = 56}, - [3549] = {.lex_state = 232, .external_lex_state = 56}, - [3550] = {.lex_state = 232, .external_lex_state = 56}, - [3551] = {.lex_state = 232, .external_lex_state = 47}, - [3552] = {.lex_state = 232, .external_lex_state = 56}, - [3553] = {.lex_state = 251, .external_lex_state = 42}, - [3554] = {.lex_state = 163, .external_lex_state = 45}, - [3555] = {.lex_state = 232, .external_lex_state = 56}, - [3556] = {.lex_state = 232, .external_lex_state = 56}, - [3557] = {.lex_state = 232, .external_lex_state = 56}, - [3558] = {.lex_state = 251, .external_lex_state = 47}, - [3559] = {.lex_state = 232, .external_lex_state = 44}, - [3560] = {.lex_state = 232, .external_lex_state = 47}, - [3561] = {.lex_state = 75, .external_lex_state = 36}, - [3562] = {.lex_state = 232, .external_lex_state = 56}, - [3563] = {.lex_state = 232, .external_lex_state = 56}, - [3564] = {.lex_state = 232, .external_lex_state = 56}, - [3565] = {.lex_state = 232, .external_lex_state = 56}, - [3566] = {.lex_state = 75, .external_lex_state = 36}, - [3567] = {.lex_state = 75, .external_lex_state = 36}, - [3568] = {.lex_state = 251, .external_lex_state = 47}, - [3569] = {.lex_state = 232, .external_lex_state = 56}, - [3570] = {.lex_state = 232, .external_lex_state = 56}, - [3571] = {.lex_state = 232, .external_lex_state = 56}, - [3572] = {.lex_state = 251, .external_lex_state = 44}, - [3573] = {.lex_state = 235, .external_lex_state = 55}, - [3574] = {.lex_state = 251, .external_lex_state = 44}, - [3575] = {.lex_state = 251, .external_lex_state = 42}, - [3576] = {.lex_state = 251, .external_lex_state = 47}, - [3577] = {.lex_state = 251, .external_lex_state = 42}, - [3578] = {.lex_state = 251, .external_lex_state = 44}, - [3579] = {.lex_state = 251, .external_lex_state = 42}, - [3580] = {.lex_state = 232, .external_lex_state = 47}, - [3581] = {.lex_state = 251, .external_lex_state = 42}, - [3582] = {.lex_state = 251, .external_lex_state = 47}, - [3583] = {.lex_state = 251, .external_lex_state = 42}, - [3584] = {.lex_state = 251, .external_lex_state = 42}, - [3585] = {.lex_state = 251, .external_lex_state = 42}, - [3586] = {.lex_state = 251, .external_lex_state = 47}, - [3587] = {.lex_state = 251, .external_lex_state = 42}, - [3588] = {.lex_state = 251, .external_lex_state = 47}, - [3589] = {.lex_state = 251, .external_lex_state = 47}, - [3590] = {.lex_state = 251, .external_lex_state = 47}, - [3591] = {.lex_state = 251, .external_lex_state = 47}, - [3592] = {.lex_state = 251, .external_lex_state = 47}, - [3593] = {.lex_state = 251, .external_lex_state = 47}, - [3594] = {.lex_state = 251, .external_lex_state = 47}, - [3595] = {.lex_state = 251, .external_lex_state = 47}, - [3596] = {.lex_state = 251, .external_lex_state = 47}, - [3597] = {.lex_state = 251, .external_lex_state = 47}, - [3598] = {.lex_state = 251, .external_lex_state = 47}, - [3599] = {.lex_state = 251, .external_lex_state = 47}, - [3600] = {.lex_state = 251, .external_lex_state = 47}, - [3601] = {.lex_state = 251, .external_lex_state = 47}, - [3602] = {.lex_state = 251, .external_lex_state = 47}, - [3603] = {.lex_state = 251, .external_lex_state = 47}, - [3604] = {.lex_state = 251, .external_lex_state = 47}, - [3605] = {.lex_state = 251, .external_lex_state = 47}, - [3606] = {.lex_state = 251, .external_lex_state = 47}, - [3607] = {.lex_state = 251, .external_lex_state = 47}, - [3608] = {.lex_state = 251, .external_lex_state = 47}, - [3609] = {.lex_state = 251, .external_lex_state = 47}, - [3610] = {.lex_state = 251, .external_lex_state = 47}, - [3611] = {.lex_state = 251, .external_lex_state = 47}, - [3612] = {.lex_state = 251, .external_lex_state = 47}, - [3613] = {.lex_state = 251, .external_lex_state = 47}, - [3614] = {.lex_state = 251, .external_lex_state = 47}, - [3615] = {.lex_state = 251, .external_lex_state = 47}, - [3616] = {.lex_state = 251, .external_lex_state = 47}, - [3617] = {.lex_state = 251, .external_lex_state = 47}, - [3618] = {.lex_state = 251, .external_lex_state = 47}, - [3619] = {.lex_state = 251, .external_lex_state = 47}, - [3620] = {.lex_state = 251, .external_lex_state = 47}, - [3621] = {.lex_state = 251, .external_lex_state = 47}, - [3622] = {.lex_state = 251, .external_lex_state = 47}, - [3623] = {.lex_state = 251, .external_lex_state = 47}, - [3624] = {.lex_state = 251, .external_lex_state = 47}, - [3625] = {.lex_state = 251, .external_lex_state = 47}, - [3626] = {.lex_state = 251, .external_lex_state = 47}, - [3627] = {.lex_state = 251, .external_lex_state = 47}, - [3628] = {.lex_state = 251, .external_lex_state = 47}, - [3629] = {.lex_state = 251, .external_lex_state = 47}, - [3630] = {.lex_state = 251, .external_lex_state = 47}, - [3631] = {.lex_state = 228}, - [3632] = {.lex_state = 228}, - [3633] = {.lex_state = 229, .external_lex_state = 57}, - [3634] = {.lex_state = 229, .external_lex_state = 57}, - [3635] = {.lex_state = 257}, - [3636] = {.lex_state = 257}, - [3637] = {.lex_state = 257}, - [3638] = {.lex_state = 257}, - [3639] = {.lex_state = 257}, - [3640] = {.lex_state = 257}, - [3641] = {.lex_state = 257}, - [3642] = {.lex_state = 257}, - [3643] = {.lex_state = 257}, - [3644] = {.lex_state = 257}, - [3645] = {.lex_state = 257}, - [3646] = {.lex_state = 257}, - [3647] = {.lex_state = 257}, - [3648] = {.lex_state = 257}, - [3649] = {.lex_state = 257}, - [3650] = {.lex_state = 257}, - [3651] = {.lex_state = 257}, - [3652] = {.lex_state = 257}, - [3653] = {.lex_state = 257}, - [3654] = {.lex_state = 257}, - [3655] = {.lex_state = 257}, - [3656] = {.lex_state = 257}, - [3657] = {.lex_state = 257}, - [3658] = {.lex_state = 257}, - [3659] = {.lex_state = 257}, - [3660] = {.lex_state = 257}, - [3661] = {.lex_state = 257}, - [3662] = {.lex_state = 257}, - [3663] = {.lex_state = 257}, - [3664] = {.lex_state = 257}, - [3665] = {.lex_state = 257}, - [3666] = {.lex_state = 257}, - [3667] = {.lex_state = 257}, - [3668] = {.lex_state = 257}, - [3669] = {.lex_state = 257}, - [3670] = {.lex_state = 257}, - [3671] = {.lex_state = 257}, - [3672] = {.lex_state = 257}, - [3673] = {.lex_state = 257}, - [3674] = {.lex_state = 257}, - [3675] = {.lex_state = 257}, - [3676] = {.lex_state = 257}, - [3677] = {.lex_state = 257}, - [3678] = {.lex_state = 257}, - [3679] = {.lex_state = 257}, - [3680] = {.lex_state = 257}, - [3681] = {.lex_state = 257}, - [3682] = {.lex_state = 257}, - [3683] = {.lex_state = 257}, - [3684] = {.lex_state = 257}, - [3685] = {.lex_state = 257}, - [3686] = {.lex_state = 257}, - [3687] = {.lex_state = 257}, - [3688] = {.lex_state = 257}, - [3689] = {.lex_state = 257}, - [3690] = {.lex_state = 74, .external_lex_state = 58}, - [3691] = {.lex_state = 74, .external_lex_state = 58}, - [3692] = {.lex_state = 257}, - [3693] = {.lex_state = 257}, - [3694] = {.lex_state = 257}, - [3695] = {.lex_state = 257}, - [3696] = {.lex_state = 257}, - [3697] = {.lex_state = 74, .external_lex_state = 58}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 257}, - [3700] = {.lex_state = 257}, - [3701] = {.lex_state = 257}, - [3702] = {.lex_state = 257}, - [3703] = {.lex_state = 257}, - [3704] = {.lex_state = 257}, - [3705] = {.lex_state = 257}, - [3706] = {.lex_state = 257}, - [3707] = {.lex_state = 257}, - [3708] = {.lex_state = 257}, - [3709] = {.lex_state = 74, .external_lex_state = 58}, - [3710] = {.lex_state = 257}, - [3711] = {.lex_state = 257}, - [3712] = {.lex_state = 257}, - [3713] = {.lex_state = 257}, - [3714] = {.lex_state = 257}, - [3715] = {.lex_state = 257}, - [3716] = {.lex_state = 74, .external_lex_state = 58}, - [3717] = {.lex_state = 257}, - [3718] = {.lex_state = 257}, - [3719] = {.lex_state = 257}, - [3720] = {.lex_state = 74, .external_lex_state = 58}, - [3721] = {.lex_state = 257}, - [3722] = {.lex_state = 257}, - [3723] = {.lex_state = 257}, - [3724] = {.lex_state = 257}, - [3725] = {.lex_state = 257}, - [3726] = {.lex_state = 257}, - [3727] = {.lex_state = 257}, - [3728] = {.lex_state = 257}, - [3729] = {.lex_state = 257}, - [3730] = {.lex_state = 257}, - [3731] = {.lex_state = 257}, - [3732] = {.lex_state = 257}, - [3733] = {.lex_state = 257}, - [3734] = {.lex_state = 257}, - [3735] = {.lex_state = 257}, - [3736] = {.lex_state = 257}, - [3737] = {.lex_state = 257}, - [3738] = {.lex_state = 257}, - [3739] = {.lex_state = 257}, - [3740] = {.lex_state = 257}, - [3741] = {.lex_state = 257}, - [3742] = {.lex_state = 74, .external_lex_state = 58}, - [3743] = {.lex_state = 257}, - [3744] = {.lex_state = 257}, - [3745] = {.lex_state = 257}, - [3746] = {.lex_state = 257}, - [3747] = {.lex_state = 74, .external_lex_state = 58}, - [3748] = {.lex_state = 230}, - [3749] = {.lex_state = 230}, - [3750] = {.lex_state = 231}, - [3751] = {.lex_state = 230}, - [3752] = {.lex_state = 230}, - [3753] = {.lex_state = 231}, - [3754] = {.lex_state = 230}, - [3755] = {.lex_state = 231}, - [3756] = {.lex_state = 231}, - [3757] = {.lex_state = 230}, - [3758] = {.lex_state = 230}, - [3759] = {.lex_state = 230}, - [3760] = {.lex_state = 231}, - [3761] = {.lex_state = 231}, - [3762] = {.lex_state = 231}, - [3763] = {.lex_state = 230}, - [3764] = {.lex_state = 230}, - [3765] = {.lex_state = 230}, - [3766] = {.lex_state = 230}, - [3767] = {.lex_state = 230}, - [3768] = {.lex_state = 230}, - [3769] = {.lex_state = 230}, - [3770] = {.lex_state = 230}, - [3771] = {.lex_state = 230}, - [3772] = {.lex_state = 231}, - [3773] = {.lex_state = 230}, - [3774] = {.lex_state = 231}, - [3775] = {.lex_state = 231}, - [3776] = {.lex_state = 230}, - [3777] = {.lex_state = 230}, - [3778] = {.lex_state = 230}, - [3779] = {.lex_state = 230}, - [3780] = {.lex_state = 230}, - [3781] = {.lex_state = 231}, - [3782] = {.lex_state = 231}, - [3783] = {.lex_state = 230}, - [3784] = {.lex_state = 230}, - [3785] = {.lex_state = 230}, - [3786] = {.lex_state = 230}, - [3787] = {.lex_state = 230}, - [3788] = {.lex_state = 230}, - [3789] = {.lex_state = 230}, - [3790] = {.lex_state = 230}, - [3791] = {.lex_state = 230}, - [3792] = {.lex_state = 230}, - [3793] = {.lex_state = 230}, - [3794] = {.lex_state = 231}, - [3795] = {.lex_state = 230}, - [3796] = {.lex_state = 231}, - [3797] = {.lex_state = 230}, - [3798] = {.lex_state = 231}, - [3799] = {.lex_state = 230}, - [3800] = {.lex_state = 230}, - [3801] = {.lex_state = 230}, - [3802] = {.lex_state = 231}, - [3803] = {.lex_state = 230}, - [3804] = {.lex_state = 230}, - [3805] = {.lex_state = 230}, - [3806] = {.lex_state = 230}, - [3807] = {.lex_state = 230}, - [3808] = {.lex_state = 231}, - [3809] = {.lex_state = 230}, - [3810] = {.lex_state = 230}, - [3811] = {.lex_state = 231}, - [3812] = {.lex_state = 230}, - [3813] = {.lex_state = 231}, - [3814] = {.lex_state = 230}, - [3815] = {.lex_state = 230}, - [3816] = {.lex_state = 231}, - [3817] = {.lex_state = 230}, - [3818] = {.lex_state = 230}, - [3819] = {.lex_state = 230}, - [3820] = {.lex_state = 230}, - [3821] = {.lex_state = 230}, - [3822] = {.lex_state = 231}, - [3823] = {.lex_state = 230}, - [3824] = {.lex_state = 231}, - [3825] = {.lex_state = 231}, - [3826] = {.lex_state = 230}, - [3827] = {.lex_state = 231}, - [3828] = {.lex_state = 230}, - [3829] = {.lex_state = 230}, - [3830] = {.lex_state = 231}, - [3831] = {.lex_state = 230}, - [3832] = {.lex_state = 231}, - [3833] = {.lex_state = 230}, - [3834] = {.lex_state = 230}, - [3835] = {.lex_state = 230}, - [3836] = {.lex_state = 231}, - [3837] = {.lex_state = 230}, - [3838] = {.lex_state = 231}, - [3839] = {.lex_state = 230}, - [3840] = {.lex_state = 230}, - [3841] = {.lex_state = 230}, - [3842] = {.lex_state = 230}, - [3843] = {.lex_state = 230}, - [3844] = {.lex_state = 231}, - [3845] = {.lex_state = 230}, - [3846] = {.lex_state = 231}, - [3847] = {.lex_state = 230}, - [3848] = {.lex_state = 230}, - [3849] = {.lex_state = 231}, - [3850] = {.lex_state = 230}, - [3851] = {.lex_state = 231}, - [3852] = {.lex_state = 231}, - [3853] = {.lex_state = 230}, - [3854] = {.lex_state = 231}, - [3855] = {.lex_state = 230}, - [3856] = {.lex_state = 230}, - [3857] = {.lex_state = 230}, - [3858] = {.lex_state = 231}, - [3859] = {.lex_state = 230}, - [3860] = {.lex_state = 230}, - [3861] = {.lex_state = 231}, - [3862] = {.lex_state = 231}, - [3863] = {.lex_state = 230}, - [3864] = {.lex_state = 230}, - [3865] = {.lex_state = 230}, - [3866] = {.lex_state = 231}, - [3867] = {.lex_state = 231}, - [3868] = {.lex_state = 230}, - [3869] = {.lex_state = 230}, - [3870] = {.lex_state = 231}, - [3871] = {.lex_state = 230}, - [3872] = {.lex_state = 230}, - [3873] = {.lex_state = 230}, - [3874] = {.lex_state = 230}, - [3875] = {.lex_state = 230}, - [3876] = {.lex_state = 230}, - [3877] = {.lex_state = 231}, - [3878] = {.lex_state = 231}, - [3879] = {.lex_state = 230}, - [3880] = {.lex_state = 230}, - [3881] = {.lex_state = 230}, - [3882] = {.lex_state = 230}, - [3883] = {.lex_state = 230}, - [3884] = {.lex_state = 230}, - [3885] = {.lex_state = 230}, - [3886] = {.lex_state = 230}, - [3887] = {.lex_state = 231}, - [3888] = {.lex_state = 231}, - [3889] = {.lex_state = 231}, - [3890] = {.lex_state = 230}, - [3891] = {.lex_state = 230}, - [3892] = {.lex_state = 231}, - [3893] = {.lex_state = 230}, - [3894] = {.lex_state = 230}, - [3895] = {.lex_state = 230}, - [3896] = {.lex_state = 231}, - [3897] = {.lex_state = 231}, - [3898] = {.lex_state = 230}, - [3899] = {.lex_state = 230}, - [3900] = {.lex_state = 233}, - [3901] = {.lex_state = 251, .external_lex_state = 59}, - [3902] = {.lex_state = 216, .external_lex_state = 60}, - [3903] = {.lex_state = 234}, - [3904] = {.lex_state = 251, .external_lex_state = 59}, - [3905] = {.lex_state = 251, .external_lex_state = 59}, - [3906] = {.lex_state = 234}, - [3907] = {.lex_state = 216, .external_lex_state = 60}, - [3908] = {.lex_state = 216, .external_lex_state = 60}, - [3909] = {.lex_state = 251, .external_lex_state = 59}, - [3910] = {.lex_state = 251, .external_lex_state = 59}, - [3911] = {.lex_state = 234}, - [3912] = {.lex_state = 251, .external_lex_state = 59}, - [3913] = {.lex_state = 251, .external_lex_state = 59}, - [3914] = {.lex_state = 234}, + [401] = {.lex_state = 150, .external_lex_state = 8}, + [402] = {.lex_state = 201, .external_lex_state = 5}, + [403] = {.lex_state = 201, .external_lex_state = 5}, + [404] = {.lex_state = 201, .external_lex_state = 5}, + [405] = {.lex_state = 201, .external_lex_state = 5}, + [406] = {.lex_state = 201, .external_lex_state = 5}, + [407] = {.lex_state = 201, .external_lex_state = 5}, + [408] = {.lex_state = 201, .external_lex_state = 5}, + [409] = {.lex_state = 201, .external_lex_state = 5}, + [410] = {.lex_state = 201, .external_lex_state = 5}, + [411] = {.lex_state = 201, .external_lex_state = 5}, + [412] = {.lex_state = 201, .external_lex_state = 5}, + [413] = {.lex_state = 201, .external_lex_state = 5}, + [414] = {.lex_state = 201, .external_lex_state = 5}, + [415] = {.lex_state = 201, .external_lex_state = 5}, + [416] = {.lex_state = 201, .external_lex_state = 5}, + [417] = {.lex_state = 201, .external_lex_state = 5}, + [418] = {.lex_state = 201, .external_lex_state = 5}, + [419] = {.lex_state = 201, .external_lex_state = 5}, + [420] = {.lex_state = 202, .external_lex_state = 9}, + [421] = {.lex_state = 202, .external_lex_state = 9}, + [422] = {.lex_state = 202, .external_lex_state = 9}, + [423] = {.lex_state = 202, .external_lex_state = 9}, + [424] = {.lex_state = 190, .external_lex_state = 2}, + [425] = {.lex_state = 190, .external_lex_state = 2}, + [426] = {.lex_state = 190, .external_lex_state = 2}, + [427] = {.lex_state = 190, .external_lex_state = 2}, + [428] = {.lex_state = 132, .external_lex_state = 10}, + [429] = {.lex_state = 132, .external_lex_state = 10}, + [430] = {.lex_state = 132, .external_lex_state = 10}, + [431] = {.lex_state = 143, .external_lex_state = 8}, + [432] = {.lex_state = 143, .external_lex_state = 8}, + [433] = {.lex_state = 147, .external_lex_state = 10}, + [434] = {.lex_state = 143, .external_lex_state = 8}, + [435] = {.lex_state = 147, .external_lex_state = 10}, + [436] = {.lex_state = 143, .external_lex_state = 8}, + [437] = {.lex_state = 147, .external_lex_state = 10}, + [438] = {.lex_state = 143, .external_lex_state = 8}, + [439] = {.lex_state = 423, .external_lex_state = 10}, + [440] = {.lex_state = 136, .external_lex_state = 8}, + [441] = {.lex_state = 423, .external_lex_state = 10}, + [442] = {.lex_state = 423, .external_lex_state = 10}, + [443] = {.lex_state = 154, .external_lex_state = 8}, + [444] = {.lex_state = 154, .external_lex_state = 8}, + [445] = {.lex_state = 136, .external_lex_state = 8}, + [446] = {.lex_state = 423, .external_lex_state = 10}, + [447] = {.lex_state = 154, .external_lex_state = 8}, + [448] = {.lex_state = 154, .external_lex_state = 8}, + [449] = {.lex_state = 423, .external_lex_state = 10}, + [450] = {.lex_state = 423, .external_lex_state = 10}, + [451] = {.lex_state = 154, .external_lex_state = 8}, + [452] = {.lex_state = 157, .external_lex_state = 10}, + [453] = {.lex_state = 144, .external_lex_state = 8}, + [454] = {.lex_state = 425, .external_lex_state = 8}, + [455] = {.lex_state = 425, .external_lex_state = 8}, + [456] = {.lex_state = 425, .external_lex_state = 8}, + [457] = {.lex_state = 425, .external_lex_state = 8}, + [458] = {.lex_state = 423, .external_lex_state = 10}, + [459] = {.lex_state = 132, .external_lex_state = 11}, + [460] = {.lex_state = 157, .external_lex_state = 10}, + [461] = {.lex_state = 132, .external_lex_state = 11}, + [462] = {.lex_state = 423, .external_lex_state = 10}, + [463] = {.lex_state = 425, .external_lex_state = 8}, + [464] = {.lex_state = 423, .external_lex_state = 10}, + [465] = {.lex_state = 425, .external_lex_state = 8}, + [466] = {.lex_state = 144, .external_lex_state = 8}, + [467] = {.lex_state = 423, .external_lex_state = 10}, + [468] = {.lex_state = 425, .external_lex_state = 8}, + [469] = {.lex_state = 425, .external_lex_state = 8}, + [470] = {.lex_state = 425, .external_lex_state = 8}, + [471] = {.lex_state = 423, .external_lex_state = 10}, + [472] = {.lex_state = 157, .external_lex_state = 10}, + [473] = {.lex_state = 132, .external_lex_state = 11}, + [474] = {.lex_state = 425, .external_lex_state = 8}, + [475] = {.lex_state = 425, .external_lex_state = 8}, + [476] = {.lex_state = 157, .external_lex_state = 11}, + [477] = {.lex_state = 147, .external_lex_state = 11}, + [478] = {.lex_state = 157, .external_lex_state = 11}, + [479] = {.lex_state = 157, .external_lex_state = 11}, + [480] = {.lex_state = 425, .external_lex_state = 8}, + [481] = {.lex_state = 148, .external_lex_state = 10}, + [482] = {.lex_state = 152, .external_lex_state = 8}, + [483] = {.lex_state = 147, .external_lex_state = 11}, + [484] = {.lex_state = 152, .external_lex_state = 8}, + [485] = {.lex_state = 424, .external_lex_state = 8}, + [486] = {.lex_state = 148, .external_lex_state = 10}, + [487] = {.lex_state = 162, .external_lex_state = 10}, + [488] = {.lex_state = 425, .external_lex_state = 8}, + [489] = {.lex_state = 147, .external_lex_state = 11}, + [490] = {.lex_state = 425, .external_lex_state = 8}, + [491] = {.lex_state = 162, .external_lex_state = 10}, + [492] = {.lex_state = 162, .external_lex_state = 10}, + [493] = {.lex_state = 148, .external_lex_state = 10}, + [494] = {.lex_state = 424, .external_lex_state = 8}, + [495] = {.lex_state = 425, .external_lex_state = 8}, + [496] = {.lex_state = 425, .external_lex_state = 8}, + [497] = {.lex_state = 425, .external_lex_state = 8}, + [498] = {.lex_state = 148, .external_lex_state = 10}, + [499] = {.lex_state = 425, .external_lex_state = 8}, + [500] = {.lex_state = 425, .external_lex_state = 8}, + [501] = {.lex_state = 423, .external_lex_state = 11}, + [502] = {.lex_state = 424, .external_lex_state = 8}, + [503] = {.lex_state = 158, .external_lex_state = 10}, + [504] = {.lex_state = 158, .external_lex_state = 10}, + [505] = {.lex_state = 148, .external_lex_state = 11}, + [506] = {.lex_state = 427, .external_lex_state = 10}, + [507] = {.lex_state = 423, .external_lex_state = 11}, + [508] = {.lex_state = 423, .external_lex_state = 11}, + [509] = {.lex_state = 423, .external_lex_state = 11}, + [510] = {.lex_state = 158, .external_lex_state = 10}, + [511] = {.lex_state = 423, .external_lex_state = 11}, + [512] = {.lex_state = 427, .external_lex_state = 10}, + [513] = {.lex_state = 427, .external_lex_state = 10}, + [514] = {.lex_state = 162, .external_lex_state = 11}, + [515] = {.lex_state = 423, .external_lex_state = 11}, + [516] = {.lex_state = 427, .external_lex_state = 10}, + [517] = {.lex_state = 427, .external_lex_state = 10}, + [518] = {.lex_state = 162, .external_lex_state = 11}, + [519] = {.lex_state = 158, .external_lex_state = 10}, + [520] = {.lex_state = 148, .external_lex_state = 11}, + [521] = {.lex_state = 148, .external_lex_state = 11}, + [522] = {.lex_state = 424, .external_lex_state = 8}, + [523] = {.lex_state = 148, .external_lex_state = 11}, + [524] = {.lex_state = 162, .external_lex_state = 11}, + [525] = {.lex_state = 427, .external_lex_state = 10}, + [526] = {.lex_state = 191, .external_lex_state = 2}, + [527] = {.lex_state = 432, .external_lex_state = 2}, + [528] = {.lex_state = 426, .external_lex_state = 10}, + [529] = {.lex_state = 427, .external_lex_state = 10}, + [530] = {.lex_state = 147, .external_lex_state = 10}, + [531] = {.lex_state = 423, .external_lex_state = 11}, + [532] = {.lex_state = 423, .external_lex_state = 11}, + [533] = {.lex_state = 158, .external_lex_state = 11}, + [534] = {.lex_state = 158, .external_lex_state = 11}, + [535] = {.lex_state = 423, .external_lex_state = 11}, + [536] = {.lex_state = 427, .external_lex_state = 10}, + [537] = {.lex_state = 432, .external_lex_state = 2}, + [538] = {.lex_state = 427, .external_lex_state = 11}, + [539] = {.lex_state = 426, .external_lex_state = 10}, + [540] = {.lex_state = 432, .external_lex_state = 2}, + [541] = {.lex_state = 427, .external_lex_state = 11}, + [542] = {.lex_state = 147, .external_lex_state = 10}, + [543] = {.lex_state = 191, .external_lex_state = 2}, + [544] = {.lex_state = 163, .external_lex_state = 10}, + [545] = {.lex_state = 427, .external_lex_state = 11}, + [546] = {.lex_state = 427, .external_lex_state = 11}, + [547] = {.lex_state = 426, .external_lex_state = 10}, + [548] = {.lex_state = 163, .external_lex_state = 10}, + [549] = {.lex_state = 427, .external_lex_state = 11}, + [550] = {.lex_state = 426, .external_lex_state = 10}, + [551] = {.lex_state = 163, .external_lex_state = 10}, + [552] = {.lex_state = 163, .external_lex_state = 10}, + [553] = {.lex_state = 158, .external_lex_state = 11}, + [554] = {.lex_state = 423, .external_lex_state = 11}, + [555] = {.lex_state = 427, .external_lex_state = 11}, + [556] = {.lex_state = 427, .external_lex_state = 10}, + [557] = {.lex_state = 423, .external_lex_state = 11}, + [558] = {.lex_state = 147, .external_lex_state = 10}, + [559] = {.lex_state = 158, .external_lex_state = 11}, + [560] = {.lex_state = 426, .external_lex_state = 11}, + [561] = {.lex_state = 154, .external_lex_state = 8}, + [562] = {.lex_state = 242, .external_lex_state = 12}, + [563] = {.lex_state = 154, .external_lex_state = 8}, + [564] = {.lex_state = 427, .external_lex_state = 11}, + [565] = {.lex_state = 233, .external_lex_state = 2}, + [566] = {.lex_state = 427, .external_lex_state = 11}, + [567] = {.lex_state = 233, .external_lex_state = 2}, + [568] = {.lex_state = 233, .external_lex_state = 2}, + [569] = {.lex_state = 427, .external_lex_state = 11}, + [570] = {.lex_state = 163, .external_lex_state = 11}, + [571] = {.lex_state = 426, .external_lex_state = 11}, + [572] = {.lex_state = 233, .external_lex_state = 2}, + [573] = {.lex_state = 426, .external_lex_state = 10}, + [574] = {.lex_state = 426, .external_lex_state = 10}, + [575] = {.lex_state = 426, .external_lex_state = 11}, + [576] = {.lex_state = 242, .external_lex_state = 12}, + [577] = {.lex_state = 242, .external_lex_state = 12}, + [578] = {.lex_state = 426, .external_lex_state = 10}, + [579] = {.lex_state = 427, .external_lex_state = 11}, + [580] = {.lex_state = 426, .external_lex_state = 10}, + [581] = {.lex_state = 233, .external_lex_state = 2}, + [582] = {.lex_state = 163, .external_lex_state = 11}, + [583] = {.lex_state = 427, .external_lex_state = 11}, + [584] = {.lex_state = 163, .external_lex_state = 11}, + [585] = {.lex_state = 154, .external_lex_state = 8}, + [586] = {.lex_state = 233, .external_lex_state = 2}, + [587] = {.lex_state = 233, .external_lex_state = 2}, + [588] = {.lex_state = 426, .external_lex_state = 11}, + [589] = {.lex_state = 154, .external_lex_state = 8}, + [590] = {.lex_state = 233, .external_lex_state = 2}, + [591] = {.lex_state = 154, .external_lex_state = 8}, + [592] = {.lex_state = 163, .external_lex_state = 11}, + [593] = {.lex_state = 157, .external_lex_state = 10}, + [594] = {.lex_state = 165, .external_lex_state = 8}, + [595] = {.lex_state = 426, .external_lex_state = 11}, + [596] = {.lex_state = 157, .external_lex_state = 10}, + [597] = {.lex_state = 239, .external_lex_state = 13}, + [598] = {.lex_state = 426, .external_lex_state = 11}, + [599] = {.lex_state = 239, .external_lex_state = 13}, + [600] = {.lex_state = 165, .external_lex_state = 8}, + [601] = {.lex_state = 239, .external_lex_state = 13}, + [602] = {.lex_state = 157, .external_lex_state = 10}, + [603] = {.lex_state = 239, .external_lex_state = 13}, + [604] = {.lex_state = 426, .external_lex_state = 11}, + [605] = {.lex_state = 239, .external_lex_state = 13}, + [606] = {.lex_state = 426, .external_lex_state = 11}, + [607] = {.lex_state = 157, .external_lex_state = 10}, + [608] = {.lex_state = 432, .external_lex_state = 2}, + [609] = {.lex_state = 192, .external_lex_state = 2}, + [610] = {.lex_state = 162, .external_lex_state = 10}, + [611] = {.lex_state = 192, .external_lex_state = 2}, + [612] = {.lex_state = 147, .external_lex_state = 11}, + [613] = {.lex_state = 147, .external_lex_state = 11}, + [614] = {.lex_state = 162, .external_lex_state = 10}, + [615] = {.lex_state = 162, .external_lex_state = 10}, + [616] = {.lex_state = 240, .external_lex_state = 14}, + [617] = {.lex_state = 192, .external_lex_state = 2}, + [618] = {.lex_state = 162, .external_lex_state = 10}, + [619] = {.lex_state = 192, .external_lex_state = 2}, + [620] = {.lex_state = 240, .external_lex_state = 14}, + [621] = {.lex_state = 166, .external_lex_state = 3}, + [622] = {.lex_state = 432, .external_lex_state = 2}, + [623] = {.lex_state = 240, .external_lex_state = 14}, + [624] = {.lex_state = 162, .external_lex_state = 10}, + [625] = {.lex_state = 162, .external_lex_state = 10}, + [626] = {.lex_state = 183, .external_lex_state = 13}, + [627] = {.lex_state = 147, .external_lex_state = 11}, + [628] = {.lex_state = 432, .external_lex_state = 2}, + [629] = {.lex_state = 162, .external_lex_state = 10}, + [630] = {.lex_state = 183, .external_lex_state = 13}, + [631] = {.lex_state = 236, .external_lex_state = 12}, + [632] = {.lex_state = 166, .external_lex_state = 3}, + [633] = {.lex_state = 240, .external_lex_state = 15}, + [634] = {.lex_state = 427, .external_lex_state = 10}, + [635] = {.lex_state = 427, .external_lex_state = 10}, + [636] = {.lex_state = 240, .external_lex_state = 15}, + [637] = {.lex_state = 162, .external_lex_state = 11}, + [638] = {.lex_state = 203, .external_lex_state = 16}, + [639] = {.lex_state = 203, .external_lex_state = 16}, + [640] = {.lex_state = 242, .external_lex_state = 17}, + [641] = {.lex_state = 427, .external_lex_state = 10}, + [642] = {.lex_state = 168, .external_lex_state = 3}, + [643] = {.lex_state = 166, .external_lex_state = 3}, + [644] = {.lex_state = 427, .external_lex_state = 10}, + [645] = {.lex_state = 427, .external_lex_state = 10}, + [646] = {.lex_state = 236, .external_lex_state = 12}, + [647] = {.lex_state = 432, .external_lex_state = 2}, + [648] = {.lex_state = 240, .external_lex_state = 15}, + [649] = {.lex_state = 207, .external_lex_state = 18}, + [650] = {.lex_state = 184, .external_lex_state = 14}, + [651] = {.lex_state = 167, .external_lex_state = 10}, + [652] = {.lex_state = 184, .external_lex_state = 14}, + [653] = {.lex_state = 162, .external_lex_state = 11}, + [654] = {.lex_state = 242, .external_lex_state = 17}, + [655] = {.lex_state = 162, .external_lex_state = 11}, + [656] = {.lex_state = 432, .external_lex_state = 2}, + [657] = {.lex_state = 167, .external_lex_state = 10}, + [658] = {.lex_state = 207, .external_lex_state = 18}, + [659] = {.lex_state = 166, .external_lex_state = 3}, + [660] = {.lex_state = 166, .external_lex_state = 3}, + [661] = {.lex_state = 242, .external_lex_state = 17}, + [662] = {.lex_state = 236, .external_lex_state = 12}, + [663] = {.lex_state = 167, .external_lex_state = 10}, + [664] = {.lex_state = 432, .external_lex_state = 2}, + [665] = {.lex_state = 166, .external_lex_state = 3}, + [666] = {.lex_state = 167, .external_lex_state = 10}, + [667] = {.lex_state = 166, .external_lex_state = 3}, + [668] = {.lex_state = 427, .external_lex_state = 10}, + [669] = {.lex_state = 427, .external_lex_state = 10}, + [670] = {.lex_state = 166, .external_lex_state = 3}, + [671] = {.lex_state = 166, .external_lex_state = 3}, + [672] = {.lex_state = 166, .external_lex_state = 3}, + [673] = {.lex_state = 427, .external_lex_state = 10}, + [674] = {.lex_state = 166, .external_lex_state = 3}, + [675] = {.lex_state = 427, .external_lex_state = 10}, + [676] = {.lex_state = 167, .external_lex_state = 11}, + [677] = {.lex_state = 184, .external_lex_state = 15}, + [678] = {.lex_state = 167, .external_lex_state = 11}, + [679] = {.lex_state = 167, .external_lex_state = 11}, + [680] = {.lex_state = 428, .external_lex_state = 3}, + [681] = {.lex_state = 172, .external_lex_state = 19}, + [682] = {.lex_state = 172, .external_lex_state = 19}, + [683] = {.lex_state = 166, .external_lex_state = 3}, + [684] = {.lex_state = 172, .external_lex_state = 19}, + [685] = {.lex_state = 168, .external_lex_state = 3}, + [686] = {.lex_state = 166, .external_lex_state = 3}, + [687] = {.lex_state = 236, .external_lex_state = 17}, + [688] = {.lex_state = 172, .external_lex_state = 19}, + [689] = {.lex_state = 166, .external_lex_state = 3}, + [690] = {.lex_state = 166, .external_lex_state = 3}, + [691] = {.lex_state = 172, .external_lex_state = 19}, + [692] = {.lex_state = 236, .external_lex_state = 17}, + [693] = {.lex_state = 204, .external_lex_state = 16}, + [694] = {.lex_state = 184, .external_lex_state = 15}, + [695] = {.lex_state = 166, .external_lex_state = 3}, + [696] = {.lex_state = 166, .external_lex_state = 3}, + [697] = {.lex_state = 427, .external_lex_state = 10}, + [698] = {.lex_state = 236, .external_lex_state = 17}, + [699] = {.lex_state = 427, .external_lex_state = 10}, + [700] = {.lex_state = 206, .external_lex_state = 16}, + [701] = {.lex_state = 166, .external_lex_state = 3}, + [702] = {.lex_state = 166, .external_lex_state = 3}, + [703] = {.lex_state = 427, .external_lex_state = 10}, + [704] = {.lex_state = 206, .external_lex_state = 16}, + [705] = {.lex_state = 185, .external_lex_state = 12}, + [706] = {.lex_state = 427, .external_lex_state = 10}, + [707] = {.lex_state = 427, .external_lex_state = 10}, + [708] = {.lex_state = 207, .external_lex_state = 20}, + [709] = {.lex_state = 427, .external_lex_state = 10}, + [710] = {.lex_state = 166, .external_lex_state = 3}, + [711] = {.lex_state = 427, .external_lex_state = 10}, + [712] = {.lex_state = 185, .external_lex_state = 12}, + [713] = {.lex_state = 428, .external_lex_state = 3}, + [714] = {.lex_state = 168, .external_lex_state = 3}, + [715] = {.lex_state = 427, .external_lex_state = 10}, + [716] = {.lex_state = 166, .external_lex_state = 3}, + [717] = {.lex_state = 166, .external_lex_state = 3}, + [718] = {.lex_state = 205, .external_lex_state = 16}, + [719] = {.lex_state = 205, .external_lex_state = 16}, + [720] = {.lex_state = 168, .external_lex_state = 3}, + [721] = {.lex_state = 167, .external_lex_state = 11}, + [722] = {.lex_state = 166, .external_lex_state = 3}, + [723] = {.lex_state = 166, .external_lex_state = 3}, + [724] = {.lex_state = 168, .external_lex_state = 3}, + [725] = {.lex_state = 166, .external_lex_state = 3}, + [726] = {.lex_state = 427, .external_lex_state = 10}, + [727] = {.lex_state = 172, .external_lex_state = 19}, + [728] = {.lex_state = 168, .external_lex_state = 3}, + [729] = {.lex_state = 172, .external_lex_state = 19}, + [730] = {.lex_state = 168, .external_lex_state = 3}, + [731] = {.lex_state = 427, .external_lex_state = 10}, + [732] = {.lex_state = 427, .external_lex_state = 10}, + [733] = {.lex_state = 166, .external_lex_state = 3}, + [734] = {.lex_state = 427, .external_lex_state = 10}, + [735] = {.lex_state = 185, .external_lex_state = 12}, + [736] = {.lex_state = 172, .external_lex_state = 19}, + [737] = {.lex_state = 168, .external_lex_state = 3}, + [738] = {.lex_state = 168, .external_lex_state = 3}, + [739] = {.lex_state = 166, .external_lex_state = 3}, + [740] = {.lex_state = 208, .external_lex_state = 16}, + [741] = {.lex_state = 185, .external_lex_state = 12}, + [742] = {.lex_state = 208, .external_lex_state = 16}, + [743] = {.lex_state = 168, .external_lex_state = 3}, + [744] = {.lex_state = 427, .external_lex_state = 10}, + [745] = {.lex_state = 166, .external_lex_state = 3}, + [746] = {.lex_state = 168, .external_lex_state = 3}, + [747] = {.lex_state = 207, .external_lex_state = 20}, + [748] = {.lex_state = 204, .external_lex_state = 16}, + [749] = {.lex_state = 166, .external_lex_state = 3}, + [750] = {.lex_state = 172, .external_lex_state = 19}, + [751] = {.lex_state = 172, .external_lex_state = 19}, + [752] = {.lex_state = 168, .external_lex_state = 3}, + [753] = {.lex_state = 172, .external_lex_state = 19}, + [754] = {.lex_state = 172, .external_lex_state = 19}, + [755] = {.lex_state = 172, .external_lex_state = 19}, + [756] = {.lex_state = 172, .external_lex_state = 19}, + [757] = {.lex_state = 143, .external_lex_state = 8}, + [758] = {.lex_state = 172, .external_lex_state = 19}, + [759] = {.lex_state = 172, .external_lex_state = 21}, + [760] = {.lex_state = 172, .external_lex_state = 21}, + [761] = {.lex_state = 428, .external_lex_state = 3}, + [762] = {.lex_state = 428, .external_lex_state = 3}, + [763] = {.lex_state = 168, .external_lex_state = 3}, + [764] = {.lex_state = 428, .external_lex_state = 3}, + [765] = {.lex_state = 168, .external_lex_state = 3}, + [766] = {.lex_state = 428, .external_lex_state = 3}, + [767] = {.lex_state = 173, .external_lex_state = 19}, + [768] = {.lex_state = 143, .external_lex_state = 8}, + [769] = {.lex_state = 174, .external_lex_state = 19}, + [770] = {.lex_state = 428, .external_lex_state = 3}, + [771] = {.lex_state = 428, .external_lex_state = 3}, + [772] = {.lex_state = 172, .external_lex_state = 19}, + [773] = {.lex_state = 173, .external_lex_state = 19}, + [774] = {.lex_state = 173, .external_lex_state = 19}, + [775] = {.lex_state = 168, .external_lex_state = 3}, + [776] = {.lex_state = 428, .external_lex_state = 3}, + [777] = {.lex_state = 209, .external_lex_state = 16}, + [778] = {.lex_state = 174, .external_lex_state = 19}, + [779] = {.lex_state = 174, .external_lex_state = 19}, + [780] = {.lex_state = 174, .external_lex_state = 19}, + [781] = {.lex_state = 428, .external_lex_state = 3}, + [782] = {.lex_state = 174, .external_lex_state = 19}, + [783] = {.lex_state = 428, .external_lex_state = 3}, + [784] = {.lex_state = 209, .external_lex_state = 16}, + [785] = {.lex_state = 168, .external_lex_state = 3}, + [786] = {.lex_state = 174, .external_lex_state = 19}, + [787] = {.lex_state = 143, .external_lex_state = 8}, + [788] = {.lex_state = 174, .external_lex_state = 19}, + [789] = {.lex_state = 172, .external_lex_state = 19}, + [790] = {.lex_state = 168, .external_lex_state = 3}, + [791] = {.lex_state = 172, .external_lex_state = 21}, + [792] = {.lex_state = 428, .external_lex_state = 3}, + [793] = {.lex_state = 168, .external_lex_state = 3}, + [794] = {.lex_state = 143, .external_lex_state = 8}, + [795] = {.lex_state = 168, .external_lex_state = 3}, + [796] = {.lex_state = 172, .external_lex_state = 21}, + [797] = {.lex_state = 173, .external_lex_state = 19}, + [798] = {.lex_state = 173, .external_lex_state = 19}, + [799] = {.lex_state = 428, .external_lex_state = 3}, + [800] = {.lex_state = 168, .external_lex_state = 3}, + [801] = {.lex_state = 173, .external_lex_state = 19}, + [802] = {.lex_state = 173, .external_lex_state = 19}, + [803] = {.lex_state = 428, .external_lex_state = 3}, + [804] = {.lex_state = 168, .external_lex_state = 3}, + [805] = {.lex_state = 428, .external_lex_state = 3}, + [806] = {.lex_state = 428, .external_lex_state = 3}, + [807] = {.lex_state = 168, .external_lex_state = 3}, + [808] = {.lex_state = 172, .external_lex_state = 21}, + [809] = {.lex_state = 172, .external_lex_state = 19}, + [810] = {.lex_state = 428, .external_lex_state = 3}, + [811] = {.lex_state = 168, .external_lex_state = 3}, + [812] = {.lex_state = 172, .external_lex_state = 19}, + [813] = {.lex_state = 168, .external_lex_state = 3}, + [814] = {.lex_state = 173, .external_lex_state = 19}, + [815] = {.lex_state = 168, .external_lex_state = 3}, + [816] = {.lex_state = 428, .external_lex_state = 3}, + [817] = {.lex_state = 174, .external_lex_state = 19}, + [818] = {.lex_state = 172, .external_lex_state = 19}, + [819] = {.lex_state = 185, .external_lex_state = 17}, + [820] = {.lex_state = 185, .external_lex_state = 17}, + [821] = {.lex_state = 172, .external_lex_state = 19}, + [822] = {.lex_state = 172, .external_lex_state = 19}, + [823] = {.lex_state = 168, .external_lex_state = 3}, + [824] = {.lex_state = 428, .external_lex_state = 3}, + [825] = {.lex_state = 172, .external_lex_state = 21}, + [826] = {.lex_state = 168, .external_lex_state = 3}, + [827] = {.lex_state = 172, .external_lex_state = 19}, + [828] = {.lex_state = 168, .external_lex_state = 3}, + [829] = {.lex_state = 168, .external_lex_state = 3}, + [830] = {.lex_state = 428, .external_lex_state = 3}, + [831] = {.lex_state = 172, .external_lex_state = 19}, + [832] = {.lex_state = 428, .external_lex_state = 3}, + [833] = {.lex_state = 428, .external_lex_state = 3}, + [834] = {.lex_state = 428, .external_lex_state = 3}, + [835] = {.lex_state = 172, .external_lex_state = 19}, + [836] = {.lex_state = 428, .external_lex_state = 3}, + [837] = {.lex_state = 185, .external_lex_state = 17}, + [838] = {.lex_state = 185, .external_lex_state = 17}, + [839] = {.lex_state = 172, .external_lex_state = 19}, + [840] = {.lex_state = 175, .external_lex_state = 19}, + [841] = {.lex_state = 175, .external_lex_state = 19}, + [842] = {.lex_state = 173, .external_lex_state = 21}, + [843] = {.lex_state = 429, .external_lex_state = 19}, + [844] = {.lex_state = 429, .external_lex_state = 19}, + [845] = {.lex_state = 173, .external_lex_state = 19}, + [846] = {.lex_state = 174, .external_lex_state = 21}, + [847] = {.lex_state = 174, .external_lex_state = 19}, + [848] = {.lex_state = 173, .external_lex_state = 19}, + [849] = {.lex_state = 428, .external_lex_state = 3}, + [850] = {.lex_state = 429, .external_lex_state = 19}, + [851] = {.lex_state = 143, .external_lex_state = 8}, + [852] = {.lex_state = 172, .external_lex_state = 21}, + [853] = {.lex_state = 174, .external_lex_state = 19}, + [854] = {.lex_state = 172, .external_lex_state = 21}, + [855] = {.lex_state = 173, .external_lex_state = 19}, + [856] = {.lex_state = 172, .external_lex_state = 21}, + [857] = {.lex_state = 428, .external_lex_state = 3}, + [858] = {.lex_state = 428, .external_lex_state = 3}, + [859] = {.lex_state = 132, .external_lex_state = 10}, + [860] = {.lex_state = 428, .external_lex_state = 3}, + [861] = {.lex_state = 172, .external_lex_state = 21}, + [862] = {.lex_state = 173, .external_lex_state = 19}, + [863] = {.lex_state = 173, .external_lex_state = 21}, + [864] = {.lex_state = 428, .external_lex_state = 3}, + [865] = {.lex_state = 132, .external_lex_state = 10}, + [866] = {.lex_state = 172, .external_lex_state = 21}, + [867] = {.lex_state = 429, .external_lex_state = 19}, + [868] = {.lex_state = 428, .external_lex_state = 3}, + [869] = {.lex_state = 132, .external_lex_state = 10}, + [870] = {.lex_state = 174, .external_lex_state = 19}, + [871] = {.lex_state = 172, .external_lex_state = 21}, + [872] = {.lex_state = 174, .external_lex_state = 19}, + [873] = {.lex_state = 429, .external_lex_state = 19}, + [874] = {.lex_state = 173, .external_lex_state = 19}, + [875] = {.lex_state = 429, .external_lex_state = 19}, + [876] = {.lex_state = 173, .external_lex_state = 19}, + [877] = {.lex_state = 234, .external_lex_state = 2}, + [878] = {.lex_state = 143, .external_lex_state = 8}, + [879] = {.lex_state = 174, .external_lex_state = 19}, + [880] = {.lex_state = 174, .external_lex_state = 19}, + [881] = {.lex_state = 172, .external_lex_state = 21}, + [882] = {.lex_state = 234, .external_lex_state = 2}, + [883] = {.lex_state = 428, .external_lex_state = 3}, + [884] = {.lex_state = 428, .external_lex_state = 3}, + [885] = {.lex_state = 429, .external_lex_state = 19}, + [886] = {.lex_state = 428, .external_lex_state = 3}, + [887] = {.lex_state = 429, .external_lex_state = 19}, + [888] = {.lex_state = 428, .external_lex_state = 3}, + [889] = {.lex_state = 154, .external_lex_state = 8}, + [890] = {.lex_state = 175, .external_lex_state = 19}, + [891] = {.lex_state = 428, .external_lex_state = 3}, + [892] = {.lex_state = 428, .external_lex_state = 3}, + [893] = {.lex_state = 173, .external_lex_state = 19}, + [894] = {.lex_state = 172, .external_lex_state = 21}, + [895] = {.lex_state = 174, .external_lex_state = 19}, + [896] = {.lex_state = 174, .external_lex_state = 21}, + [897] = {.lex_state = 429, .external_lex_state = 19}, + [898] = {.lex_state = 428, .external_lex_state = 3}, + [899] = {.lex_state = 429, .external_lex_state = 19}, + [900] = {.lex_state = 429, .external_lex_state = 19}, + [901] = {.lex_state = 428, .external_lex_state = 3}, + [902] = {.lex_state = 429, .external_lex_state = 19}, + [903] = {.lex_state = 174, .external_lex_state = 21}, + [904] = {.lex_state = 174, .external_lex_state = 19}, + [905] = {.lex_state = 428, .external_lex_state = 3}, + [906] = {.lex_state = 428, .external_lex_state = 3}, + [907] = {.lex_state = 174, .external_lex_state = 19}, + [908] = {.lex_state = 428, .external_lex_state = 3}, + [909] = {.lex_state = 429, .external_lex_state = 19}, + [910] = {.lex_state = 173, .external_lex_state = 19}, + [911] = {.lex_state = 428, .external_lex_state = 3}, + [912] = {.lex_state = 173, .external_lex_state = 21}, + [913] = {.lex_state = 234, .external_lex_state = 2}, + [914] = {.lex_state = 173, .external_lex_state = 19}, + [915] = {.lex_state = 174, .external_lex_state = 21}, + [916] = {.lex_state = 174, .external_lex_state = 21}, + [917] = {.lex_state = 428, .external_lex_state = 3}, + [918] = {.lex_state = 428, .external_lex_state = 3}, + [919] = {.lex_state = 173, .external_lex_state = 19}, + [920] = {.lex_state = 173, .external_lex_state = 19}, + [921] = {.lex_state = 143, .external_lex_state = 8}, + [922] = {.lex_state = 234, .external_lex_state = 2}, + [923] = {.lex_state = 172, .external_lex_state = 21}, + [924] = {.lex_state = 428, .external_lex_state = 3}, + [925] = {.lex_state = 154, .external_lex_state = 8}, + [926] = {.lex_state = 428, .external_lex_state = 3}, + [927] = {.lex_state = 234, .external_lex_state = 2}, + [928] = {.lex_state = 428, .external_lex_state = 3}, + [929] = {.lex_state = 143, .external_lex_state = 8}, + [930] = {.lex_state = 173, .external_lex_state = 19}, + [931] = {.lex_state = 175, .external_lex_state = 19}, + [932] = {.lex_state = 234, .external_lex_state = 2}, + [933] = {.lex_state = 428, .external_lex_state = 3}, + [934] = {.lex_state = 428, .external_lex_state = 3}, + [935] = {.lex_state = 428, .external_lex_state = 3}, + [936] = {.lex_state = 173, .external_lex_state = 19}, + [937] = {.lex_state = 154, .external_lex_state = 8}, + [938] = {.lex_state = 428, .external_lex_state = 3}, + [939] = {.lex_state = 174, .external_lex_state = 19}, + [940] = {.lex_state = 172, .external_lex_state = 21}, + [941] = {.lex_state = 429, .external_lex_state = 19}, + [942] = {.lex_state = 174, .external_lex_state = 21}, + [943] = {.lex_state = 174, .external_lex_state = 19}, + [944] = {.lex_state = 173, .external_lex_state = 19}, + [945] = {.lex_state = 172, .external_lex_state = 21}, + [946] = {.lex_state = 428, .external_lex_state = 3}, + [947] = {.lex_state = 172, .external_lex_state = 21}, + [948] = {.lex_state = 174, .external_lex_state = 19}, + [949] = {.lex_state = 428, .external_lex_state = 3}, + [950] = {.lex_state = 428, .external_lex_state = 3}, + [951] = {.lex_state = 172, .external_lex_state = 21}, + [952] = {.lex_state = 428, .external_lex_state = 3}, + [953] = {.lex_state = 234, .external_lex_state = 2}, + [954] = {.lex_state = 428, .external_lex_state = 3}, + [955] = {.lex_state = 173, .external_lex_state = 19}, + [956] = {.lex_state = 175, .external_lex_state = 19}, + [957] = {.lex_state = 428, .external_lex_state = 3}, + [958] = {.lex_state = 173, .external_lex_state = 21}, + [959] = {.lex_state = 428, .external_lex_state = 3}, + [960] = {.lex_state = 172, .external_lex_state = 21}, + [961] = {.lex_state = 175, .external_lex_state = 19}, + [962] = {.lex_state = 428, .external_lex_state = 3}, + [963] = {.lex_state = 172, .external_lex_state = 21}, + [964] = {.lex_state = 174, .external_lex_state = 19}, + [965] = {.lex_state = 174, .external_lex_state = 19}, + [966] = {.lex_state = 173, .external_lex_state = 19}, + [967] = {.lex_state = 174, .external_lex_state = 19}, + [968] = {.lex_state = 429, .external_lex_state = 19}, + [969] = {.lex_state = 175, .external_lex_state = 19}, + [970] = {.lex_state = 174, .external_lex_state = 19}, + [971] = {.lex_state = 174, .external_lex_state = 19}, + [972] = {.lex_state = 172, .external_lex_state = 21}, + [973] = {.lex_state = 173, .external_lex_state = 19}, + [974] = {.lex_state = 175, .external_lex_state = 19}, + [975] = {.lex_state = 428, .external_lex_state = 3}, + [976] = {.lex_state = 173, .external_lex_state = 21}, + [977] = {.lex_state = 173, .external_lex_state = 21}, + [978] = {.lex_state = 429, .external_lex_state = 19}, + [979] = {.lex_state = 172, .external_lex_state = 21}, + [980] = {.lex_state = 428, .external_lex_state = 3}, + [981] = {.lex_state = 428, .external_lex_state = 3}, + [982] = {.lex_state = 428, .external_lex_state = 3}, + [983] = {.lex_state = 172, .external_lex_state = 21}, + [984] = {.lex_state = 428, .external_lex_state = 3}, + [985] = {.lex_state = 174, .external_lex_state = 19}, + [986] = {.lex_state = 428, .external_lex_state = 3}, + [987] = {.lex_state = 428, .external_lex_state = 3}, + [988] = {.lex_state = 428, .external_lex_state = 3}, + [989] = {.lex_state = 428, .external_lex_state = 3}, + [990] = {.lex_state = 173, .external_lex_state = 19}, + [991] = {.lex_state = 428, .external_lex_state = 3}, + [992] = {.lex_state = 234, .external_lex_state = 2}, + [993] = {.lex_state = 154, .external_lex_state = 8}, + [994] = {.lex_state = 429, .external_lex_state = 19}, + [995] = {.lex_state = 174, .external_lex_state = 21}, + [996] = {.lex_state = 175, .external_lex_state = 19}, + [997] = {.lex_state = 175, .external_lex_state = 21}, + [998] = {.lex_state = 175, .external_lex_state = 19}, + [999] = {.lex_state = 193, .external_lex_state = 22}, + [1000] = {.lex_state = 157, .external_lex_state = 10}, + [1001] = {.lex_state = 175, .external_lex_state = 19}, + [1002] = {.lex_state = 429, .external_lex_state = 19}, + [1003] = {.lex_state = 429, .external_lex_state = 19}, + [1004] = {.lex_state = 175, .external_lex_state = 19}, + [1005] = {.lex_state = 174, .external_lex_state = 21}, + [1006] = {.lex_state = 430, .external_lex_state = 19}, + [1007] = {.lex_state = 429, .external_lex_state = 19}, + [1008] = {.lex_state = 154, .external_lex_state = 8}, + [1009] = {.lex_state = 429, .external_lex_state = 19}, + [1010] = {.lex_state = 175, .external_lex_state = 21}, + [1011] = {.lex_state = 147, .external_lex_state = 10}, + [1012] = {.lex_state = 425, .external_lex_state = 8}, + [1013] = {.lex_state = 175, .external_lex_state = 21}, + [1014] = {.lex_state = 425, .external_lex_state = 8}, + [1015] = {.lex_state = 175, .external_lex_state = 19}, + [1016] = {.lex_state = 429, .external_lex_state = 19}, + [1017] = {.lex_state = 175, .external_lex_state = 19}, + [1018] = {.lex_state = 429, .external_lex_state = 21}, + [1019] = {.lex_state = 429, .external_lex_state = 19}, + [1020] = {.lex_state = 147, .external_lex_state = 10}, + [1021] = {.lex_state = 162, .external_lex_state = 10}, + [1022] = {.lex_state = 173, .external_lex_state = 21}, + [1023] = {.lex_state = 175, .external_lex_state = 21}, + [1024] = {.lex_state = 174, .external_lex_state = 21}, + [1025] = {.lex_state = 429, .external_lex_state = 19}, + [1026] = {.lex_state = 174, .external_lex_state = 21}, + [1027] = {.lex_state = 173, .external_lex_state = 21}, + [1028] = {.lex_state = 174, .external_lex_state = 21}, + [1029] = {.lex_state = 175, .external_lex_state = 19}, + [1030] = {.lex_state = 174, .external_lex_state = 21}, + [1031] = {.lex_state = 429, .external_lex_state = 19}, + [1032] = {.lex_state = 429, .external_lex_state = 19}, + [1033] = {.lex_state = 174, .external_lex_state = 21}, + [1034] = {.lex_state = 175, .external_lex_state = 19}, + [1035] = {.lex_state = 193, .external_lex_state = 22}, + [1036] = {.lex_state = 429, .external_lex_state = 19}, + [1037] = {.lex_state = 429, .external_lex_state = 21}, + [1038] = {.lex_state = 425, .external_lex_state = 8}, + [1039] = {.lex_state = 173, .external_lex_state = 21}, + [1040] = {.lex_state = 429, .external_lex_state = 19}, + [1041] = {.lex_state = 429, .external_lex_state = 19}, + [1042] = {.lex_state = 429, .external_lex_state = 21}, + [1043] = {.lex_state = 429, .external_lex_state = 19}, + [1044] = {.lex_state = 430, .external_lex_state = 19}, + [1045] = {.lex_state = 430, .external_lex_state = 19}, + [1046] = {.lex_state = 430, .external_lex_state = 19}, + [1047] = {.lex_state = 429, .external_lex_state = 19}, + [1048] = {.lex_state = 429, .external_lex_state = 21}, + [1049] = {.lex_state = 429, .external_lex_state = 21}, + [1050] = {.lex_state = 154, .external_lex_state = 8}, + [1051] = {.lex_state = 429, .external_lex_state = 21}, + [1052] = {.lex_state = 174, .external_lex_state = 21}, + [1053] = {.lex_state = 193, .external_lex_state = 22}, + [1054] = {.lex_state = 429, .external_lex_state = 21}, + [1055] = {.lex_state = 429, .external_lex_state = 19}, + [1056] = {.lex_state = 175, .external_lex_state = 19}, + [1057] = {.lex_state = 429, .external_lex_state = 19}, + [1058] = {.lex_state = 175, .external_lex_state = 21}, + [1059] = {.lex_state = 429, .external_lex_state = 19}, + [1060] = {.lex_state = 174, .external_lex_state = 21}, + [1061] = {.lex_state = 429, .external_lex_state = 21}, + [1062] = {.lex_state = 154, .external_lex_state = 8}, + [1063] = {.lex_state = 429, .external_lex_state = 19}, + [1064] = {.lex_state = 429, .external_lex_state = 21}, + [1065] = {.lex_state = 193, .external_lex_state = 22}, + [1066] = {.lex_state = 193, .external_lex_state = 22}, + [1067] = {.lex_state = 430, .external_lex_state = 19}, + [1068] = {.lex_state = 429, .external_lex_state = 19}, + [1069] = {.lex_state = 174, .external_lex_state = 21}, + [1070] = {.lex_state = 157, .external_lex_state = 10}, + [1071] = {.lex_state = 429, .external_lex_state = 21}, + [1072] = {.lex_state = 429, .external_lex_state = 19}, + [1073] = {.lex_state = 132, .external_lex_state = 10}, + [1074] = {.lex_state = 132, .external_lex_state = 11}, + [1075] = {.lex_state = 429, .external_lex_state = 19}, + [1076] = {.lex_state = 429, .external_lex_state = 19}, + [1077] = {.lex_state = 429, .external_lex_state = 19}, + [1078] = {.lex_state = 430, .external_lex_state = 19}, + [1079] = {.lex_state = 132, .external_lex_state = 10}, + [1080] = {.lex_state = 429, .external_lex_state = 19}, + [1081] = {.lex_state = 429, .external_lex_state = 19}, + [1082] = {.lex_state = 429, .external_lex_state = 21}, + [1083] = {.lex_state = 429, .external_lex_state = 19}, + [1084] = {.lex_state = 429, .external_lex_state = 19}, + [1085] = {.lex_state = 430, .external_lex_state = 19}, + [1086] = {.lex_state = 162, .external_lex_state = 10}, + [1087] = {.lex_state = 173, .external_lex_state = 21}, + [1088] = {.lex_state = 430, .external_lex_state = 19}, + [1089] = {.lex_state = 429, .external_lex_state = 19}, + [1090] = {.lex_state = 173, .external_lex_state = 21}, + [1091] = {.lex_state = 429, .external_lex_state = 19}, + [1092] = {.lex_state = 429, .external_lex_state = 19}, + [1093] = {.lex_state = 157, .external_lex_state = 10}, + [1094] = {.lex_state = 430, .external_lex_state = 19}, + [1095] = {.lex_state = 425, .external_lex_state = 8}, + [1096] = {.lex_state = 193, .external_lex_state = 22}, + [1097] = {.lex_state = 154, .external_lex_state = 8}, + [1098] = {.lex_state = 173, .external_lex_state = 21}, + [1099] = {.lex_state = 174, .external_lex_state = 21}, + [1100] = {.lex_state = 429, .external_lex_state = 21}, + [1101] = {.lex_state = 429, .external_lex_state = 19}, + [1102] = {.lex_state = 173, .external_lex_state = 21}, + [1103] = {.lex_state = 175, .external_lex_state = 19}, + [1104] = {.lex_state = 429, .external_lex_state = 19}, + [1105] = {.lex_state = 173, .external_lex_state = 21}, + [1106] = {.lex_state = 429, .external_lex_state = 19}, + [1107] = {.lex_state = 175, .external_lex_state = 19}, + [1108] = {.lex_state = 430, .external_lex_state = 19}, + [1109] = {.lex_state = 429, .external_lex_state = 19}, + [1110] = {.lex_state = 173, .external_lex_state = 21}, + [1111] = {.lex_state = 147, .external_lex_state = 10}, + [1112] = {.lex_state = 429, .external_lex_state = 19}, + [1113] = {.lex_state = 425, .external_lex_state = 8}, + [1114] = {.lex_state = 175, .external_lex_state = 19}, + [1115] = {.lex_state = 175, .external_lex_state = 19}, + [1116] = {.lex_state = 175, .external_lex_state = 21}, + [1117] = {.lex_state = 173, .external_lex_state = 21}, + [1118] = {.lex_state = 429, .external_lex_state = 19}, + [1119] = {.lex_state = 175, .external_lex_state = 19}, + [1120] = {.lex_state = 174, .external_lex_state = 21}, + [1121] = {.lex_state = 193, .external_lex_state = 22}, + [1122] = {.lex_state = 174, .external_lex_state = 21}, + [1123] = {.lex_state = 429, .external_lex_state = 19}, + [1124] = {.lex_state = 430, .external_lex_state = 19}, + [1125] = {.lex_state = 430, .external_lex_state = 19}, + [1126] = {.lex_state = 162, .external_lex_state = 10}, + [1127] = {.lex_state = 173, .external_lex_state = 21}, + [1128] = {.lex_state = 193, .external_lex_state = 22}, + [1129] = {.lex_state = 430, .external_lex_state = 19}, + [1130] = {.lex_state = 429, .external_lex_state = 19}, + [1131] = {.lex_state = 175, .external_lex_state = 19}, + [1132] = {.lex_state = 430, .external_lex_state = 19}, + [1133] = {.lex_state = 173, .external_lex_state = 21}, + [1134] = {.lex_state = 425, .external_lex_state = 8}, + [1135] = {.lex_state = 132, .external_lex_state = 11}, + [1136] = {.lex_state = 429, .external_lex_state = 19}, + [1137] = {.lex_state = 429, .external_lex_state = 19}, + [1138] = {.lex_state = 175, .external_lex_state = 19}, + [1139] = {.lex_state = 175, .external_lex_state = 19}, + [1140] = {.lex_state = 132, .external_lex_state = 10}, + [1141] = {.lex_state = 429, .external_lex_state = 19}, + [1142] = {.lex_state = 175, .external_lex_state = 19}, + [1143] = {.lex_state = 174, .external_lex_state = 21}, + [1144] = {.lex_state = 429, .external_lex_state = 19}, + [1145] = {.lex_state = 173, .external_lex_state = 21}, + [1146] = {.lex_state = 430, .external_lex_state = 19}, + [1147] = {.lex_state = 173, .external_lex_state = 21}, + [1148] = {.lex_state = 173, .external_lex_state = 21}, + [1149] = {.lex_state = 425, .external_lex_state = 8}, + [1150] = {.lex_state = 173, .external_lex_state = 21}, + [1151] = {.lex_state = 132, .external_lex_state = 10}, + [1152] = {.lex_state = 174, .external_lex_state = 21}, + [1153] = {.lex_state = 173, .external_lex_state = 21}, + [1154] = {.lex_state = 430, .external_lex_state = 19}, + [1155] = {.lex_state = 174, .external_lex_state = 21}, + [1156] = {.lex_state = 173, .external_lex_state = 21}, + [1157] = {.lex_state = 174, .external_lex_state = 21}, + [1158] = {.lex_state = 425, .external_lex_state = 8}, + [1159] = {.lex_state = 174, .external_lex_state = 21}, + [1160] = {.lex_state = 430, .external_lex_state = 21}, + [1161] = {.lex_state = 175, .external_lex_state = 21}, + [1162] = {.lex_state = 147, .external_lex_state = 11}, + [1163] = {.lex_state = 423, .external_lex_state = 10}, + [1164] = {.lex_state = 425, .external_lex_state = 8}, + [1165] = {.lex_state = 175, .external_lex_state = 21}, + [1166] = {.lex_state = 430, .external_lex_state = 19}, + [1167] = {.lex_state = 236, .external_lex_state = 12}, + [1168] = {.lex_state = 193, .external_lex_state = 23}, + [1169] = {.lex_state = 430, .external_lex_state = 19}, + [1170] = {.lex_state = 193, .external_lex_state = 23}, + [1171] = {.lex_state = 175, .external_lex_state = 21}, + [1172] = {.lex_state = 425, .external_lex_state = 8}, + [1173] = {.lex_state = 430, .external_lex_state = 19}, + [1174] = {.lex_state = 175, .external_lex_state = 21}, + [1175] = {.lex_state = 430, .external_lex_state = 19}, + [1176] = {.lex_state = 157, .external_lex_state = 10}, + [1177] = {.lex_state = 430, .external_lex_state = 19}, + [1178] = {.lex_state = 430, .external_lex_state = 19}, + [1179] = {.lex_state = 168, .external_lex_state = 3}, + [1180] = {.lex_state = 430, .external_lex_state = 19}, + [1181] = {.lex_state = 157, .external_lex_state = 10}, + [1182] = {.lex_state = 430, .external_lex_state = 19}, + [1183] = {.lex_state = 430, .external_lex_state = 19}, + [1184] = {.lex_state = 147, .external_lex_state = 10}, + [1185] = {.lex_state = 423, .external_lex_state = 10}, + [1186] = {.lex_state = 175, .external_lex_state = 21}, + [1187] = {.lex_state = 193, .external_lex_state = 23}, + [1188] = {.lex_state = 430, .external_lex_state = 19}, + [1189] = {.lex_state = 157, .external_lex_state = 11}, + [1190] = {.lex_state = 157, .external_lex_state = 10}, + [1191] = {.lex_state = 429, .external_lex_state = 21}, + [1192] = {.lex_state = 430, .external_lex_state = 19}, + [1193] = {.lex_state = 162, .external_lex_state = 10}, + [1194] = {.lex_state = 193, .external_lex_state = 23}, + [1195] = {.lex_state = 429, .external_lex_state = 21}, + [1196] = {.lex_state = 430, .external_lex_state = 19}, + [1197] = {.lex_state = 175, .external_lex_state = 21}, + [1198] = {.lex_state = 429, .external_lex_state = 21}, + [1199] = {.lex_state = 430, .external_lex_state = 19}, + [1200] = {.lex_state = 430, .external_lex_state = 19}, + [1201] = {.lex_state = 430, .external_lex_state = 19}, + [1202] = {.lex_state = 429, .external_lex_state = 21}, + [1203] = {.lex_state = 423, .external_lex_state = 10}, + [1204] = {.lex_state = 429, .external_lex_state = 21}, + [1205] = {.lex_state = 429, .external_lex_state = 21}, + [1206] = {.lex_state = 162, .external_lex_state = 10}, + [1207] = {.lex_state = 430, .external_lex_state = 19}, + [1208] = {.lex_state = 175, .external_lex_state = 21}, + [1209] = {.lex_state = 430, .external_lex_state = 19}, + [1210] = {.lex_state = 429, .external_lex_state = 21}, + [1211] = {.lex_state = 429, .external_lex_state = 21}, + [1212] = {.lex_state = 429, .external_lex_state = 21}, + [1213] = {.lex_state = 429, .external_lex_state = 21}, + [1214] = {.lex_state = 429, .external_lex_state = 21}, + [1215] = {.lex_state = 429, .external_lex_state = 21}, + [1216] = {.lex_state = 429, .external_lex_state = 21}, + [1217] = {.lex_state = 430, .external_lex_state = 19}, + [1218] = {.lex_state = 193, .external_lex_state = 23}, + [1219] = {.lex_state = 429, .external_lex_state = 21}, + [1220] = {.lex_state = 193, .external_lex_state = 23}, + [1221] = {.lex_state = 429, .external_lex_state = 21}, + [1222] = {.lex_state = 429, .external_lex_state = 21}, + [1223] = {.lex_state = 429, .external_lex_state = 21}, + [1224] = {.lex_state = 429, .external_lex_state = 21}, + [1225] = {.lex_state = 147, .external_lex_state = 10}, + [1226] = {.lex_state = 429, .external_lex_state = 21}, + [1227] = {.lex_state = 429, .external_lex_state = 21}, + [1228] = {.lex_state = 193, .external_lex_state = 23}, + [1229] = {.lex_state = 175, .external_lex_state = 21}, + [1230] = {.lex_state = 175, .external_lex_state = 21}, + [1231] = {.lex_state = 429, .external_lex_state = 21}, + [1232] = {.lex_state = 429, .external_lex_state = 21}, + [1233] = {.lex_state = 430, .external_lex_state = 19}, + [1234] = {.lex_state = 236, .external_lex_state = 12}, + [1235] = {.lex_state = 162, .external_lex_state = 10}, + [1236] = {.lex_state = 193, .external_lex_state = 23}, + [1237] = {.lex_state = 429, .external_lex_state = 21}, + [1238] = {.lex_state = 429, .external_lex_state = 21}, + [1239] = {.lex_state = 430, .external_lex_state = 19}, + [1240] = {.lex_state = 429, .external_lex_state = 21}, + [1241] = {.lex_state = 193, .external_lex_state = 23}, + [1242] = {.lex_state = 430, .external_lex_state = 21}, + [1243] = {.lex_state = 430, .external_lex_state = 21}, + [1244] = {.lex_state = 429, .external_lex_state = 21}, + [1245] = {.lex_state = 193, .external_lex_state = 23}, + [1246] = {.lex_state = 157, .external_lex_state = 10}, + [1247] = {.lex_state = 193, .external_lex_state = 23}, + [1248] = {.lex_state = 429, .external_lex_state = 21}, + [1249] = {.lex_state = 193, .external_lex_state = 23}, + [1250] = {.lex_state = 175, .external_lex_state = 21}, + [1251] = {.lex_state = 193, .external_lex_state = 23}, + [1252] = {.lex_state = 147, .external_lex_state = 10}, + [1253] = {.lex_state = 147, .external_lex_state = 10}, + [1254] = {.lex_state = 425, .external_lex_state = 8}, + [1255] = {.lex_state = 193, .external_lex_state = 23}, + [1256] = {.lex_state = 147, .external_lex_state = 11}, + [1257] = {.lex_state = 175, .external_lex_state = 21}, + [1258] = {.lex_state = 429, .external_lex_state = 21}, + [1259] = {.lex_state = 193, .external_lex_state = 23}, + [1260] = {.lex_state = 429, .external_lex_state = 21}, + [1261] = {.lex_state = 430, .external_lex_state = 19}, + [1262] = {.lex_state = 193, .external_lex_state = 23}, + [1263] = {.lex_state = 430, .external_lex_state = 19}, + [1264] = {.lex_state = 430, .external_lex_state = 19}, + [1265] = {.lex_state = 430, .external_lex_state = 19}, + [1266] = {.lex_state = 157, .external_lex_state = 11}, + [1267] = {.lex_state = 425, .external_lex_state = 8}, + [1268] = {.lex_state = 429, .external_lex_state = 21}, + [1269] = {.lex_state = 429, .external_lex_state = 21}, + [1270] = {.lex_state = 193, .external_lex_state = 23}, + [1271] = {.lex_state = 193, .external_lex_state = 23}, + [1272] = {.lex_state = 429, .external_lex_state = 21}, + [1273] = {.lex_state = 430, .external_lex_state = 19}, + [1274] = {.lex_state = 430, .external_lex_state = 19}, + [1275] = {.lex_state = 193, .external_lex_state = 23}, + [1276] = {.lex_state = 175, .external_lex_state = 21}, + [1277] = {.lex_state = 429, .external_lex_state = 21}, + [1278] = {.lex_state = 429, .external_lex_state = 21}, + [1279] = {.lex_state = 429, .external_lex_state = 21}, + [1280] = {.lex_state = 236, .external_lex_state = 12}, + [1281] = {.lex_state = 429, .external_lex_state = 21}, + [1282] = {.lex_state = 193, .external_lex_state = 23}, + [1283] = {.lex_state = 429, .external_lex_state = 21}, + [1284] = {.lex_state = 193, .external_lex_state = 23}, + [1285] = {.lex_state = 193, .external_lex_state = 23}, + [1286] = {.lex_state = 193, .external_lex_state = 23}, + [1287] = {.lex_state = 430, .external_lex_state = 19}, + [1288] = {.lex_state = 430, .external_lex_state = 19}, + [1289] = {.lex_state = 193, .external_lex_state = 23}, + [1290] = {.lex_state = 430, .external_lex_state = 19}, + [1291] = {.lex_state = 132, .external_lex_state = 11}, + [1292] = {.lex_state = 430, .external_lex_state = 21}, + [1293] = {.lex_state = 430, .external_lex_state = 21}, + [1294] = {.lex_state = 429, .external_lex_state = 21}, + [1295] = {.lex_state = 430, .external_lex_state = 19}, + [1296] = {.lex_state = 430, .external_lex_state = 19}, + [1297] = {.lex_state = 430, .external_lex_state = 21}, + [1298] = {.lex_state = 430, .external_lex_state = 21}, + [1299] = {.lex_state = 193, .external_lex_state = 23}, + [1300] = {.lex_state = 193, .external_lex_state = 23}, + [1301] = {.lex_state = 193, .external_lex_state = 23}, + [1302] = {.lex_state = 430, .external_lex_state = 21}, + [1303] = {.lex_state = 175, .external_lex_state = 21}, + [1304] = {.lex_state = 193, .external_lex_state = 23}, + [1305] = {.lex_state = 193, .external_lex_state = 23}, + [1306] = {.lex_state = 193, .external_lex_state = 23}, + [1307] = {.lex_state = 193, .external_lex_state = 23}, + [1308] = {.lex_state = 193, .external_lex_state = 23}, + [1309] = {.lex_state = 430, .external_lex_state = 19}, + [1310] = {.lex_state = 430, .external_lex_state = 21}, + [1311] = {.lex_state = 430, .external_lex_state = 21}, + [1312] = {.lex_state = 430, .external_lex_state = 21}, + [1313] = {.lex_state = 193, .external_lex_state = 23}, + [1314] = {.lex_state = 193, .external_lex_state = 23}, + [1315] = {.lex_state = 193, .external_lex_state = 23}, + [1316] = {.lex_state = 175, .external_lex_state = 21}, + [1317] = {.lex_state = 429, .external_lex_state = 21}, + [1318] = {.lex_state = 430, .external_lex_state = 21}, + [1319] = {.lex_state = 430, .external_lex_state = 19}, + [1320] = {.lex_state = 193, .external_lex_state = 23}, + [1321] = {.lex_state = 193, .external_lex_state = 23}, + [1322] = {.lex_state = 193, .external_lex_state = 23}, + [1323] = {.lex_state = 430, .external_lex_state = 19}, + [1324] = {.lex_state = 193, .external_lex_state = 23}, + [1325] = {.lex_state = 175, .external_lex_state = 21}, + [1326] = {.lex_state = 175, .external_lex_state = 21}, + [1327] = {.lex_state = 193, .external_lex_state = 23}, + [1328] = {.lex_state = 157, .external_lex_state = 10}, + [1329] = {.lex_state = 193, .external_lex_state = 23}, + [1330] = {.lex_state = 423, .external_lex_state = 10}, + [1331] = {.lex_state = 193, .external_lex_state = 23}, + [1332] = {.lex_state = 430, .external_lex_state = 19}, + [1333] = {.lex_state = 175, .external_lex_state = 21}, + [1334] = {.lex_state = 175, .external_lex_state = 21}, + [1335] = {.lex_state = 429, .external_lex_state = 21}, + [1336] = {.lex_state = 193, .external_lex_state = 23}, + [1337] = {.lex_state = 425, .external_lex_state = 8}, + [1338] = {.lex_state = 429, .external_lex_state = 21}, + [1339] = {.lex_state = 157, .external_lex_state = 10}, + [1340] = {.lex_state = 193, .external_lex_state = 23}, + [1341] = {.lex_state = 423, .external_lex_state = 10}, + [1342] = {.lex_state = 430, .external_lex_state = 19}, + [1343] = {.lex_state = 430, .external_lex_state = 19}, + [1344] = {.lex_state = 430, .external_lex_state = 19}, + [1345] = {.lex_state = 430, .external_lex_state = 19}, + [1346] = {.lex_state = 430, .external_lex_state = 19}, + [1347] = {.lex_state = 430, .external_lex_state = 19}, + [1348] = {.lex_state = 193, .external_lex_state = 23}, + [1349] = {.lex_state = 193, .external_lex_state = 23}, + [1350] = {.lex_state = 193, .external_lex_state = 23}, + [1351] = {.lex_state = 425, .external_lex_state = 8}, + [1352] = {.lex_state = 425, .external_lex_state = 8}, + [1353] = {.lex_state = 430, .external_lex_state = 19}, + [1354] = {.lex_state = 193, .external_lex_state = 23}, + [1355] = {.lex_state = 193, .external_lex_state = 23}, + [1356] = {.lex_state = 193, .external_lex_state = 23}, + [1357] = {.lex_state = 193, .external_lex_state = 23}, + [1358] = {.lex_state = 193, .external_lex_state = 23}, + [1359] = {.lex_state = 423, .external_lex_state = 10}, + [1360] = {.lex_state = 425, .external_lex_state = 8}, + [1361] = {.lex_state = 430, .external_lex_state = 19}, + [1362] = {.lex_state = 162, .external_lex_state = 10}, + [1363] = {.lex_state = 423, .external_lex_state = 11}, + [1364] = {.lex_state = 162, .external_lex_state = 10}, + [1365] = {.lex_state = 423, .external_lex_state = 10}, + [1366] = {.lex_state = 423, .external_lex_state = 11}, + [1367] = {.lex_state = 162, .external_lex_state = 10}, + [1368] = {.lex_state = 168, .external_lex_state = 3}, + [1369] = {.lex_state = 168, .external_lex_state = 3}, + [1370] = {.lex_state = 212, .external_lex_state = 24}, + [1371] = {.lex_state = 157, .external_lex_state = 11}, + [1372] = {.lex_state = 162, .external_lex_state = 10}, + [1373] = {.lex_state = 162, .external_lex_state = 10}, + [1374] = {.lex_state = 162, .external_lex_state = 11}, + [1375] = {.lex_state = 211, .external_lex_state = 24}, + [1376] = {.lex_state = 430, .external_lex_state = 21}, + [1377] = {.lex_state = 430, .external_lex_state = 21}, + [1378] = {.lex_state = 423, .external_lex_state = 10}, + [1379] = {.lex_state = 427, .external_lex_state = 10}, + [1380] = {.lex_state = 237, .external_lex_state = 25}, + [1381] = {.lex_state = 430, .external_lex_state = 21}, + [1382] = {.lex_state = 430, .external_lex_state = 21}, + [1383] = {.lex_state = 162, .external_lex_state = 10}, + [1384] = {.lex_state = 430, .external_lex_state = 21}, + [1385] = {.lex_state = 427, .external_lex_state = 10}, + [1386] = {.lex_state = 430, .external_lex_state = 21}, + [1387] = {.lex_state = 147, .external_lex_state = 11}, + [1388] = {.lex_state = 430, .external_lex_state = 21}, + [1389] = {.lex_state = 430, .external_lex_state = 21}, + [1390] = {.lex_state = 430, .external_lex_state = 21}, + [1391] = {.lex_state = 430, .external_lex_state = 21}, + [1392] = {.lex_state = 430, .external_lex_state = 21}, + [1393] = {.lex_state = 430, .external_lex_state = 21}, + [1394] = {.lex_state = 168, .external_lex_state = 3}, + [1395] = {.lex_state = 423, .external_lex_state = 10}, + [1396] = {.lex_state = 430, .external_lex_state = 21}, + [1397] = {.lex_state = 162, .external_lex_state = 11}, + [1398] = {.lex_state = 423, .external_lex_state = 10}, + [1399] = {.lex_state = 430, .external_lex_state = 21}, + [1400] = {.lex_state = 430, .external_lex_state = 21}, + [1401] = {.lex_state = 430, .external_lex_state = 21}, + [1402] = {.lex_state = 430, .external_lex_state = 21}, + [1403] = {.lex_state = 423, .external_lex_state = 10}, + [1404] = {.lex_state = 430, .external_lex_state = 21}, + [1405] = {.lex_state = 430, .external_lex_state = 21}, + [1406] = {.lex_state = 168, .external_lex_state = 3}, + [1407] = {.lex_state = 430, .external_lex_state = 21}, + [1408] = {.lex_state = 430, .external_lex_state = 21}, + [1409] = {.lex_state = 430, .external_lex_state = 21}, + [1410] = {.lex_state = 430, .external_lex_state = 21}, + [1411] = {.lex_state = 430, .external_lex_state = 21}, + [1412] = {.lex_state = 423, .external_lex_state = 10}, + [1413] = {.lex_state = 430, .external_lex_state = 21}, + [1414] = {.lex_state = 430, .external_lex_state = 21}, + [1415] = {.lex_state = 430, .external_lex_state = 21}, + [1416] = {.lex_state = 430, .external_lex_state = 21}, + [1417] = {.lex_state = 430, .external_lex_state = 21}, + [1418] = {.lex_state = 430, .external_lex_state = 21}, + [1419] = {.lex_state = 430, .external_lex_state = 21}, + [1420] = {.lex_state = 427, .external_lex_state = 10}, + [1421] = {.lex_state = 430, .external_lex_state = 21}, + [1422] = {.lex_state = 427, .external_lex_state = 10}, + [1423] = {.lex_state = 168, .external_lex_state = 3}, + [1424] = {.lex_state = 168, .external_lex_state = 3}, + [1425] = {.lex_state = 430, .external_lex_state = 21}, + [1426] = {.lex_state = 430, .external_lex_state = 21}, + [1427] = {.lex_state = 423, .external_lex_state = 11}, + [1428] = {.lex_state = 430, .external_lex_state = 21}, + [1429] = {.lex_state = 168, .external_lex_state = 3}, + [1430] = {.lex_state = 423, .external_lex_state = 10}, + [1431] = {.lex_state = 168, .external_lex_state = 3}, + [1432] = {.lex_state = 430, .external_lex_state = 21}, + [1433] = {.lex_state = 430, .external_lex_state = 21}, + [1434] = {.lex_state = 427, .external_lex_state = 10}, + [1435] = {.lex_state = 427, .external_lex_state = 10}, + [1436] = {.lex_state = 168, .external_lex_state = 3}, + [1437] = {.lex_state = 423, .external_lex_state = 11}, + [1438] = {.lex_state = 423, .external_lex_state = 10}, + [1439] = {.lex_state = 430, .external_lex_state = 21}, + [1440] = {.lex_state = 430, .external_lex_state = 21}, + [1441] = {.lex_state = 430, .external_lex_state = 21}, + [1442] = {.lex_state = 430, .external_lex_state = 21}, + [1443] = {.lex_state = 218, .external_lex_state = 18}, + [1444] = {.lex_state = 427, .external_lex_state = 10}, + [1445] = {.lex_state = 427, .external_lex_state = 10}, + [1446] = {.lex_state = 427, .external_lex_state = 10}, + [1447] = {.lex_state = 427, .external_lex_state = 11}, + [1448] = {.lex_state = 427, .external_lex_state = 10}, + [1449] = {.lex_state = 427, .external_lex_state = 11}, + [1450] = {.lex_state = 427, .external_lex_state = 10}, + [1451] = {.lex_state = 427, .external_lex_state = 10}, + [1452] = {.lex_state = 211, .external_lex_state = 24}, + [1453] = {.lex_state = 427, .external_lex_state = 10}, + [1454] = {.lex_state = 423, .external_lex_state = 11}, + [1455] = {.lex_state = 427, .external_lex_state = 10}, + [1456] = {.lex_state = 173, .external_lex_state = 19}, + [1457] = {.lex_state = 173, .external_lex_state = 19}, + [1458] = {.lex_state = 427, .external_lex_state = 11}, + [1459] = {.lex_state = 427, .external_lex_state = 10}, + [1460] = {.lex_state = 427, .external_lex_state = 10}, + [1461] = {.lex_state = 427, .external_lex_state = 10}, + [1462] = {.lex_state = 427, .external_lex_state = 10}, + [1463] = {.lex_state = 427, .external_lex_state = 10}, + [1464] = {.lex_state = 427, .external_lex_state = 10}, + [1465] = {.lex_state = 427, .external_lex_state = 10}, + [1466] = {.lex_state = 427, .external_lex_state = 10}, + [1467] = {.lex_state = 212, .external_lex_state = 24}, + [1468] = {.lex_state = 427, .external_lex_state = 10}, + [1469] = {.lex_state = 427, .external_lex_state = 10}, + [1470] = {.lex_state = 427, .external_lex_state = 10}, + [1471] = {.lex_state = 427, .external_lex_state = 11}, + [1472] = {.lex_state = 427, .external_lex_state = 10}, + [1473] = {.lex_state = 427, .external_lex_state = 10}, + [1474] = {.lex_state = 212, .external_lex_state = 24}, + [1475] = {.lex_state = 427, .external_lex_state = 10}, + [1476] = {.lex_state = 427, .external_lex_state = 10}, + [1477] = {.lex_state = 427, .external_lex_state = 10}, + [1478] = {.lex_state = 427, .external_lex_state = 10}, + [1479] = {.lex_state = 212, .external_lex_state = 24}, + [1480] = {.lex_state = 162, .external_lex_state = 11}, + [1481] = {.lex_state = 212, .external_lex_state = 24}, + [1482] = {.lex_state = 427, .external_lex_state = 10}, + [1483] = {.lex_state = 427, .external_lex_state = 10}, + [1484] = {.lex_state = 427, .external_lex_state = 10}, + [1485] = {.lex_state = 212, .external_lex_state = 24}, + [1486] = {.lex_state = 212, .external_lex_state = 24}, + [1487] = {.lex_state = 214, .external_lex_state = 24}, + [1488] = {.lex_state = 211, .external_lex_state = 24}, + [1489] = {.lex_state = 211, .external_lex_state = 24}, + [1490] = {.lex_state = 427, .external_lex_state = 10}, + [1491] = {.lex_state = 212, .external_lex_state = 24}, + [1492] = {.lex_state = 427, .external_lex_state = 10}, + [1493] = {.lex_state = 212, .external_lex_state = 24}, + [1494] = {.lex_state = 427, .external_lex_state = 10}, + [1495] = {.lex_state = 427, .external_lex_state = 10}, + [1496] = {.lex_state = 427, .external_lex_state = 10}, + [1497] = {.lex_state = 427, .external_lex_state = 10}, + [1498] = {.lex_state = 212, .external_lex_state = 24}, + [1499] = {.lex_state = 427, .external_lex_state = 10}, + [1500] = {.lex_state = 237, .external_lex_state = 25}, + [1501] = {.lex_state = 427, .external_lex_state = 10}, + [1502] = {.lex_state = 427, .external_lex_state = 10}, + [1503] = {.lex_state = 237, .external_lex_state = 25}, + [1504] = {.lex_state = 237, .external_lex_state = 25}, + [1505] = {.lex_state = 237, .external_lex_state = 25}, + [1506] = {.lex_state = 237, .external_lex_state = 25}, + [1507] = {.lex_state = 218, .external_lex_state = 18}, + [1508] = {.lex_state = 427, .external_lex_state = 10}, + [1509] = {.lex_state = 237, .external_lex_state = 25}, + [1510] = {.lex_state = 427, .external_lex_state = 10}, + [1511] = {.lex_state = 427, .external_lex_state = 10}, + [1512] = {.lex_state = 427, .external_lex_state = 10}, + [1513] = {.lex_state = 211, .external_lex_state = 24}, + [1514] = {.lex_state = 427, .external_lex_state = 10}, + [1515] = {.lex_state = 427, .external_lex_state = 10}, + [1516] = {.lex_state = 427, .external_lex_state = 10}, + [1517] = {.lex_state = 212, .external_lex_state = 24}, + [1518] = {.lex_state = 427, .external_lex_state = 10}, + [1519] = {.lex_state = 212, .external_lex_state = 24}, + [1520] = {.lex_state = 234, .external_lex_state = 2}, + [1521] = {.lex_state = 211, .external_lex_state = 24}, + [1522] = {.lex_state = 427, .external_lex_state = 10}, + [1523] = {.lex_state = 211, .external_lex_state = 24}, + [1524] = {.lex_state = 237, .external_lex_state = 25}, + [1525] = {.lex_state = 237, .external_lex_state = 25}, + [1526] = {.lex_state = 212, .external_lex_state = 24}, + [1527] = {.lex_state = 427, .external_lex_state = 10}, + [1528] = {.lex_state = 234, .external_lex_state = 2}, + [1529] = {.lex_state = 427, .external_lex_state = 10}, + [1530] = {.lex_state = 234, .external_lex_state = 2}, + [1531] = {.lex_state = 427, .external_lex_state = 10}, + [1532] = {.lex_state = 212, .external_lex_state = 24}, + [1533] = {.lex_state = 212, .external_lex_state = 24}, + [1534] = {.lex_state = 427, .external_lex_state = 10}, + [1535] = {.lex_state = 212, .external_lex_state = 24}, + [1536] = {.lex_state = 427, .external_lex_state = 10}, + [1537] = {.lex_state = 427, .external_lex_state = 10}, + [1538] = {.lex_state = 173, .external_lex_state = 19}, + [1539] = {.lex_state = 173, .external_lex_state = 19}, + [1540] = {.lex_state = 212, .external_lex_state = 24}, + [1541] = {.lex_state = 427, .external_lex_state = 10}, + [1542] = {.lex_state = 237, .external_lex_state = 25}, + [1543] = {.lex_state = 237, .external_lex_state = 25}, + [1544] = {.lex_state = 173, .external_lex_state = 19}, + [1545] = {.lex_state = 173, .external_lex_state = 19}, + [1546] = {.lex_state = 427, .external_lex_state = 10}, + [1547] = {.lex_state = 173, .external_lex_state = 19}, + [1548] = {.lex_state = 427, .external_lex_state = 10}, + [1549] = {.lex_state = 427, .external_lex_state = 10}, + [1550] = {.lex_state = 427, .external_lex_state = 10}, + [1551] = {.lex_state = 427, .external_lex_state = 10}, + [1552] = {.lex_state = 212, .external_lex_state = 24}, + [1553] = {.lex_state = 212, .external_lex_state = 24}, + [1554] = {.lex_state = 423, .external_lex_state = 11}, + [1555] = {.lex_state = 427, .external_lex_state = 10}, + [1556] = {.lex_state = 427, .external_lex_state = 10}, + [1557] = {.lex_state = 427, .external_lex_state = 10}, + [1558] = {.lex_state = 427, .external_lex_state = 10}, + [1559] = {.lex_state = 427, .external_lex_state = 10}, + [1560] = {.lex_state = 212, .external_lex_state = 24}, + [1561] = {.lex_state = 427, .external_lex_state = 10}, + [1562] = {.lex_state = 427, .external_lex_state = 10}, + [1563] = {.lex_state = 178, .external_lex_state = 26}, + [1564] = {.lex_state = 182, .external_lex_state = 2}, + [1565] = {.lex_state = 175, .external_lex_state = 19}, + [1566] = {.lex_state = 237, .external_lex_state = 25}, + [1567] = {.lex_state = 211, .external_lex_state = 24}, + [1568] = {.lex_state = 211, .external_lex_state = 24}, + [1569] = {.lex_state = 218, .external_lex_state = 18}, + [1570] = {.lex_state = 218, .external_lex_state = 18}, + [1571] = {.lex_state = 237, .external_lex_state = 25}, + [1572] = {.lex_state = 178, .external_lex_state = 26}, + [1573] = {.lex_state = 218, .external_lex_state = 18}, + [1574] = {.lex_state = 211, .external_lex_state = 24}, + [1575] = {.lex_state = 211, .external_lex_state = 24}, + [1576] = {.lex_state = 175, .external_lex_state = 19}, + [1577] = {.lex_state = 243, .external_lex_state = 27}, + [1578] = {.lex_state = 243, .external_lex_state = 27}, + [1579] = {.lex_state = 218, .external_lex_state = 18}, + [1580] = {.lex_state = 427, .external_lex_state = 10}, + [1581] = {.lex_state = 237, .external_lex_state = 25}, + [1582] = {.lex_state = 241, .external_lex_state = 28}, + [1583] = {.lex_state = 241, .external_lex_state = 28}, + [1584] = {.lex_state = 211, .external_lex_state = 24}, + [1585] = {.lex_state = 427, .external_lex_state = 10}, + [1586] = {.lex_state = 237, .external_lex_state = 25}, + [1587] = {.lex_state = 211, .external_lex_state = 24}, + [1588] = {.lex_state = 237, .external_lex_state = 25}, + [1589] = {.lex_state = 243, .external_lex_state = 27}, + [1590] = {.lex_state = 211, .external_lex_state = 16}, + [1591] = {.lex_state = 237, .external_lex_state = 25}, + [1592] = {.lex_state = 211, .external_lex_state = 24}, + [1593] = {.lex_state = 218, .external_lex_state = 18}, + [1594] = {.lex_state = 427, .external_lex_state = 11}, + [1595] = {.lex_state = 211, .external_lex_state = 24}, + [1596] = {.lex_state = 237, .external_lex_state = 25}, + [1597] = {.lex_state = 218, .external_lex_state = 18}, + [1598] = {.lex_state = 218, .external_lex_state = 18}, + [1599] = {.lex_state = 212, .external_lex_state = 24}, + [1600] = {.lex_state = 237, .external_lex_state = 25}, + [1601] = {.lex_state = 218, .external_lex_state = 18}, + [1602] = {.lex_state = 214, .external_lex_state = 16}, + [1603] = {.lex_state = 243, .external_lex_state = 27}, + [1604] = {.lex_state = 218, .external_lex_state = 18}, + [1605] = {.lex_state = 211, .external_lex_state = 24}, + [1606] = {.lex_state = 211, .external_lex_state = 24}, + [1607] = {.lex_state = 243, .external_lex_state = 27}, + [1608] = {.lex_state = 243, .external_lex_state = 27}, + [1609] = {.lex_state = 212, .external_lex_state = 24}, + [1610] = {.lex_state = 175, .external_lex_state = 19}, + [1611] = {.lex_state = 212, .external_lex_state = 24}, + [1612] = {.lex_state = 175, .external_lex_state = 19}, + [1613] = {.lex_state = 211, .external_lex_state = 24}, + [1614] = {.lex_state = 214, .external_lex_state = 16}, + [1615] = {.lex_state = 211, .external_lex_state = 24}, + [1616] = {.lex_state = 212, .external_lex_state = 24}, + [1617] = {.lex_state = 243, .external_lex_state = 27}, + [1618] = {.lex_state = 178, .external_lex_state = 26}, + [1619] = {.lex_state = 178, .external_lex_state = 26}, + [1620] = {.lex_state = 210, .external_lex_state = 16}, + [1621] = {.lex_state = 212, .external_lex_state = 24}, + [1622] = {.lex_state = 178, .external_lex_state = 26}, + [1623] = {.lex_state = 178, .external_lex_state = 26}, + [1624] = {.lex_state = 218, .external_lex_state = 18}, + [1625] = {.lex_state = 218, .external_lex_state = 18}, + [1626] = {.lex_state = 218, .external_lex_state = 18}, + [1627] = {.lex_state = 182, .external_lex_state = 2}, + [1628] = {.lex_state = 218, .external_lex_state = 18}, + [1629] = {.lex_state = 212, .external_lex_state = 24}, + [1630] = {.lex_state = 178, .external_lex_state = 26}, + [1631] = {.lex_state = 237, .external_lex_state = 25}, + [1632] = {.lex_state = 210, .external_lex_state = 16}, + [1633] = {.lex_state = 210, .external_lex_state = 16}, + [1634] = {.lex_state = 178, .external_lex_state = 26}, + [1635] = {.lex_state = 237, .external_lex_state = 25}, + [1636] = {.lex_state = 241, .external_lex_state = 28}, + [1637] = {.lex_state = 211, .external_lex_state = 24}, + [1638] = {.lex_state = 218, .external_lex_state = 18}, + [1639] = {.lex_state = 427, .external_lex_state = 11}, + [1640] = {.lex_state = 210, .external_lex_state = 16}, + [1641] = {.lex_state = 210, .external_lex_state = 16}, + [1642] = {.lex_state = 211, .external_lex_state = 24}, + [1643] = {.lex_state = 175, .external_lex_state = 19}, + [1644] = {.lex_state = 211, .external_lex_state = 24}, + [1645] = {.lex_state = 211, .external_lex_state = 24}, + [1646] = {.lex_state = 237, .external_lex_state = 25}, + [1647] = {.lex_state = 241, .external_lex_state = 28}, + [1648] = {.lex_state = 218, .external_lex_state = 18}, + [1649] = {.lex_state = 241, .external_lex_state = 28}, + [1650] = {.lex_state = 218, .external_lex_state = 18}, + [1651] = {.lex_state = 237, .external_lex_state = 25}, + [1652] = {.lex_state = 218, .external_lex_state = 18}, + [1653] = {.lex_state = 211, .external_lex_state = 16}, + [1654] = {.lex_state = 218, .external_lex_state = 18}, + [1655] = {.lex_state = 237, .external_lex_state = 25}, + [1656] = {.lex_state = 243, .external_lex_state = 27}, + [1657] = {.lex_state = 178, .external_lex_state = 26}, + [1658] = {.lex_state = 178, .external_lex_state = 26}, + [1659] = {.lex_state = 241, .external_lex_state = 28}, + [1660] = {.lex_state = 237, .external_lex_state = 25}, + [1661] = {.lex_state = 178, .external_lex_state = 26}, + [1662] = {.lex_state = 211, .external_lex_state = 24}, + [1663] = {.lex_state = 211, .external_lex_state = 24}, + [1664] = {.lex_state = 237, .external_lex_state = 25}, + [1665] = {.lex_state = 212, .external_lex_state = 24}, + [1666] = {.lex_state = 173, .external_lex_state = 21}, + [1667] = {.lex_state = 211, .external_lex_state = 24}, + [1668] = {.lex_state = 218, .external_lex_state = 18}, + [1669] = {.lex_state = 173, .external_lex_state = 21}, + [1670] = {.lex_state = 178, .external_lex_state = 26}, + [1671] = {.lex_state = 175, .external_lex_state = 19}, + [1672] = {.lex_state = 175, .external_lex_state = 19}, + [1673] = {.lex_state = 237, .external_lex_state = 25}, + [1674] = {.lex_state = 173, .external_lex_state = 21}, + [1675] = {.lex_state = 212, .external_lex_state = 24}, + [1676] = {.lex_state = 237, .external_lex_state = 25}, + [1677] = {.lex_state = 212, .external_lex_state = 24}, + [1678] = {.lex_state = 237, .external_lex_state = 25}, + [1679] = {.lex_state = 211, .external_lex_state = 24}, + [1680] = {.lex_state = 173, .external_lex_state = 21}, + [1681] = {.lex_state = 173, .external_lex_state = 21}, + [1682] = {.lex_state = 211, .external_lex_state = 24}, + [1683] = {.lex_state = 211, .external_lex_state = 24}, + [1684] = {.lex_state = 212, .external_lex_state = 16}, + [1685] = {.lex_state = 239, .external_lex_state = 13}, + [1686] = {.lex_state = 218, .external_lex_state = 18}, + [1687] = {.lex_state = 238, .external_lex_state = 27}, + [1688] = {.lex_state = 175, .external_lex_state = 21}, + [1689] = {.lex_state = 241, .external_lex_state = 28}, + [1690] = {.lex_state = 175, .external_lex_state = 21}, + [1691] = {.lex_state = 218, .external_lex_state = 20}, + [1692] = {.lex_state = 241, .external_lex_state = 28}, + [1693] = {.lex_state = 217, .external_lex_state = 24}, + [1694] = {.lex_state = 241, .external_lex_state = 29}, + [1695] = {.lex_state = 218, .external_lex_state = 18}, + [1696] = {.lex_state = 238, .external_lex_state = 27}, + [1697] = {.lex_state = 218, .external_lex_state = 18}, + [1698] = {.lex_state = 218, .external_lex_state = 18}, + [1699] = {.lex_state = 212, .external_lex_state = 24}, + [1700] = {.lex_state = 241, .external_lex_state = 28}, + [1701] = {.lex_state = 241, .external_lex_state = 28}, + [1702] = {.lex_state = 243, .external_lex_state = 27}, + [1703] = {.lex_state = 212, .external_lex_state = 24}, + [1704] = {.lex_state = 243, .external_lex_state = 27}, + [1705] = {.lex_state = 218, .external_lex_state = 18}, + [1706] = {.lex_state = 217, .external_lex_state = 24}, + [1707] = {.lex_state = 243, .external_lex_state = 27}, + [1708] = {.lex_state = 243, .external_lex_state = 27}, + [1709] = {.lex_state = 241, .external_lex_state = 29}, + [1710] = {.lex_state = 241, .external_lex_state = 28}, + [1711] = {.lex_state = 239, .external_lex_state = 13}, + [1712] = {.lex_state = 241, .external_lex_state = 28}, + [1713] = {.lex_state = 218, .external_lex_state = 20}, + [1714] = {.lex_state = 238, .external_lex_state = 27}, + [1715] = {.lex_state = 241, .external_lex_state = 28}, + [1716] = {.lex_state = 243, .external_lex_state = 27}, + [1717] = {.lex_state = 243, .external_lex_state = 30}, + [1718] = {.lex_state = 238, .external_lex_state = 27}, + [1719] = {.lex_state = 218, .external_lex_state = 18}, + [1720] = {.lex_state = 243, .external_lex_state = 27}, + [1721] = {.lex_state = 241, .external_lex_state = 28}, + [1722] = {.lex_state = 241, .external_lex_state = 28}, + [1723] = {.lex_state = 243, .external_lex_state = 27}, + [1724] = {.lex_state = 243, .external_lex_state = 27}, + [1725] = {.lex_state = 241, .external_lex_state = 29}, + [1726] = {.lex_state = 241, .external_lex_state = 29}, + [1727] = {.lex_state = 243, .external_lex_state = 30}, + [1728] = {.lex_state = 218, .external_lex_state = 18}, + [1729] = {.lex_state = 217, .external_lex_state = 16}, + [1730] = {.lex_state = 241, .external_lex_state = 28}, + [1731] = {.lex_state = 238, .external_lex_state = 27}, + [1732] = {.lex_state = 175, .external_lex_state = 21}, + [1733] = {.lex_state = 218, .external_lex_state = 18}, + [1734] = {.lex_state = 218, .external_lex_state = 18}, + [1735] = {.lex_state = 241, .external_lex_state = 29}, + [1736] = {.lex_state = 238, .external_lex_state = 27}, + [1737] = {.lex_state = 241, .external_lex_state = 28}, + [1738] = {.lex_state = 243, .external_lex_state = 27}, + [1739] = {.lex_state = 243, .external_lex_state = 27}, + [1740] = {.lex_state = 243, .external_lex_state = 27}, + [1741] = {.lex_state = 239, .external_lex_state = 13}, + [1742] = {.lex_state = 212, .external_lex_state = 16}, + [1743] = {.lex_state = 239, .external_lex_state = 13}, + [1744] = {.lex_state = 241, .external_lex_state = 28}, + [1745] = {.lex_state = 243, .external_lex_state = 27}, + [1746] = {.lex_state = 238, .external_lex_state = 27}, + [1747] = {.lex_state = 214, .external_lex_state = 16}, + [1748] = {.lex_state = 218, .external_lex_state = 18}, + [1749] = {.lex_state = 241, .external_lex_state = 28}, + [1750] = {.lex_state = 241, .external_lex_state = 28}, + [1751] = {.lex_state = 243, .external_lex_state = 30}, + [1752] = {.lex_state = 243, .external_lex_state = 30}, + [1753] = {.lex_state = 218, .external_lex_state = 18}, + [1754] = {.lex_state = 243, .external_lex_state = 27}, + [1755] = {.lex_state = 241, .external_lex_state = 28}, + [1756] = {.lex_state = 243, .external_lex_state = 30}, + [1757] = {.lex_state = 243, .external_lex_state = 27}, + [1758] = {.lex_state = 175, .external_lex_state = 21}, + [1759] = {.lex_state = 218, .external_lex_state = 18}, + [1760] = {.lex_state = 175, .external_lex_state = 21}, + [1761] = {.lex_state = 241, .external_lex_state = 28}, + [1762] = {.lex_state = 241, .external_lex_state = 28}, + [1763] = {.lex_state = 241, .external_lex_state = 28}, + [1764] = {.lex_state = 218, .external_lex_state = 18}, + [1765] = {.lex_state = 217, .external_lex_state = 24}, + [1766] = {.lex_state = 217, .external_lex_state = 24}, + [1767] = {.lex_state = 212, .external_lex_state = 24}, + [1768] = {.lex_state = 218, .external_lex_state = 18}, + [1769] = {.lex_state = 211, .external_lex_state = 16}, + [1770] = {.lex_state = 243, .external_lex_state = 27}, + [1771] = {.lex_state = 218, .external_lex_state = 18}, + [1772] = {.lex_state = 243, .external_lex_state = 27}, + [1773] = {.lex_state = 218, .external_lex_state = 18}, + [1774] = {.lex_state = 218, .external_lex_state = 18}, + [1775] = {.lex_state = 218, .external_lex_state = 18}, + [1776] = {.lex_state = 238, .external_lex_state = 27}, + [1777] = {.lex_state = 243, .external_lex_state = 30}, + [1778] = {.lex_state = 218, .external_lex_state = 18}, + [1779] = {.lex_state = 243, .external_lex_state = 27}, + [1780] = {.lex_state = 243, .external_lex_state = 27}, + [1781] = {.lex_state = 241, .external_lex_state = 29}, + [1782] = {.lex_state = 238, .external_lex_state = 27}, + [1783] = {.lex_state = 238, .external_lex_state = 27}, + [1784] = {.lex_state = 217, .external_lex_state = 16}, + [1785] = {.lex_state = 241, .external_lex_state = 29}, + [1786] = {.lex_state = 238, .external_lex_state = 27}, + [1787] = {.lex_state = 217, .external_lex_state = 16}, + [1788] = {.lex_state = 211, .external_lex_state = 16}, + [1789] = {.lex_state = 238, .external_lex_state = 27}, + [1790] = {.lex_state = 239, .external_lex_state = 13}, + [1791] = {.lex_state = 238, .external_lex_state = 30}, + [1792] = {.lex_state = 238, .external_lex_state = 27}, + [1793] = {.lex_state = 242, .external_lex_state = 12}, + [1794] = {.lex_state = 238, .external_lex_state = 27}, + [1795] = {.lex_state = 218, .external_lex_state = 18}, + [1796] = {.lex_state = 217, .external_lex_state = 16}, + [1797] = {.lex_state = 217, .external_lex_state = 16}, + [1798] = {.lex_state = 211, .external_lex_state = 16}, + [1799] = {.lex_state = 242, .external_lex_state = 12}, + [1800] = {.lex_state = 238, .external_lex_state = 27}, + [1801] = {.lex_state = 217, .external_lex_state = 16}, + [1802] = {.lex_state = 239, .external_lex_state = 13}, + [1803] = {.lex_state = 217, .external_lex_state = 16}, + [1804] = {.lex_state = 217, .external_lex_state = 16}, + [1805] = {.lex_state = 243, .external_lex_state = 30}, + [1806] = {.lex_state = 217, .external_lex_state = 16}, + [1807] = {.lex_state = 217, .external_lex_state = 16}, + [1808] = {.lex_state = 243, .external_lex_state = 30}, + [1809] = {.lex_state = 243, .external_lex_state = 30}, + [1810] = {.lex_state = 218, .external_lex_state = 18}, + [1811] = {.lex_state = 240, .external_lex_state = 14}, + [1812] = {.lex_state = 217, .external_lex_state = 16}, + [1813] = {.lex_state = 217, .external_lex_state = 16}, + [1814] = {.lex_state = 211, .external_lex_state = 16}, + [1815] = {.lex_state = 241, .external_lex_state = 29}, + [1816] = {.lex_state = 243, .external_lex_state = 30}, + [1817] = {.lex_state = 241, .external_lex_state = 29}, + [1818] = {.lex_state = 217, .external_lex_state = 16}, + [1819] = {.lex_state = 217, .external_lex_state = 16}, + [1820] = {.lex_state = 218, .external_lex_state = 18}, + [1821] = {.lex_state = 243, .external_lex_state = 30}, + [1822] = {.lex_state = 241, .external_lex_state = 29}, + [1823] = {.lex_state = 242, .external_lex_state = 12}, + [1824] = {.lex_state = 218, .external_lex_state = 18}, + [1825] = {.lex_state = 238, .external_lex_state = 27}, + [1826] = {.lex_state = 217, .external_lex_state = 16}, + [1827] = {.lex_state = 218, .external_lex_state = 18}, + [1828] = {.lex_state = 243, .external_lex_state = 30}, + [1829] = {.lex_state = 241, .external_lex_state = 29}, + [1830] = {.lex_state = 217, .external_lex_state = 16}, + [1831] = {.lex_state = 217, .external_lex_state = 16}, + [1832] = {.lex_state = 218, .external_lex_state = 20}, + [1833] = {.lex_state = 217, .external_lex_state = 16}, + [1834] = {.lex_state = 243, .external_lex_state = 30}, + [1835] = {.lex_state = 217, .external_lex_state = 16}, + [1836] = {.lex_state = 238, .external_lex_state = 27}, + [1837] = {.lex_state = 217, .external_lex_state = 16}, + [1838] = {.lex_state = 239, .external_lex_state = 13}, + [1839] = {.lex_state = 243, .external_lex_state = 30}, + [1840] = {.lex_state = 218, .external_lex_state = 18}, + [1841] = {.lex_state = 238, .external_lex_state = 30}, + [1842] = {.lex_state = 238, .external_lex_state = 30}, + [1843] = {.lex_state = 217, .external_lex_state = 16}, + [1844] = {.lex_state = 217, .external_lex_state = 16}, + [1845] = {.lex_state = 243, .external_lex_state = 30}, + [1846] = {.lex_state = 217, .external_lex_state = 16}, + [1847] = {.lex_state = 243, .external_lex_state = 30}, + [1848] = {.lex_state = 241, .external_lex_state = 29}, + [1849] = {.lex_state = 217, .external_lex_state = 16}, + [1850] = {.lex_state = 59, .external_lex_state = 31}, + [1851] = {.lex_state = 59, .external_lex_state = 31}, + [1852] = {.lex_state = 217, .external_lex_state = 16}, + [1853] = {.lex_state = 217, .external_lex_state = 16}, + [1854] = {.lex_state = 217, .external_lex_state = 16}, + [1855] = {.lex_state = 218, .external_lex_state = 18}, + [1856] = {.lex_state = 217, .external_lex_state = 16}, + [1857] = {.lex_state = 217, .external_lex_state = 16}, + [1858] = {.lex_state = 217, .external_lex_state = 16}, + [1859] = {.lex_state = 217, .external_lex_state = 16}, + [1860] = {.lex_state = 239, .external_lex_state = 13}, + [1861] = {.lex_state = 218, .external_lex_state = 18}, + [1862] = {.lex_state = 218, .external_lex_state = 18}, + [1863] = {.lex_state = 241, .external_lex_state = 29}, + [1864] = {.lex_state = 238, .external_lex_state = 27}, + [1865] = {.lex_state = 217, .external_lex_state = 16}, + [1866] = {.lex_state = 218, .external_lex_state = 18}, + [1867] = {.lex_state = 217, .external_lex_state = 16}, + [1868] = {.lex_state = 217, .external_lex_state = 16}, + [1869] = {.lex_state = 217, .external_lex_state = 16}, + [1870] = {.lex_state = 217, .external_lex_state = 16}, + [1871] = {.lex_state = 241, .external_lex_state = 29}, + [1872] = {.lex_state = 217, .external_lex_state = 16}, + [1873] = {.lex_state = 217, .external_lex_state = 16}, + [1874] = {.lex_state = 217, .external_lex_state = 16}, + [1875] = {.lex_state = 241, .external_lex_state = 29}, + [1876] = {.lex_state = 217, .external_lex_state = 16}, + [1877] = {.lex_state = 241, .external_lex_state = 29}, + [1878] = {.lex_state = 241, .external_lex_state = 29}, + [1879] = {.lex_state = 243, .external_lex_state = 30}, + [1880] = {.lex_state = 217, .external_lex_state = 16}, + [1881] = {.lex_state = 238, .external_lex_state = 27}, + [1882] = {.lex_state = 238, .external_lex_state = 30}, + [1883] = {.lex_state = 217, .external_lex_state = 16}, + [1884] = {.lex_state = 212, .external_lex_state = 16}, + [1885] = {.lex_state = 217, .external_lex_state = 16}, + [1886] = {.lex_state = 243, .external_lex_state = 30}, + [1887] = {.lex_state = 238, .external_lex_state = 27}, + [1888] = {.lex_state = 211, .external_lex_state = 16}, + [1889] = {.lex_state = 217, .external_lex_state = 16}, + [1890] = {.lex_state = 217, .external_lex_state = 16}, + [1891] = {.lex_state = 241, .external_lex_state = 29}, + [1892] = {.lex_state = 217, .external_lex_state = 16}, + [1893] = {.lex_state = 217, .external_lex_state = 16}, + [1894] = {.lex_state = 238, .external_lex_state = 30}, + [1895] = {.lex_state = 238, .external_lex_state = 30}, + [1896] = {.lex_state = 217, .external_lex_state = 16}, + [1897] = {.lex_state = 217, .external_lex_state = 16}, + [1898] = {.lex_state = 243, .external_lex_state = 30}, + [1899] = {.lex_state = 243, .external_lex_state = 30}, + [1900] = {.lex_state = 217, .external_lex_state = 16}, + [1901] = {.lex_state = 241, .external_lex_state = 29}, + [1902] = {.lex_state = 217, .external_lex_state = 16}, + [1903] = {.lex_state = 238, .external_lex_state = 27}, + [1904] = {.lex_state = 238, .external_lex_state = 27}, + [1905] = {.lex_state = 217, .external_lex_state = 16}, + [1906] = {.lex_state = 217, .external_lex_state = 16}, + [1907] = {.lex_state = 218, .external_lex_state = 18}, + [1908] = {.lex_state = 243, .external_lex_state = 30}, + [1909] = {.lex_state = 243, .external_lex_state = 30}, + [1910] = {.lex_state = 217, .external_lex_state = 16}, + [1911] = {.lex_state = 241, .external_lex_state = 29}, + [1912] = {.lex_state = 217, .external_lex_state = 16}, + [1913] = {.lex_state = 238, .external_lex_state = 27}, + [1914] = {.lex_state = 238, .external_lex_state = 27}, + [1915] = {.lex_state = 243, .external_lex_state = 30}, + [1916] = {.lex_state = 217, .external_lex_state = 16}, + [1917] = {.lex_state = 241, .external_lex_state = 29}, + [1918] = {.lex_state = 217, .external_lex_state = 16}, + [1919] = {.lex_state = 217, .external_lex_state = 16}, + [1920] = {.lex_state = 217, .external_lex_state = 16}, + [1921] = {.lex_state = 243, .external_lex_state = 30}, + [1922] = {.lex_state = 238, .external_lex_state = 27}, + [1923] = {.lex_state = 217, .external_lex_state = 16}, + [1924] = {.lex_state = 217, .external_lex_state = 16}, + [1925] = {.lex_state = 217, .external_lex_state = 16}, + [1926] = {.lex_state = 217, .external_lex_state = 16}, + [1927] = {.lex_state = 217, .external_lex_state = 16}, + [1928] = {.lex_state = 238, .external_lex_state = 27}, + [1929] = {.lex_state = 241, .external_lex_state = 29}, + [1930] = {.lex_state = 240, .external_lex_state = 14}, + [1931] = {.lex_state = 218, .external_lex_state = 18}, + [1932] = {.lex_state = 241, .external_lex_state = 29}, + [1933] = {.lex_state = 241, .external_lex_state = 29}, + [1934] = {.lex_state = 217, .external_lex_state = 16}, + [1935] = {.lex_state = 217, .external_lex_state = 16}, + [1936] = {.lex_state = 211, .external_lex_state = 16}, + [1937] = {.lex_state = 211, .external_lex_state = 16}, + [1938] = {.lex_state = 217, .external_lex_state = 16}, + [1939] = {.lex_state = 217, .external_lex_state = 16}, + [1940] = {.lex_state = 217, .external_lex_state = 16}, + [1941] = {.lex_state = 240, .external_lex_state = 14}, + [1942] = {.lex_state = 212, .external_lex_state = 16}, + [1943] = {.lex_state = 211, .external_lex_state = 16}, + [1944] = {.lex_state = 215, .external_lex_state = 24}, + [1945] = {.lex_state = 212, .external_lex_state = 16}, + [1946] = {.lex_state = 238, .external_lex_state = 30}, + [1947] = {.lex_state = 212, .external_lex_state = 16}, + [1948] = {.lex_state = 218, .external_lex_state = 20}, + [1949] = {.lex_state = 218, .external_lex_state = 20}, + [1950] = {.lex_state = 59, .external_lex_state = 32}, + [1951] = {.lex_state = 218, .external_lex_state = 20}, + [1952] = {.lex_state = 59, .external_lex_state = 32}, + [1953] = {.lex_state = 212, .external_lex_state = 16}, + [1954] = {.lex_state = 212, .external_lex_state = 16}, + [1955] = {.lex_state = 217, .external_lex_state = 16}, + [1956] = {.lex_state = 215, .external_lex_state = 16}, + [1957] = {.lex_state = 212, .external_lex_state = 16}, + [1958] = {.lex_state = 238, .external_lex_state = 30}, + [1959] = {.lex_state = 240, .external_lex_state = 15}, + [1960] = {.lex_state = 238, .external_lex_state = 30}, + [1961] = {.lex_state = 238, .external_lex_state = 30}, + [1962] = {.lex_state = 238, .external_lex_state = 30}, + [1963] = {.lex_state = 215, .external_lex_state = 24}, + [1964] = {.lex_state = 218, .external_lex_state = 20}, + [1965] = {.lex_state = 218, .external_lex_state = 20}, + [1966] = {.lex_state = 218, .external_lex_state = 20}, + [1967] = {.lex_state = 236, .external_lex_state = 12}, + [1968] = {.lex_state = 211, .external_lex_state = 16}, + [1969] = {.lex_state = 212, .external_lex_state = 16}, + [1970] = {.lex_state = 238, .external_lex_state = 30}, + [1971] = {.lex_state = 238, .external_lex_state = 30}, + [1972] = {.lex_state = 212, .external_lex_state = 16}, + [1973] = {.lex_state = 238, .external_lex_state = 30}, + [1974] = {.lex_state = 240, .external_lex_state = 15}, + [1975] = {.lex_state = 238, .external_lex_state = 30}, + [1976] = {.lex_state = 211, .external_lex_state = 16}, + [1977] = {.lex_state = 211, .external_lex_state = 16}, + [1978] = {.lex_state = 236, .external_lex_state = 12}, + [1979] = {.lex_state = 212, .external_lex_state = 16}, + [1980] = {.lex_state = 212, .external_lex_state = 16}, + [1981] = {.lex_state = 212, .external_lex_state = 16}, + [1982] = {.lex_state = 238, .external_lex_state = 30}, + [1983] = {.lex_state = 218, .external_lex_state = 20}, + [1984] = {.lex_state = 211, .external_lex_state = 16}, + [1985] = {.lex_state = 212, .external_lex_state = 16}, + [1986] = {.lex_state = 242, .external_lex_state = 12}, + [1987] = {.lex_state = 212, .external_lex_state = 16}, + [1988] = {.lex_state = 212, .external_lex_state = 16}, + [1989] = {.lex_state = 242, .external_lex_state = 12}, + [1990] = {.lex_state = 238, .external_lex_state = 30}, + [1991] = {.lex_state = 238, .external_lex_state = 30}, + [1992] = {.lex_state = 212, .external_lex_state = 16}, + [1993] = {.lex_state = 212, .external_lex_state = 16}, + [1994] = {.lex_state = 212, .external_lex_state = 16}, + [1995] = {.lex_state = 215, .external_lex_state = 24}, + [1996] = {.lex_state = 218, .external_lex_state = 20}, + [1997] = {.lex_state = 242, .external_lex_state = 17}, + [1998] = {.lex_state = 212, .external_lex_state = 16}, + [1999] = {.lex_state = 218, .external_lex_state = 20}, + [2000] = {.lex_state = 212, .external_lex_state = 16}, + [2001] = {.lex_state = 212, .external_lex_state = 16}, + [2002] = {.lex_state = 212, .external_lex_state = 16}, + [2003] = {.lex_state = 238, .external_lex_state = 30}, + [2004] = {.lex_state = 242, .external_lex_state = 12}, + [2005] = {.lex_state = 212, .external_lex_state = 16}, + [2006] = {.lex_state = 211, .external_lex_state = 16}, + [2007] = {.lex_state = 212, .external_lex_state = 16}, + [2008] = {.lex_state = 238, .external_lex_state = 30}, + [2009] = {.lex_state = 212, .external_lex_state = 16}, + [2010] = {.lex_state = 212, .external_lex_state = 16}, + [2011] = {.lex_state = 240, .external_lex_state = 14}, + [2012] = {.lex_state = 212, .external_lex_state = 16}, + [2013] = {.lex_state = 212, .external_lex_state = 16}, + [2014] = {.lex_state = 141, .external_lex_state = 31}, + [2015] = {.lex_state = 238, .external_lex_state = 30}, + [2016] = {.lex_state = 238, .external_lex_state = 30}, + [2017] = {.lex_state = 141, .external_lex_state = 31}, + [2018] = {.lex_state = 218, .external_lex_state = 20}, + [2019] = {.lex_state = 218, .external_lex_state = 20}, + [2020] = {.lex_state = 212, .external_lex_state = 16}, + [2021] = {.lex_state = 215, .external_lex_state = 24}, + [2022] = {.lex_state = 236, .external_lex_state = 12}, + [2023] = {.lex_state = 238, .external_lex_state = 30}, + [2024] = {.lex_state = 212, .external_lex_state = 16}, + [2025] = {.lex_state = 212, .external_lex_state = 16}, + [2026] = {.lex_state = 242, .external_lex_state = 12}, + [2027] = {.lex_state = 238, .external_lex_state = 30}, + [2028] = {.lex_state = 242, .external_lex_state = 17}, + [2029] = {.lex_state = 244, .external_lex_state = 33}, + [2030] = {.lex_state = 212, .external_lex_state = 16}, + [2031] = {.lex_state = 236, .external_lex_state = 12}, + [2032] = {.lex_state = 145, .external_lex_state = 31}, + [2033] = {.lex_state = 145, .external_lex_state = 31}, + [2034] = {.lex_state = 212, .external_lex_state = 16}, + [2035] = {.lex_state = 215, .external_lex_state = 16}, + [2036] = {.lex_state = 422, .external_lex_state = 31}, + [2037] = {.lex_state = 422, .external_lex_state = 31}, + [2038] = {.lex_state = 215, .external_lex_state = 16}, + [2039] = {.lex_state = 217, .external_lex_state = 16}, + [2040] = {.lex_state = 215, .external_lex_state = 16}, + [2041] = {.lex_state = 153, .external_lex_state = 31}, + [2042] = {.lex_state = 215, .external_lex_state = 16}, + [2043] = {.lex_state = 215, .external_lex_state = 16}, + [2044] = {.lex_state = 212, .external_lex_state = 16}, + [2045] = {.lex_state = 153, .external_lex_state = 31}, + [2046] = {.lex_state = 244, .external_lex_state = 33}, + [2047] = {.lex_state = 215, .external_lex_state = 16}, + [2048] = {.lex_state = 244, .external_lex_state = 33}, + [2049] = {.lex_state = 215, .external_lex_state = 16}, + [2050] = {.lex_state = 215, .external_lex_state = 16}, + [2051] = {.lex_state = 215, .external_lex_state = 16}, + [2052] = {.lex_state = 217, .external_lex_state = 16}, + [2053] = {.lex_state = 244, .external_lex_state = 33}, + [2054] = {.lex_state = 240, .external_lex_state = 15}, + [2055] = {.lex_state = 215, .external_lex_state = 16}, + [2056] = {.lex_state = 244, .external_lex_state = 33}, + [2057] = {.lex_state = 215, .external_lex_state = 16}, + [2058] = {.lex_state = 141, .external_lex_state = 32}, + [2059] = {.lex_state = 244, .external_lex_state = 33}, + [2060] = {.lex_state = 215, .external_lex_state = 16}, + [2061] = {.lex_state = 244, .external_lex_state = 33}, + [2062] = {.lex_state = 215, .external_lex_state = 16}, + [2063] = {.lex_state = 215, .external_lex_state = 16}, + [2064] = {.lex_state = 215, .external_lex_state = 16}, + [2065] = {.lex_state = 215, .external_lex_state = 16}, + [2066] = {.lex_state = 244, .external_lex_state = 33}, + [2067] = {.lex_state = 215, .external_lex_state = 16}, + [2068] = {.lex_state = 236, .external_lex_state = 12}, + [2069] = {.lex_state = 236, .external_lex_state = 12}, + [2070] = {.lex_state = 244, .external_lex_state = 33}, + [2071] = {.lex_state = 141, .external_lex_state = 32}, + [2072] = {.lex_state = 236, .external_lex_state = 12}, + [2073] = {.lex_state = 244, .external_lex_state = 33}, + [2074] = {.lex_state = 244, .external_lex_state = 33}, + [2075] = {.lex_state = 244, .external_lex_state = 33}, + [2076] = {.lex_state = 215, .external_lex_state = 16}, + [2077] = {.lex_state = 236, .external_lex_state = 12}, + [2078] = {.lex_state = 236, .external_lex_state = 12}, + [2079] = {.lex_state = 236, .external_lex_state = 17}, + [2080] = {.lex_state = 242, .external_lex_state = 17}, + [2081] = {.lex_state = 215, .external_lex_state = 16}, + [2082] = {.lex_state = 212, .external_lex_state = 16}, + [2083] = {.lex_state = 215, .external_lex_state = 16}, + [2084] = {.lex_state = 236, .external_lex_state = 17}, + [2085] = {.lex_state = 215, .external_lex_state = 16}, + [2086] = {.lex_state = 215, .external_lex_state = 16}, + [2087] = {.lex_state = 236, .external_lex_state = 33}, + [2088] = {.lex_state = 422, .external_lex_state = 31}, + [2089] = {.lex_state = 236, .external_lex_state = 33}, + [2090] = {.lex_state = 236, .external_lex_state = 33}, + [2091] = {.lex_state = 236, .external_lex_state = 33}, + [2092] = {.lex_state = 253, .external_lex_state = 34}, + [2093] = {.lex_state = 236, .external_lex_state = 33}, + [2094] = {.lex_state = 236, .external_lex_state = 33}, + [2095] = {.lex_state = 236, .external_lex_state = 33}, + [2096] = {.lex_state = 236, .external_lex_state = 33}, + [2097] = {.lex_state = 236, .external_lex_state = 33}, + [2098] = {.lex_state = 236, .external_lex_state = 33}, + [2099] = {.lex_state = 179, .external_lex_state = 35}, + [2100] = {.lex_state = 179, .external_lex_state = 35}, + [2101] = {.lex_state = 422, .external_lex_state = 32}, + [2102] = {.lex_state = 69, .external_lex_state = 36}, + [2103] = {.lex_state = 236, .external_lex_state = 33}, + [2104] = {.lex_state = 422, .external_lex_state = 32}, + [2105] = {.lex_state = 236, .external_lex_state = 33}, + [2106] = {.lex_state = 236, .external_lex_state = 33}, + [2107] = {.lex_state = 236, .external_lex_state = 33}, + [2108] = {.lex_state = 236, .external_lex_state = 33}, + [2109] = {.lex_state = 179, .external_lex_state = 35}, + [2110] = {.lex_state = 153, .external_lex_state = 32}, + [2111] = {.lex_state = 179, .external_lex_state = 35}, + [2112] = {.lex_state = 153, .external_lex_state = 32}, + [2113] = {.lex_state = 422, .external_lex_state = 31}, + [2114] = {.lex_state = 236, .external_lex_state = 33}, + [2115] = {.lex_state = 236, .external_lex_state = 33}, + [2116] = {.lex_state = 145, .external_lex_state = 32}, + [2117] = {.lex_state = 145, .external_lex_state = 32}, + [2118] = {.lex_state = 236, .external_lex_state = 33}, + [2119] = {.lex_state = 236, .external_lex_state = 17}, + [2120] = {.lex_state = 249, .external_lex_state = 37}, + [2121] = {.lex_state = 69, .external_lex_state = 36}, + [2122] = {.lex_state = 249, .external_lex_state = 37}, + [2123] = {.lex_state = 249, .external_lex_state = 37}, + [2124] = {.lex_state = 236, .external_lex_state = 33}, + [2125] = {.lex_state = 253, .external_lex_state = 34}, + [2126] = {.lex_state = 69, .external_lex_state = 36}, + [2127] = {.lex_state = 249, .external_lex_state = 37}, + [2128] = {.lex_state = 253, .external_lex_state = 34}, + [2129] = {.lex_state = 69, .external_lex_state = 36}, + [2130] = {.lex_state = 69, .external_lex_state = 36}, + [2131] = {.lex_state = 249, .external_lex_state = 37}, + [2132] = {.lex_state = 249, .external_lex_state = 37}, + [2133] = {.lex_state = 249, .external_lex_state = 37}, + [2134] = {.lex_state = 69, .external_lex_state = 36}, + [2135] = {.lex_state = 249, .external_lex_state = 37}, + [2136] = {.lex_state = 249, .external_lex_state = 37}, + [2137] = {.lex_state = 249, .external_lex_state = 37}, + [2138] = {.lex_state = 69, .external_lex_state = 36}, + [2139] = {.lex_state = 169, .external_lex_state = 35}, + [2140] = {.lex_state = 69, .external_lex_state = 36}, + [2141] = {.lex_state = 249, .external_lex_state = 37}, + [2142] = {.lex_state = 169, .external_lex_state = 35}, + [2143] = {.lex_state = 249, .external_lex_state = 37}, + [2144] = {.lex_state = 249, .external_lex_state = 37}, + [2145] = {.lex_state = 69, .external_lex_state = 36}, + [2146] = {.lex_state = 69, .external_lex_state = 36}, + [2147] = {.lex_state = 249, .external_lex_state = 37}, + [2148] = {.lex_state = 249, .external_lex_state = 37}, + [2149] = {.lex_state = 422, .external_lex_state = 32}, + [2150] = {.lex_state = 249, .external_lex_state = 37}, + [2151] = {.lex_state = 422, .external_lex_state = 32}, + [2152] = {.lex_state = 249, .external_lex_state = 37}, + [2153] = {.lex_state = 69, .external_lex_state = 36}, + [2154] = {.lex_state = 69, .external_lex_state = 36}, + [2155] = {.lex_state = 69, .external_lex_state = 36}, + [2156] = {.lex_state = 69, .external_lex_state = 36}, + [2157] = {.lex_state = 69, .external_lex_state = 36}, + [2158] = {.lex_state = 249, .external_lex_state = 37}, + [2159] = {.lex_state = 69, .external_lex_state = 36}, + [2160] = {.lex_state = 69, .external_lex_state = 36}, + [2161] = {.lex_state = 249, .external_lex_state = 37}, + [2162] = {.lex_state = 249, .external_lex_state = 37}, + [2163] = {.lex_state = 253, .external_lex_state = 34}, + [2164] = {.lex_state = 249, .external_lex_state = 37}, + [2165] = {.lex_state = 69, .external_lex_state = 36}, + [2166] = {.lex_state = 69, .external_lex_state = 36}, + [2167] = {.lex_state = 249, .external_lex_state = 37}, + [2168] = {.lex_state = 253, .external_lex_state = 34}, + [2169] = {.lex_state = 249, .external_lex_state = 37}, + [2170] = {.lex_state = 69, .external_lex_state = 36}, + [2171] = {.lex_state = 69, .external_lex_state = 36}, + [2172] = {.lex_state = 220, .external_lex_state = 16}, + [2173] = {.lex_state = 219, .external_lex_state = 16}, + [2174] = {.lex_state = 234, .external_lex_state = 2}, + [2175] = {.lex_state = 220, .external_lex_state = 16}, + [2176] = {.lex_state = 220, .external_lex_state = 16}, + [2177] = {.lex_state = 236, .external_lex_state = 23}, + [2178] = {.lex_state = 235, .external_lex_state = 38}, + [2179] = {.lex_state = 219, .external_lex_state = 16}, + [2180] = {.lex_state = 236, .external_lex_state = 23}, + [2181] = {.lex_state = 236, .external_lex_state = 23}, + [2182] = {.lex_state = 236, .external_lex_state = 23}, + [2183] = {.lex_state = 236, .external_lex_state = 23}, + [2184] = {.lex_state = 236, .external_lex_state = 23}, + [2185] = {.lex_state = 236, .external_lex_state = 23}, + [2186] = {.lex_state = 236, .external_lex_state = 23}, + [2187] = {.lex_state = 236, .external_lex_state = 23}, + [2188] = {.lex_state = 219, .external_lex_state = 16}, + [2189] = {.lex_state = 236, .external_lex_state = 23}, + [2190] = {.lex_state = 162, .external_lex_state = 35}, + [2191] = {.lex_state = 162, .external_lex_state = 35}, + [2192] = {.lex_state = 236, .external_lex_state = 23}, + [2193] = {.lex_state = 236, .external_lex_state = 23}, + [2194] = {.lex_state = 236, .external_lex_state = 23}, + [2195] = {.lex_state = 162, .external_lex_state = 35}, + [2196] = {.lex_state = 236, .external_lex_state = 23}, + [2197] = {.lex_state = 236, .external_lex_state = 23}, + [2198] = {.lex_state = 253, .external_lex_state = 39}, + [2199] = {.lex_state = 236, .external_lex_state = 23}, + [2200] = {.lex_state = 236, .external_lex_state = 23}, + [2201] = {.lex_state = 236, .external_lex_state = 23}, + [2202] = {.lex_state = 236, .external_lex_state = 23}, + [2203] = {.lex_state = 220, .external_lex_state = 16}, + [2204] = {.lex_state = 236, .external_lex_state = 23}, + [2205] = {.lex_state = 220, .external_lex_state = 16}, + [2206] = {.lex_state = 236, .external_lex_state = 23}, + [2207] = {.lex_state = 236, .external_lex_state = 23}, + [2208] = {.lex_state = 220, .external_lex_state = 16}, + [2209] = {.lex_state = 156, .external_lex_state = 31}, + [2210] = {.lex_state = 236, .external_lex_state = 23}, + [2211] = {.lex_state = 236, .external_lex_state = 23}, + [2212] = {.lex_state = 236, .external_lex_state = 23}, + [2213] = {.lex_state = 156, .external_lex_state = 31}, + [2214] = {.lex_state = 235, .external_lex_state = 38}, + [2215] = {.lex_state = 220, .external_lex_state = 16}, + [2216] = {.lex_state = 220, .external_lex_state = 16}, + [2217] = {.lex_state = 235, .external_lex_state = 38}, + [2218] = {.lex_state = 235, .external_lex_state = 38}, + [2219] = {.lex_state = 235, .external_lex_state = 38}, + [2220] = {.lex_state = 220, .external_lex_state = 16}, + [2221] = {.lex_state = 220, .external_lex_state = 16}, + [2222] = {.lex_state = 220, .external_lex_state = 16}, + [2223] = {.lex_state = 235, .external_lex_state = 38}, + [2224] = {.lex_state = 235, .external_lex_state = 38}, + [2225] = {.lex_state = 219, .external_lex_state = 16}, + [2226] = {.lex_state = 235, .external_lex_state = 38}, + [2227] = {.lex_state = 220, .external_lex_state = 16}, + [2228] = {.lex_state = 236, .external_lex_state = 23}, + [2229] = {.lex_state = 236, .external_lex_state = 23}, + [2230] = {.lex_state = 236, .external_lex_state = 23}, + [2231] = {.lex_state = 219, .external_lex_state = 16}, + [2232] = {.lex_state = 219, .external_lex_state = 16}, + [2233] = {.lex_state = 219, .external_lex_state = 16}, + [2234] = {.lex_state = 220, .external_lex_state = 16}, + [2235] = {.lex_state = 220, .external_lex_state = 16}, + [2236] = {.lex_state = 220, .external_lex_state = 16}, + [2237] = {.lex_state = 220, .external_lex_state = 16}, + [2238] = {.lex_state = 236, .external_lex_state = 23}, + [2239] = {.lex_state = 219, .external_lex_state = 16}, + [2240] = {.lex_state = 219, .external_lex_state = 16}, + [2241] = {.lex_state = 219, .external_lex_state = 16}, + [2242] = {.lex_state = 220, .external_lex_state = 16}, + [2243] = {.lex_state = 219, .external_lex_state = 16}, + [2244] = {.lex_state = 219, .external_lex_state = 16}, + [2245] = {.lex_state = 219, .external_lex_state = 16}, + [2246] = {.lex_state = 219, .external_lex_state = 16}, + [2247] = {.lex_state = 219, .external_lex_state = 16}, + [2248] = {.lex_state = 220, .external_lex_state = 16}, + [2249] = {.lex_state = 220, .external_lex_state = 16}, + [2250] = {.lex_state = 236, .external_lex_state = 23}, + [2251] = {.lex_state = 219, .external_lex_state = 16}, + [2252] = {.lex_state = 219, .external_lex_state = 16}, + [2253] = {.lex_state = 219, .external_lex_state = 16}, + [2254] = {.lex_state = 220, .external_lex_state = 16}, + [2255] = {.lex_state = 219, .external_lex_state = 16}, + [2256] = {.lex_state = 219, .external_lex_state = 16}, + [2257] = {.lex_state = 219, .external_lex_state = 16}, + [2258] = {.lex_state = 236, .external_lex_state = 23}, + [2259] = {.lex_state = 220, .external_lex_state = 16}, + [2260] = {.lex_state = 235, .external_lex_state = 38}, + [2261] = {.lex_state = 236, .external_lex_state = 23}, + [2262] = {.lex_state = 236, .external_lex_state = 23}, + [2263] = {.lex_state = 235, .external_lex_state = 38}, + [2264] = {.lex_state = 235, .external_lex_state = 38}, + [2265] = {.lex_state = 236, .external_lex_state = 40}, + [2266] = {.lex_state = 235, .external_lex_state = 38}, + [2267] = {.lex_state = 235, .external_lex_state = 38}, + [2268] = {.lex_state = 235, .external_lex_state = 38}, + [2269] = {.lex_state = 235, .external_lex_state = 38}, + [2270] = {.lex_state = 236, .external_lex_state = 23}, + [2271] = {.lex_state = 236, .external_lex_state = 23}, + [2272] = {.lex_state = 236, .external_lex_state = 23}, + [2273] = {.lex_state = 221, .external_lex_state = 41}, + [2274] = {.lex_state = 235, .external_lex_state = 38}, + [2275] = {.lex_state = 235, .external_lex_state = 38}, + [2276] = {.lex_state = 236, .external_lex_state = 23}, + [2277] = {.lex_state = 236, .external_lex_state = 23}, + [2278] = {.lex_state = 236, .external_lex_state = 23}, + [2279] = {.lex_state = 236, .external_lex_state = 23}, + [2280] = {.lex_state = 222, .external_lex_state = 42}, + [2281] = {.lex_state = 236, .external_lex_state = 23}, + [2282] = {.lex_state = 236, .external_lex_state = 23}, + [2283] = {.lex_state = 222, .external_lex_state = 42}, + [2284] = {.lex_state = 235, .external_lex_state = 38}, + [2285] = {.lex_state = 236, .external_lex_state = 40}, + [2286] = {.lex_state = 236, .external_lex_state = 23}, + [2287] = {.lex_state = 236, .external_lex_state = 40}, + [2288] = {.lex_state = 235, .external_lex_state = 38}, + [2289] = {.lex_state = 236, .external_lex_state = 23}, + [2290] = {.lex_state = 236, .external_lex_state = 23}, + [2291] = {.lex_state = 236, .external_lex_state = 23}, + [2292] = {.lex_state = 236, .external_lex_state = 40}, + [2293] = {.lex_state = 236, .external_lex_state = 33}, + [2294] = {.lex_state = 236, .external_lex_state = 23}, + [2295] = {.lex_state = 235, .external_lex_state = 38}, + [2296] = {.lex_state = 171, .external_lex_state = 35}, + [2297] = {.lex_state = 186, .external_lex_state = 23}, + [2298] = {.lex_state = 171, .external_lex_state = 35}, + [2299] = {.lex_state = 235, .external_lex_state = 38}, + [2300] = {.lex_state = 236, .external_lex_state = 40}, + [2301] = {.lex_state = 186, .external_lex_state = 23}, + [2302] = {.lex_state = 236, .external_lex_state = 23}, + [2303] = {.lex_state = 235, .external_lex_state = 38}, + [2304] = {.lex_state = 236, .external_lex_state = 23}, + [2305] = {.lex_state = 236, .external_lex_state = 23}, + [2306] = {.lex_state = 236, .external_lex_state = 23}, + [2307] = {.lex_state = 236, .external_lex_state = 23}, + [2308] = {.lex_state = 235, .external_lex_state = 38}, + [2309] = {.lex_state = 156, .external_lex_state = 32}, + [2310] = {.lex_state = 236, .external_lex_state = 23}, + [2311] = {.lex_state = 236, .external_lex_state = 23}, + [2312] = {.lex_state = 156, .external_lex_state = 32}, + [2313] = {.lex_state = 236, .external_lex_state = 23}, + [2314] = {.lex_state = 236, .external_lex_state = 23}, + [2315] = {.lex_state = 236, .external_lex_state = 23}, + [2316] = {.lex_state = 236, .external_lex_state = 23}, + [2317] = {.lex_state = 236, .external_lex_state = 23}, + [2318] = {.lex_state = 236, .external_lex_state = 23}, + [2319] = {.lex_state = 236, .external_lex_state = 23}, + [2320] = {.lex_state = 221, .external_lex_state = 41}, + [2321] = {.lex_state = 236, .external_lex_state = 23}, + [2322] = {.lex_state = 235, .external_lex_state = 38}, + [2323] = {.lex_state = 235, .external_lex_state = 38}, + [2324] = {.lex_state = 236, .external_lex_state = 23}, + [2325] = {.lex_state = 235, .external_lex_state = 38}, + [2326] = {.lex_state = 236, .external_lex_state = 23}, + [2327] = {.lex_state = 236, .external_lex_state = 23}, + [2328] = {.lex_state = 236, .external_lex_state = 23}, + [2329] = {.lex_state = 236, .external_lex_state = 40}, + [2330] = {.lex_state = 236, .external_lex_state = 23}, + [2331] = {.lex_state = 236, .external_lex_state = 23}, + [2332] = {.lex_state = 245, .external_lex_state = 43}, + [2333] = {.lex_state = 236, .external_lex_state = 23}, + [2334] = {.lex_state = 236, .external_lex_state = 23}, + [2335] = {.lex_state = 236, .external_lex_state = 33}, + [2336] = {.lex_state = 236, .external_lex_state = 40}, + [2337] = {.lex_state = 236, .external_lex_state = 33}, + [2338] = {.lex_state = 236, .external_lex_state = 23}, + [2339] = {.lex_state = 236, .external_lex_state = 23}, + [2340] = {.lex_state = 70, .external_lex_state = 44}, + [2341] = {.lex_state = 250, .external_lex_state = 45}, + [2342] = {.lex_state = 221, .external_lex_state = 46}, + [2343] = {.lex_state = 250, .external_lex_state = 45}, + [2344] = {.lex_state = 250, .external_lex_state = 45}, + [2345] = {.lex_state = 236, .external_lex_state = 23}, + [2346] = {.lex_state = 250, .external_lex_state = 45}, + [2347] = {.lex_state = 250, .external_lex_state = 45}, + [2348] = {.lex_state = 236, .external_lex_state = 23}, + [2349] = {.lex_state = 236, .external_lex_state = 23}, + [2350] = {.lex_state = 234, .external_lex_state = 2}, + [2351] = {.lex_state = 70, .external_lex_state = 44}, + [2352] = {.lex_state = 236, .external_lex_state = 23}, + [2353] = {.lex_state = 236, .external_lex_state = 23}, + [2354] = {.lex_state = 236, .external_lex_state = 23}, + [2355] = {.lex_state = 250, .external_lex_state = 45}, + [2356] = {.lex_state = 250, .external_lex_state = 45}, + [2357] = {.lex_state = 234, .external_lex_state = 2}, + [2358] = {.lex_state = 221, .external_lex_state = 46}, + [2359] = {.lex_state = 236, .external_lex_state = 23}, + [2360] = {.lex_state = 236, .external_lex_state = 23}, + [2361] = {.lex_state = 236, .external_lex_state = 23}, + [2362] = {.lex_state = 236, .external_lex_state = 23}, + [2363] = {.lex_state = 236, .external_lex_state = 23}, + [2364] = {.lex_state = 236, .external_lex_state = 23}, + [2365] = {.lex_state = 236, .external_lex_state = 23}, + [2366] = {.lex_state = 253, .external_lex_state = 47}, + [2367] = {.lex_state = 236, .external_lex_state = 23}, + [2368] = {.lex_state = 250, .external_lex_state = 45}, + [2369] = {.lex_state = 70, .external_lex_state = 44}, + [2370] = {.lex_state = 236, .external_lex_state = 23}, + [2371] = {.lex_state = 236, .external_lex_state = 23}, + [2372] = {.lex_state = 236, .external_lex_state = 23}, + [2373] = {.lex_state = 236, .external_lex_state = 23}, + [2374] = {.lex_state = 250, .external_lex_state = 45}, + [2375] = {.lex_state = 234, .external_lex_state = 2}, + [2376] = {.lex_state = 236, .external_lex_state = 23}, + [2377] = {.lex_state = 236, .external_lex_state = 23}, + [2378] = {.lex_state = 250, .external_lex_state = 45}, + [2379] = {.lex_state = 236, .external_lex_state = 23}, + [2380] = {.lex_state = 249, .external_lex_state = 23}, + [2381] = {.lex_state = 249, .external_lex_state = 23}, + [2382] = {.lex_state = 249, .external_lex_state = 23}, + [2383] = {.lex_state = 249, .external_lex_state = 23}, + [2384] = {.lex_state = 249, .external_lex_state = 23}, + [2385] = {.lex_state = 249, .external_lex_state = 23}, + [2386] = {.lex_state = 249, .external_lex_state = 23}, + [2387] = {.lex_state = 249, .external_lex_state = 23}, + [2388] = {.lex_state = 249, .external_lex_state = 23}, + [2389] = {.lex_state = 249, .external_lex_state = 23}, + [2390] = {.lex_state = 249, .external_lex_state = 23}, + [2391] = {.lex_state = 249, .external_lex_state = 23}, + [2392] = {.lex_state = 249, .external_lex_state = 23}, + [2393] = {.lex_state = 249, .external_lex_state = 23}, + [2394] = {.lex_state = 249, .external_lex_state = 23}, + [2395] = {.lex_state = 249, .external_lex_state = 23}, + [2396] = {.lex_state = 249, .external_lex_state = 23}, + [2397] = {.lex_state = 249, .external_lex_state = 23}, + [2398] = {.lex_state = 249, .external_lex_state = 23}, + [2399] = {.lex_state = 249, .external_lex_state = 23}, + [2400] = {.lex_state = 249, .external_lex_state = 23}, + [2401] = {.lex_state = 249, .external_lex_state = 23}, + [2402] = {.lex_state = 249, .external_lex_state = 23}, + [2403] = {.lex_state = 249, .external_lex_state = 23}, + [2404] = {.lex_state = 249, .external_lex_state = 23}, + [2405] = {.lex_state = 249, .external_lex_state = 23}, + [2406] = {.lex_state = 249, .external_lex_state = 23}, + [2407] = {.lex_state = 249, .external_lex_state = 23}, + [2408] = {.lex_state = 234, .external_lex_state = 2}, + [2409] = {.lex_state = 249, .external_lex_state = 23}, + [2410] = {.lex_state = 249, .external_lex_state = 23}, + [2411] = {.lex_state = 249, .external_lex_state = 23}, + [2412] = {.lex_state = 249, .external_lex_state = 23}, + [2413] = {.lex_state = 249, .external_lex_state = 23}, + [2414] = {.lex_state = 249, .external_lex_state = 23}, + [2415] = {.lex_state = 249, .external_lex_state = 23}, + [2416] = {.lex_state = 249, .external_lex_state = 23}, + [2417] = {.lex_state = 249, .external_lex_state = 23}, + [2418] = {.lex_state = 249, .external_lex_state = 23}, + [2419] = {.lex_state = 249, .external_lex_state = 23}, + [2420] = {.lex_state = 249, .external_lex_state = 23}, + [2421] = {.lex_state = 249, .external_lex_state = 23}, + [2422] = {.lex_state = 249, .external_lex_state = 23}, + [2423] = {.lex_state = 249, .external_lex_state = 23}, + [2424] = {.lex_state = 249, .external_lex_state = 23}, + [2425] = {.lex_state = 249, .external_lex_state = 23}, + [2426] = {.lex_state = 249, .external_lex_state = 23}, + [2427] = {.lex_state = 249, .external_lex_state = 23}, + [2428] = {.lex_state = 249, .external_lex_state = 23}, + [2429] = {.lex_state = 249, .external_lex_state = 23}, + [2430] = {.lex_state = 249, .external_lex_state = 23}, + [2431] = {.lex_state = 249, .external_lex_state = 23}, + [2432] = {.lex_state = 249, .external_lex_state = 23}, + [2433] = {.lex_state = 249, .external_lex_state = 23}, + [2434] = {.lex_state = 249, .external_lex_state = 23}, + [2435] = {.lex_state = 249, .external_lex_state = 23}, + [2436] = {.lex_state = 249, .external_lex_state = 23}, + [2437] = {.lex_state = 249, .external_lex_state = 23}, + [2438] = {.lex_state = 249, .external_lex_state = 23}, + [2439] = {.lex_state = 249, .external_lex_state = 23}, + [2440] = {.lex_state = 234, .external_lex_state = 2}, + [2441] = {.lex_state = 234, .external_lex_state = 2}, + [2442] = {.lex_state = 249, .external_lex_state = 23}, + [2443] = {.lex_state = 249, .external_lex_state = 23}, + [2444] = {.lex_state = 249, .external_lex_state = 23}, + [2445] = {.lex_state = 249, .external_lex_state = 23}, + [2446] = {.lex_state = 249, .external_lex_state = 23}, + [2447] = {.lex_state = 249, .external_lex_state = 23}, + [2448] = {.lex_state = 249, .external_lex_state = 23}, + [2449] = {.lex_state = 249, .external_lex_state = 23}, + [2450] = {.lex_state = 249, .external_lex_state = 23}, + [2451] = {.lex_state = 249, .external_lex_state = 23}, + [2452] = {.lex_state = 249, .external_lex_state = 23}, + [2453] = {.lex_state = 249, .external_lex_state = 23}, + [2454] = {.lex_state = 234, .external_lex_state = 2}, + [2455] = {.lex_state = 249, .external_lex_state = 23}, + [2456] = {.lex_state = 249, .external_lex_state = 23}, + [2457] = {.lex_state = 249, .external_lex_state = 23}, + [2458] = {.lex_state = 249, .external_lex_state = 23}, + [2459] = {.lex_state = 249, .external_lex_state = 23}, + [2460] = {.lex_state = 249, .external_lex_state = 23}, + [2461] = {.lex_state = 249, .external_lex_state = 23}, + [2462] = {.lex_state = 249, .external_lex_state = 23}, + [2463] = {.lex_state = 249, .external_lex_state = 23}, + [2464] = {.lex_state = 249, .external_lex_state = 23}, + [2465] = {.lex_state = 249, .external_lex_state = 23}, + [2466] = {.lex_state = 249, .external_lex_state = 23}, + [2467] = {.lex_state = 249, .external_lex_state = 23}, + [2468] = {.lex_state = 249, .external_lex_state = 23}, + [2469] = {.lex_state = 249, .external_lex_state = 23}, + [2470] = {.lex_state = 249, .external_lex_state = 23}, + [2471] = {.lex_state = 249, .external_lex_state = 23}, + [2472] = {.lex_state = 249, .external_lex_state = 23}, + [2473] = {.lex_state = 249, .external_lex_state = 23}, + [2474] = {.lex_state = 249, .external_lex_state = 23}, + [2475] = {.lex_state = 249, .external_lex_state = 23}, + [2476] = {.lex_state = 249, .external_lex_state = 23}, + [2477] = {.lex_state = 249, .external_lex_state = 23}, + [2478] = {.lex_state = 249, .external_lex_state = 23}, + [2479] = {.lex_state = 249, .external_lex_state = 23}, + [2480] = {.lex_state = 249, .external_lex_state = 23}, + [2481] = {.lex_state = 249, .external_lex_state = 23}, + [2482] = {.lex_state = 249, .external_lex_state = 23}, + [2483] = {.lex_state = 249, .external_lex_state = 23}, + [2484] = {.lex_state = 249, .external_lex_state = 23}, + [2485] = {.lex_state = 249, .external_lex_state = 23}, + [2486] = {.lex_state = 70, .external_lex_state = 44}, + [2487] = {.lex_state = 249, .external_lex_state = 23}, + [2488] = {.lex_state = 249, .external_lex_state = 23}, + [2489] = {.lex_state = 249, .external_lex_state = 23}, + [2490] = {.lex_state = 249, .external_lex_state = 23}, + [2491] = {.lex_state = 249, .external_lex_state = 23}, + [2492] = {.lex_state = 249, .external_lex_state = 23}, + [2493] = {.lex_state = 249, .external_lex_state = 23}, + [2494] = {.lex_state = 249, .external_lex_state = 23}, + [2495] = {.lex_state = 249, .external_lex_state = 23}, + [2496] = {.lex_state = 249, .external_lex_state = 23}, + [2497] = {.lex_state = 249, .external_lex_state = 23}, + [2498] = {.lex_state = 249, .external_lex_state = 23}, + [2499] = {.lex_state = 249, .external_lex_state = 23}, + [2500] = {.lex_state = 249, .external_lex_state = 23}, + [2501] = {.lex_state = 249, .external_lex_state = 23}, + [2502] = {.lex_state = 249, .external_lex_state = 23}, + [2503] = {.lex_state = 249, .external_lex_state = 23}, + [2504] = {.lex_state = 72, .external_lex_state = 48}, + [2505] = {.lex_state = 249, .external_lex_state = 23}, + [2506] = {.lex_state = 249, .external_lex_state = 23}, + [2507] = {.lex_state = 249, .external_lex_state = 23}, + [2508] = {.lex_state = 249, .external_lex_state = 23}, + [2509] = {.lex_state = 249, .external_lex_state = 23}, + [2510] = {.lex_state = 249, .external_lex_state = 23}, + [2511] = {.lex_state = 249, .external_lex_state = 23}, + [2512] = {.lex_state = 70, .external_lex_state = 44}, + [2513] = {.lex_state = 249, .external_lex_state = 23}, + [2514] = {.lex_state = 249, .external_lex_state = 23}, + [2515] = {.lex_state = 249, .external_lex_state = 23}, + [2516] = {.lex_state = 249, .external_lex_state = 23}, + [2517] = {.lex_state = 249, .external_lex_state = 23}, + [2518] = {.lex_state = 249, .external_lex_state = 23}, + [2519] = {.lex_state = 249, .external_lex_state = 23}, + [2520] = {.lex_state = 249, .external_lex_state = 23}, + [2521] = {.lex_state = 249, .external_lex_state = 23}, + [2522] = {.lex_state = 249, .external_lex_state = 23}, + [2523] = {.lex_state = 249, .external_lex_state = 23}, + [2524] = {.lex_state = 249, .external_lex_state = 23}, + [2525] = {.lex_state = 249, .external_lex_state = 23}, + [2526] = {.lex_state = 249, .external_lex_state = 23}, + [2527] = {.lex_state = 249, .external_lex_state = 23}, + [2528] = {.lex_state = 249, .external_lex_state = 23}, + [2529] = {.lex_state = 249, .external_lex_state = 23}, + [2530] = {.lex_state = 249, .external_lex_state = 23}, + [2531] = {.lex_state = 249, .external_lex_state = 23}, + [2532] = {.lex_state = 249, .external_lex_state = 23}, + [2533] = {.lex_state = 249, .external_lex_state = 23}, + [2534] = {.lex_state = 249, .external_lex_state = 23}, + [2535] = {.lex_state = 249, .external_lex_state = 23}, + [2536] = {.lex_state = 249, .external_lex_state = 23}, + [2537] = {.lex_state = 249, .external_lex_state = 23}, + [2538] = {.lex_state = 249, .external_lex_state = 23}, + [2539] = {.lex_state = 249, .external_lex_state = 23}, + [2540] = {.lex_state = 249, .external_lex_state = 23}, + [2541] = {.lex_state = 249, .external_lex_state = 23}, + [2542] = {.lex_state = 249, .external_lex_state = 23}, + [2543] = {.lex_state = 249, .external_lex_state = 23}, + [2544] = {.lex_state = 249, .external_lex_state = 23}, + [2545] = {.lex_state = 249, .external_lex_state = 23}, + [2546] = {.lex_state = 249, .external_lex_state = 23}, + [2547] = {.lex_state = 249, .external_lex_state = 23}, + [2548] = {.lex_state = 249, .external_lex_state = 23}, + [2549] = {.lex_state = 249, .external_lex_state = 23}, + [2550] = {.lex_state = 249, .external_lex_state = 23}, + [2551] = {.lex_state = 249, .external_lex_state = 23}, + [2552] = {.lex_state = 249, .external_lex_state = 23}, + [2553] = {.lex_state = 249, .external_lex_state = 23}, + [2554] = {.lex_state = 249, .external_lex_state = 23}, + [2555] = {.lex_state = 249, .external_lex_state = 23}, + [2556] = {.lex_state = 249, .external_lex_state = 23}, + [2557] = {.lex_state = 249, .external_lex_state = 23}, + [2558] = {.lex_state = 249, .external_lex_state = 23}, + [2559] = {.lex_state = 249, .external_lex_state = 23}, + [2560] = {.lex_state = 249, .external_lex_state = 23}, + [2561] = {.lex_state = 249, .external_lex_state = 23}, + [2562] = {.lex_state = 70, .external_lex_state = 44}, + [2563] = {.lex_state = 249, .external_lex_state = 23}, + [2564] = {.lex_state = 249, .external_lex_state = 23}, + [2565] = {.lex_state = 249, .external_lex_state = 23}, + [2566] = {.lex_state = 249, .external_lex_state = 23}, + [2567] = {.lex_state = 249, .external_lex_state = 23}, + [2568] = {.lex_state = 249, .external_lex_state = 23}, + [2569] = {.lex_state = 249, .external_lex_state = 23}, + [2570] = {.lex_state = 249, .external_lex_state = 23}, + [2571] = {.lex_state = 249, .external_lex_state = 23}, + [2572] = {.lex_state = 249, .external_lex_state = 23}, + [2573] = {.lex_state = 249, .external_lex_state = 23}, + [2574] = {.lex_state = 249, .external_lex_state = 23}, + [2575] = {.lex_state = 249, .external_lex_state = 23}, + [2576] = {.lex_state = 249, .external_lex_state = 23}, + [2577] = {.lex_state = 249, .external_lex_state = 23}, + [2578] = {.lex_state = 72, .external_lex_state = 48}, + [2579] = {.lex_state = 72, .external_lex_state = 31}, + [2580] = {.lex_state = 72, .external_lex_state = 48}, + [2581] = {.lex_state = 72, .external_lex_state = 48}, + [2582] = {.lex_state = 72, .external_lex_state = 48}, + [2583] = {.lex_state = 72, .external_lex_state = 32}, + [2584] = {.lex_state = 72, .external_lex_state = 48}, + [2585] = {.lex_state = 72, .external_lex_state = 32}, + [2586] = {.lex_state = 72, .external_lex_state = 31}, + [2587] = {.lex_state = 72, .external_lex_state = 49}, + [2588] = {.lex_state = 253, .external_lex_state = 50}, + [2589] = {.lex_state = 253, .external_lex_state = 50}, + [2590] = {.lex_state = 418, .external_lex_state = 48}, + [2591] = {.lex_state = 72, .external_lex_state = 32}, + [2592] = {.lex_state = 72, .external_lex_state = 32}, + [2593] = {.lex_state = 72, .external_lex_state = 32}, + [2594] = {.lex_state = 253, .external_lex_state = 50}, + [2595] = {.lex_state = 253, .external_lex_state = 50}, + [2596] = {.lex_state = 72, .external_lex_state = 48}, + [2597] = {.lex_state = 72, .external_lex_state = 32}, + [2598] = {.lex_state = 418, .external_lex_state = 48}, + [2599] = {.lex_state = 72, .external_lex_state = 48}, + [2600] = {.lex_state = 72, .external_lex_state = 31}, + [2601] = {.lex_state = 72, .external_lex_state = 49}, + [2602] = {.lex_state = 419, .external_lex_state = 31}, + [2603] = {.lex_state = 72, .external_lex_state = 48}, + [2604] = {.lex_state = 72, .external_lex_state = 48}, + [2605] = {.lex_state = 72, .external_lex_state = 48}, + [2606] = {.lex_state = 72, .external_lex_state = 31}, + [2607] = {.lex_state = 72, .external_lex_state = 31}, + [2608] = {.lex_state = 72, .external_lex_state = 49}, + [2609] = {.lex_state = 253, .external_lex_state = 34}, + [2610] = {.lex_state = 418, .external_lex_state = 48}, + [2611] = {.lex_state = 253, .external_lex_state = 34}, + [2612] = {.lex_state = 72, .external_lex_state = 48}, + [2613] = {.lex_state = 72, .external_lex_state = 48}, + [2614] = {.lex_state = 72, .external_lex_state = 48}, + [2615] = {.lex_state = 418, .external_lex_state = 48}, + [2616] = {.lex_state = 72, .external_lex_state = 48}, + [2617] = {.lex_state = 418, .external_lex_state = 48}, + [2618] = {.lex_state = 253, .external_lex_state = 34}, + [2619] = {.lex_state = 72, .external_lex_state = 48}, + [2620] = {.lex_state = 72, .external_lex_state = 32}, + [2621] = {.lex_state = 418, .external_lex_state = 48}, + [2622] = {.lex_state = 72, .external_lex_state = 48}, + [2623] = {.lex_state = 72, .external_lex_state = 48}, + [2624] = {.lex_state = 72, .external_lex_state = 31}, + [2625] = {.lex_state = 72, .external_lex_state = 48}, + [2626] = {.lex_state = 72, .external_lex_state = 32}, + [2627] = {.lex_state = 253, .external_lex_state = 34}, + [2628] = {.lex_state = 418, .external_lex_state = 48}, + [2629] = {.lex_state = 72, .external_lex_state = 48}, + [2630] = {.lex_state = 419, .external_lex_state = 31}, + [2631] = {.lex_state = 72, .external_lex_state = 32}, + [2632] = {.lex_state = 72, .external_lex_state = 48}, + [2633] = {.lex_state = 418, .external_lex_state = 48}, + [2634] = {.lex_state = 72, .external_lex_state = 48}, + [2635] = {.lex_state = 418, .external_lex_state = 49}, + [2636] = {.lex_state = 418, .external_lex_state = 48}, + [2637] = {.lex_state = 418, .external_lex_state = 48}, + [2638] = {.lex_state = 72, .external_lex_state = 48}, + [2639] = {.lex_state = 72, .external_lex_state = 48}, + [2640] = {.lex_state = 418, .external_lex_state = 48}, + [2641] = {.lex_state = 72, .external_lex_state = 48}, + [2642] = {.lex_state = 72, .external_lex_state = 48}, + [2643] = {.lex_state = 72, .external_lex_state = 48}, + [2644] = {.lex_state = 418, .external_lex_state = 48}, + [2645] = {.lex_state = 72, .external_lex_state = 49}, + [2646] = {.lex_state = 72, .external_lex_state = 49}, + [2647] = {.lex_state = 418, .external_lex_state = 48}, + [2648] = {.lex_state = 418, .external_lex_state = 48}, + [2649] = {.lex_state = 72, .external_lex_state = 48}, + [2650] = {.lex_state = 72, .external_lex_state = 48}, + [2651] = {.lex_state = 418, .external_lex_state = 48}, + [2652] = {.lex_state = 418, .external_lex_state = 48}, + [2653] = {.lex_state = 418, .external_lex_state = 48}, + [2654] = {.lex_state = 72, .external_lex_state = 49}, + [2655] = {.lex_state = 72, .external_lex_state = 32}, + [2656] = {.lex_state = 418, .external_lex_state = 48}, + [2657] = {.lex_state = 72, .external_lex_state = 32}, + [2658] = {.lex_state = 72, .external_lex_state = 32}, + [2659] = {.lex_state = 418, .external_lex_state = 48}, + [2660] = {.lex_state = 418, .external_lex_state = 48}, + [2661] = {.lex_state = 72, .external_lex_state = 49}, + [2662] = {.lex_state = 418, .external_lex_state = 48}, + [2663] = {.lex_state = 418, .external_lex_state = 48}, + [2664] = {.lex_state = 72, .external_lex_state = 49}, + [2665] = {.lex_state = 72, .external_lex_state = 49}, + [2666] = {.lex_state = 72, .external_lex_state = 49}, + [2667] = {.lex_state = 418, .external_lex_state = 49}, + [2668] = {.lex_state = 72, .external_lex_state = 49}, + [2669] = {.lex_state = 72, .external_lex_state = 49}, + [2670] = {.lex_state = 72, .external_lex_state = 49}, + [2671] = {.lex_state = 232, .external_lex_state = 51}, + [2672] = {.lex_state = 72, .external_lex_state = 49}, + [2673] = {.lex_state = 72, .external_lex_state = 49}, + [2674] = {.lex_state = 72, .external_lex_state = 49}, + [2675] = {.lex_state = 72, .external_lex_state = 49}, + [2676] = {.lex_state = 232, .external_lex_state = 51}, + [2677] = {.lex_state = 232, .external_lex_state = 51}, + [2678] = {.lex_state = 72, .external_lex_state = 31}, + [2679] = {.lex_state = 72, .external_lex_state = 49}, + [2680] = {.lex_state = 72, .external_lex_state = 49}, + [2681] = {.lex_state = 72, .external_lex_state = 49}, + [2682] = {.lex_state = 180, .external_lex_state = 52}, + [2683] = {.lex_state = 72, .external_lex_state = 32}, + [2684] = {.lex_state = 419, .external_lex_state = 32}, + [2685] = {.lex_state = 418, .external_lex_state = 32}, + [2686] = {.lex_state = 72, .external_lex_state = 49}, + [2687] = {.lex_state = 232, .external_lex_state = 51}, + [2688] = {.lex_state = 246}, + [2689] = {.lex_state = 232, .external_lex_state = 51}, + [2690] = {.lex_state = 72, .external_lex_state = 49}, + [2691] = {.lex_state = 232, .external_lex_state = 51}, + [2692] = {.lex_state = 180, .external_lex_state = 52}, + [2693] = {.lex_state = 246}, + [2694] = {.lex_state = 232, .external_lex_state = 51}, + [2695] = {.lex_state = 232, .external_lex_state = 51}, + [2696] = {.lex_state = 232, .external_lex_state = 51}, + [2697] = {.lex_state = 232, .external_lex_state = 51}, + [2698] = {.lex_state = 232, .external_lex_state = 51}, + [2699] = {.lex_state = 232, .external_lex_state = 51}, + [2700] = {.lex_state = 418, .external_lex_state = 48}, + [2701] = {.lex_state = 232, .external_lex_state = 51}, + [2702] = {.lex_state = 418, .external_lex_state = 48}, + [2703] = {.lex_state = 232, .external_lex_state = 51}, + [2704] = {.lex_state = 418, .external_lex_state = 32}, + [2705] = {.lex_state = 72, .external_lex_state = 49}, + [2706] = {.lex_state = 72, .external_lex_state = 49}, + [2707] = {.lex_state = 246}, + [2708] = {.lex_state = 232, .external_lex_state = 51}, + [2709] = {.lex_state = 232, .external_lex_state = 51}, + [2710] = {.lex_state = 232, .external_lex_state = 51}, + [2711] = {.lex_state = 418, .external_lex_state = 49}, + [2712] = {.lex_state = 418, .external_lex_state = 49}, + [2713] = {.lex_state = 72, .external_lex_state = 49}, + [2714] = {.lex_state = 232, .external_lex_state = 51}, + [2715] = {.lex_state = 419, .external_lex_state = 31}, + [2716] = {.lex_state = 72, .external_lex_state = 49}, + [2717] = {.lex_state = 418, .external_lex_state = 32}, + [2718] = {.lex_state = 232, .external_lex_state = 51}, + [2719] = {.lex_state = 232, .external_lex_state = 51}, + [2720] = {.lex_state = 232, .external_lex_state = 51}, + [2721] = {.lex_state = 418, .external_lex_state = 49}, + [2722] = {.lex_state = 72, .external_lex_state = 49}, + [2723] = {.lex_state = 232, .external_lex_state = 51}, + [2724] = {.lex_state = 418, .external_lex_state = 49}, + [2725] = {.lex_state = 232, .external_lex_state = 51}, + [2726] = {.lex_state = 180, .external_lex_state = 52}, + [2727] = {.lex_state = 418, .external_lex_state = 32}, + [2728] = {.lex_state = 419, .external_lex_state = 31}, + [2729] = {.lex_state = 418, .external_lex_state = 49}, + [2730] = {.lex_state = 418, .external_lex_state = 49}, + [2731] = {.lex_state = 418, .external_lex_state = 49}, + [2732] = {.lex_state = 232, .external_lex_state = 51}, + [2733] = {.lex_state = 232, .external_lex_state = 51}, + [2734] = {.lex_state = 232, .external_lex_state = 51}, + [2735] = {.lex_state = 418, .external_lex_state = 49}, + [2736] = {.lex_state = 246}, + [2737] = {.lex_state = 419, .external_lex_state = 32}, + [2738] = {.lex_state = 232, .external_lex_state = 51}, + [2739] = {.lex_state = 246}, + [2740] = {.lex_state = 232, .external_lex_state = 51}, + [2741] = {.lex_state = 180, .external_lex_state = 52}, + [2742] = {.lex_state = 232, .external_lex_state = 51}, + [2743] = {.lex_state = 418, .external_lex_state = 49}, + [2744] = {.lex_state = 232, .external_lex_state = 51}, + [2745] = {.lex_state = 232, .external_lex_state = 51}, + [2746] = {.lex_state = 232, .external_lex_state = 51}, + [2747] = {.lex_state = 419, .external_lex_state = 32}, + [2748] = {.lex_state = 418, .external_lex_state = 49}, + [2749] = {.lex_state = 232, .external_lex_state = 51}, + [2750] = {.lex_state = 232, .external_lex_state = 51}, + [2751] = {.lex_state = 232, .external_lex_state = 51}, + [2752] = {.lex_state = 232, .external_lex_state = 51}, + [2753] = {.lex_state = 232, .external_lex_state = 51}, + [2754] = {.lex_state = 418, .external_lex_state = 49}, + [2755] = {.lex_state = 418, .external_lex_state = 49}, + [2756] = {.lex_state = 232, .external_lex_state = 51}, + [2757] = {.lex_state = 232, .external_lex_state = 51}, + [2758] = {.lex_state = 232, .external_lex_state = 51}, + [2759] = {.lex_state = 232, .external_lex_state = 51}, + [2760] = {.lex_state = 232, .external_lex_state = 51}, + [2761] = {.lex_state = 232, .external_lex_state = 51}, + [2762] = {.lex_state = 418, .external_lex_state = 49}, + [2763] = {.lex_state = 232, .external_lex_state = 51}, + [2764] = {.lex_state = 418, .external_lex_state = 49}, + [2765] = {.lex_state = 418, .external_lex_state = 49}, + [2766] = {.lex_state = 232, .external_lex_state = 51}, + [2767] = {.lex_state = 418, .external_lex_state = 49}, + [2768] = {.lex_state = 418, .external_lex_state = 49}, + [2769] = {.lex_state = 418, .external_lex_state = 32}, + [2770] = {.lex_state = 418, .external_lex_state = 31}, + [2771] = {.lex_state = 418, .external_lex_state = 32}, + [2772] = {.lex_state = 418, .external_lex_state = 32}, + [2773] = {.lex_state = 418, .external_lex_state = 49}, + [2774] = {.lex_state = 418, .external_lex_state = 48}, + [2775] = {.lex_state = 418, .external_lex_state = 48}, + [2776] = {.lex_state = 418, .external_lex_state = 48}, + [2777] = {.lex_state = 418, .external_lex_state = 48}, + [2778] = {.lex_state = 418, .external_lex_state = 49}, + [2779] = {.lex_state = 418, .external_lex_state = 48}, + [2780] = {.lex_state = 418, .external_lex_state = 48}, + [2781] = {.lex_state = 246}, + [2782] = {.lex_state = 72, .external_lex_state = 49}, + [2783] = {.lex_state = 72, .external_lex_state = 49}, + [2784] = {.lex_state = 72, .external_lex_state = 49}, + [2785] = {.lex_state = 72, .external_lex_state = 49}, + [2786] = {.lex_state = 232, .external_lex_state = 51}, + [2787] = {.lex_state = 418, .external_lex_state = 32}, + [2788] = {.lex_state = 418, .external_lex_state = 32}, + [2789] = {.lex_state = 232, .external_lex_state = 51}, + [2790] = {.lex_state = 72, .external_lex_state = 32}, + [2791] = {.lex_state = 232, .external_lex_state = 51}, + [2792] = {.lex_state = 419, .external_lex_state = 32}, + [2793] = {.lex_state = 232, .external_lex_state = 51}, + [2794] = {.lex_state = 180, .external_lex_state = 52}, + [2795] = {.lex_state = 232, .external_lex_state = 51}, + [2796] = {.lex_state = 180, .external_lex_state = 52}, + [2797] = {.lex_state = 419, .external_lex_state = 32}, + [2798] = {.lex_state = 419, .external_lex_state = 32}, + [2799] = {.lex_state = 418, .external_lex_state = 31}, + [2800] = {.lex_state = 419, .external_lex_state = 32}, + [2801] = {.lex_state = 246}, + [2802] = {.lex_state = 246}, + [2803] = {.lex_state = 418, .external_lex_state = 49}, + [2804] = {.lex_state = 418, .external_lex_state = 48}, + [2805] = {.lex_state = 418, .external_lex_state = 48}, + [2806] = {.lex_state = 72, .external_lex_state = 49}, + [2807] = {.lex_state = 419, .external_lex_state = 32}, + [2808] = {.lex_state = 232, .external_lex_state = 51}, + [2809] = {.lex_state = 418, .external_lex_state = 31}, + [2810] = {.lex_state = 72, .external_lex_state = 49}, + [2811] = {.lex_state = 72, .external_lex_state = 32}, + [2812] = {.lex_state = 72, .external_lex_state = 32}, + [2813] = {.lex_state = 246}, + [2814] = {.lex_state = 418, .external_lex_state = 48}, + [2815] = {.lex_state = 418, .external_lex_state = 32}, + [2816] = {.lex_state = 418, .external_lex_state = 31}, + [2817] = {.lex_state = 232, .external_lex_state = 51}, + [2818] = {.lex_state = 232, .external_lex_state = 51}, + [2819] = {.lex_state = 418, .external_lex_state = 32}, + [2820] = {.lex_state = 419, .external_lex_state = 32}, + [2821] = {.lex_state = 418, .external_lex_state = 32}, + [2822] = {.lex_state = 418, .external_lex_state = 48}, + [2823] = {.lex_state = 419, .external_lex_state = 31}, + [2824] = {.lex_state = 72, .external_lex_state = 32}, + [2825] = {.lex_state = 232, .external_lex_state = 51}, + [2826] = {.lex_state = 418, .external_lex_state = 48}, + [2827] = {.lex_state = 418, .external_lex_state = 49}, + [2828] = {.lex_state = 418, .external_lex_state = 49}, + [2829] = {.lex_state = 419, .external_lex_state = 31}, + [2830] = {.lex_state = 418, .external_lex_state = 32}, + [2831] = {.lex_state = 418, .external_lex_state = 32}, + [2832] = {.lex_state = 418, .external_lex_state = 49}, + [2833] = {.lex_state = 418, .external_lex_state = 48}, + [2834] = {.lex_state = 418, .external_lex_state = 48}, + [2835] = {.lex_state = 246}, + [2836] = {.lex_state = 418, .external_lex_state = 32}, + [2837] = {.lex_state = 418, .external_lex_state = 32}, + [2838] = {.lex_state = 231, .external_lex_state = 53}, + [2839] = {.lex_state = 231, .external_lex_state = 53}, + [2840] = {.lex_state = 418, .external_lex_state = 49}, + [2841] = {.lex_state = 418, .external_lex_state = 49}, + [2842] = {.lex_state = 418, .external_lex_state = 32}, + [2843] = {.lex_state = 231, .external_lex_state = 53}, + [2844] = {.lex_state = 418, .external_lex_state = 49}, + [2845] = {.lex_state = 419, .external_lex_state = 31}, + [2846] = {.lex_state = 419, .external_lex_state = 31}, + [2847] = {.lex_state = 418, .external_lex_state = 49}, + [2848] = {.lex_state = 231, .external_lex_state = 53}, + [2849] = {.lex_state = 246}, + [2850] = {.lex_state = 418, .external_lex_state = 49}, + [2851] = {.lex_state = 418, .external_lex_state = 49}, + [2852] = {.lex_state = 231, .external_lex_state = 53}, + [2853] = {.lex_state = 418, .external_lex_state = 32}, + [2854] = {.lex_state = 246}, + [2855] = {.lex_state = 418, .external_lex_state = 32}, + [2856] = {.lex_state = 72, .external_lex_state = 32}, + [2857] = {.lex_state = 72, .external_lex_state = 32}, + [2858] = {.lex_state = 418, .external_lex_state = 49}, + [2859] = {.lex_state = 231, .external_lex_state = 53}, + [2860] = {.lex_state = 231, .external_lex_state = 53}, + [2861] = {.lex_state = 418, .external_lex_state = 49}, + [2862] = {.lex_state = 246}, + [2863] = {.lex_state = 231, .external_lex_state = 53}, + [2864] = {.lex_state = 231, .external_lex_state = 53}, + [2865] = {.lex_state = 231, .external_lex_state = 53}, + [2866] = {.lex_state = 231, .external_lex_state = 53}, + [2867] = {.lex_state = 246}, + [2868] = {.lex_state = 231, .external_lex_state = 53}, + [2869] = {.lex_state = 72, .external_lex_state = 31}, + [2870] = {.lex_state = 72, .external_lex_state = 31}, + [2871] = {.lex_state = 180, .external_lex_state = 52}, + [2872] = {.lex_state = 72, .external_lex_state = 31}, + [2873] = {.lex_state = 418, .external_lex_state = 49}, + [2874] = {.lex_state = 231, .external_lex_state = 53}, + [2875] = {.lex_state = 418, .external_lex_state = 49}, + [2876] = {.lex_state = 246}, + [2877] = {.lex_state = 231, .external_lex_state = 53}, + [2878] = {.lex_state = 418, .external_lex_state = 31}, + [2879] = {.lex_state = 231, .external_lex_state = 53}, + [2880] = {.lex_state = 72, .external_lex_state = 32}, + [2881] = {.lex_state = 418, .external_lex_state = 32}, + [2882] = {.lex_state = 231, .external_lex_state = 53}, + [2883] = {.lex_state = 418, .external_lex_state = 31}, + [2884] = {.lex_state = 180, .external_lex_state = 52}, + [2885] = {.lex_state = 231, .external_lex_state = 53}, + [2886] = {.lex_state = 231, .external_lex_state = 53}, + [2887] = {.lex_state = 231, .external_lex_state = 53}, + [2888] = {.lex_state = 231, .external_lex_state = 53}, + [2889] = {.lex_state = 72, .external_lex_state = 32}, + [2890] = {.lex_state = 231, .external_lex_state = 53}, + [2891] = {.lex_state = 180, .external_lex_state = 52}, + [2892] = {.lex_state = 180, .external_lex_state = 52}, + [2893] = {.lex_state = 231, .external_lex_state = 53}, + [2894] = {.lex_state = 231, .external_lex_state = 53}, + [2895] = {.lex_state = 180, .external_lex_state = 52}, + [2896] = {.lex_state = 180, .external_lex_state = 52}, + [2897] = {.lex_state = 231, .external_lex_state = 53}, + [2898] = {.lex_state = 180, .external_lex_state = 52}, + [2899] = {.lex_state = 231, .external_lex_state = 53}, + [2900] = {.lex_state = 231, .external_lex_state = 53}, + [2901] = {.lex_state = 180, .external_lex_state = 52}, + [2902] = {.lex_state = 180, .external_lex_state = 52}, + [2903] = {.lex_state = 231, .external_lex_state = 53}, + [2904] = {.lex_state = 418, .external_lex_state = 32}, + [2905] = {.lex_state = 231, .external_lex_state = 53}, + [2906] = {.lex_state = 231, .external_lex_state = 53}, + [2907] = {.lex_state = 231, .external_lex_state = 53}, + [2908] = {.lex_state = 231, .external_lex_state = 53}, + [2909] = {.lex_state = 231, .external_lex_state = 53}, + [2910] = {.lex_state = 418, .external_lex_state = 49}, + [2911] = {.lex_state = 231, .external_lex_state = 53}, + [2912] = {.lex_state = 418, .external_lex_state = 32}, + [2913] = {.lex_state = 231, .external_lex_state = 53}, + [2914] = {.lex_state = 418, .external_lex_state = 49}, + [2915] = {.lex_state = 231, .external_lex_state = 53}, + [2916] = {.lex_state = 231, .external_lex_state = 53}, + [2917] = {.lex_state = 246}, + [2918] = {.lex_state = 180, .external_lex_state = 52}, + [2919] = {.lex_state = 231, .external_lex_state = 53}, + [2920] = {.lex_state = 231, .external_lex_state = 53}, + [2921] = {.lex_state = 231, .external_lex_state = 53}, + [2922] = {.lex_state = 72, .external_lex_state = 32}, + [2923] = {.lex_state = 180, .external_lex_state = 52}, + [2924] = {.lex_state = 418, .external_lex_state = 32}, + [2925] = {.lex_state = 231, .external_lex_state = 53}, + [2926] = {.lex_state = 418, .external_lex_state = 48}, + [2927] = {.lex_state = 418, .external_lex_state = 48}, + [2928] = {.lex_state = 231, .external_lex_state = 53}, + [2929] = {.lex_state = 231, .external_lex_state = 53}, + [2930] = {.lex_state = 231, .external_lex_state = 53}, + [2931] = {.lex_state = 180, .external_lex_state = 52}, + [2932] = {.lex_state = 231, .external_lex_state = 53}, + [2933] = {.lex_state = 231, .external_lex_state = 53}, + [2934] = {.lex_state = 231, .external_lex_state = 53}, + [2935] = {.lex_state = 231, .external_lex_state = 53}, + [2936] = {.lex_state = 231, .external_lex_state = 53}, + [2937] = {.lex_state = 231, .external_lex_state = 53}, + [2938] = {.lex_state = 231, .external_lex_state = 53}, + [2939] = {.lex_state = 231, .external_lex_state = 53}, + [2940] = {.lex_state = 180, .external_lex_state = 52}, + [2941] = {.lex_state = 231, .external_lex_state = 53}, + [2942] = {.lex_state = 231, .external_lex_state = 53}, + [2943] = {.lex_state = 231, .external_lex_state = 53}, + [2944] = {.lex_state = 231, .external_lex_state = 53}, + [2945] = {.lex_state = 418, .external_lex_state = 49}, + [2946] = {.lex_state = 180, .external_lex_state = 52}, + [2947] = {.lex_state = 418, .external_lex_state = 49}, + [2948] = {.lex_state = 231, .external_lex_state = 53}, + [2949] = {.lex_state = 180, .external_lex_state = 52}, + [2950] = {.lex_state = 231, .external_lex_state = 53}, + [2951] = {.lex_state = 418, .external_lex_state = 32}, + [2952] = {.lex_state = 418, .external_lex_state = 49}, + [2953] = {.lex_state = 180, .external_lex_state = 52}, + [2954] = {.lex_state = 418, .external_lex_state = 49}, + [2955] = {.lex_state = 180, .external_lex_state = 52}, + [2956] = {.lex_state = 231, .external_lex_state = 53}, + [2957] = {.lex_state = 246}, + [2958] = {.lex_state = 231, .external_lex_state = 53}, + [2959] = {.lex_state = 246}, + [2960] = {.lex_state = 231, .external_lex_state = 53}, + [2961] = {.lex_state = 180, .external_lex_state = 52}, + [2962] = {.lex_state = 72, .external_lex_state = 32}, + [2963] = {.lex_state = 419, .external_lex_state = 32}, + [2964] = {.lex_state = 231, .external_lex_state = 53}, + [2965] = {.lex_state = 419, .external_lex_state = 32}, + [2966] = {.lex_state = 418, .external_lex_state = 49}, + [2967] = {.lex_state = 419, .external_lex_state = 32}, + [2968] = {.lex_state = 72, .external_lex_state = 32}, + [2969] = {.lex_state = 419, .external_lex_state = 32}, + [2970] = {.lex_state = 419, .external_lex_state = 32}, + [2971] = {.lex_state = 72, .external_lex_state = 32}, + [2972] = {.lex_state = 419, .external_lex_state = 32}, + [2973] = {.lex_state = 72, .external_lex_state = 32}, + [2974] = {.lex_state = 72, .external_lex_state = 32}, + [2975] = {.lex_state = 419, .external_lex_state = 32}, + [2976] = {.lex_state = 419, .external_lex_state = 32}, + [2977] = {.lex_state = 72, .external_lex_state = 32}, + [2978] = {.lex_state = 419, .external_lex_state = 32}, + [2979] = {.lex_state = 419, .external_lex_state = 32}, + [2980] = {.lex_state = 418, .external_lex_state = 32}, + [2981] = {.lex_state = 72, .external_lex_state = 32}, + [2982] = {.lex_state = 72, .external_lex_state = 32}, + [2983] = {.lex_state = 179, .external_lex_state = 35}, + [2984] = {.lex_state = 419, .external_lex_state = 32}, + [2985] = {.lex_state = 419, .external_lex_state = 32}, + [2986] = {.lex_state = 419, .external_lex_state = 32}, + [2987] = {.lex_state = 419, .external_lex_state = 32}, + [2988] = {.lex_state = 72, .external_lex_state = 32}, + [2989] = {.lex_state = 419, .external_lex_state = 32}, + [2990] = {.lex_state = 72, .external_lex_state = 32}, + [2991] = {.lex_state = 72, .external_lex_state = 32}, + [2992] = {.lex_state = 72, .external_lex_state = 32}, + [2993] = {.lex_state = 72, .external_lex_state = 32}, + [2994] = {.lex_state = 72, .external_lex_state = 32}, + [2995] = {.lex_state = 72, .external_lex_state = 32}, + [2996] = {.lex_state = 419, .external_lex_state = 32}, + [2997] = {.lex_state = 419, .external_lex_state = 32}, + [2998] = {.lex_state = 72, .external_lex_state = 32}, + [2999] = {.lex_state = 419, .external_lex_state = 32}, + [3000] = {.lex_state = 419, .external_lex_state = 32}, + [3001] = {.lex_state = 419, .external_lex_state = 32}, + [3002] = {.lex_state = 419, .external_lex_state = 32}, + [3003] = {.lex_state = 419, .external_lex_state = 32}, + [3004] = {.lex_state = 72, .external_lex_state = 32}, + [3005] = {.lex_state = 72, .external_lex_state = 32}, + [3006] = {.lex_state = 72, .external_lex_state = 32}, + [3007] = {.lex_state = 419, .external_lex_state = 32}, + [3008] = {.lex_state = 419, .external_lex_state = 32}, + [3009] = {.lex_state = 419, .external_lex_state = 32}, + [3010] = {.lex_state = 419, .external_lex_state = 32}, + [3011] = {.lex_state = 72, .external_lex_state = 32}, + [3012] = {.lex_state = 72, .external_lex_state = 32}, + [3013] = {.lex_state = 72, .external_lex_state = 32}, + [3014] = {.lex_state = 418, .external_lex_state = 49}, + [3015] = {.lex_state = 418, .external_lex_state = 32}, + [3016] = {.lex_state = 72, .external_lex_state = 32}, + [3017] = {.lex_state = 419, .external_lex_state = 32}, + [3018] = {.lex_state = 418, .external_lex_state = 32}, + [3019] = {.lex_state = 72, .external_lex_state = 32}, + [3020] = {.lex_state = 72, .external_lex_state = 32}, + [3021] = {.lex_state = 419, .external_lex_state = 32}, + [3022] = {.lex_state = 72, .external_lex_state = 32}, + [3023] = {.lex_state = 419, .external_lex_state = 32}, + [3024] = {.lex_state = 419, .external_lex_state = 32}, + [3025] = {.lex_state = 72, .external_lex_state = 32}, + [3026] = {.lex_state = 72, .external_lex_state = 32}, + [3027] = {.lex_state = 72, .external_lex_state = 32}, + [3028] = {.lex_state = 419, .external_lex_state = 32}, + [3029] = {.lex_state = 419, .external_lex_state = 32}, + [3030] = {.lex_state = 419, .external_lex_state = 32}, + [3031] = {.lex_state = 72, .external_lex_state = 32}, + [3032] = {.lex_state = 72, .external_lex_state = 32}, + [3033] = {.lex_state = 72, .external_lex_state = 32}, + [3034] = {.lex_state = 418, .external_lex_state = 49}, + [3035] = {.lex_state = 72, .external_lex_state = 32}, + [3036] = {.lex_state = 72, .external_lex_state = 32}, + [3037] = {.lex_state = 418, .external_lex_state = 49}, + [3038] = {.lex_state = 72, .external_lex_state = 32}, + [3039] = {.lex_state = 419, .external_lex_state = 32}, + [3040] = {.lex_state = 419, .external_lex_state = 32}, + [3041] = {.lex_state = 419, .external_lex_state = 32}, + [3042] = {.lex_state = 72, .external_lex_state = 32}, + [3043] = {.lex_state = 72, .external_lex_state = 32}, + [3044] = {.lex_state = 72, .external_lex_state = 32}, + [3045] = {.lex_state = 418, .external_lex_state = 49}, + [3046] = {.lex_state = 72, .external_lex_state = 32}, + [3047] = {.lex_state = 72, .external_lex_state = 32}, + [3048] = {.lex_state = 72, .external_lex_state = 32}, + [3049] = {.lex_state = 72, .external_lex_state = 32}, + [3050] = {.lex_state = 72, .external_lex_state = 32}, + [3051] = {.lex_state = 72, .external_lex_state = 32}, + [3052] = {.lex_state = 419, .external_lex_state = 32}, + [3053] = {.lex_state = 72, .external_lex_state = 32}, + [3054] = {.lex_state = 419, .external_lex_state = 32}, + [3055] = {.lex_state = 419, .external_lex_state = 32}, + [3056] = {.lex_state = 419, .external_lex_state = 32}, + [3057] = {.lex_state = 72, .external_lex_state = 32}, + [3058] = {.lex_state = 419, .external_lex_state = 32}, + [3059] = {.lex_state = 419, .external_lex_state = 32}, + [3060] = {.lex_state = 419, .external_lex_state = 32}, + [3061] = {.lex_state = 418, .external_lex_state = 32}, + [3062] = {.lex_state = 419, .external_lex_state = 32}, + [3063] = {.lex_state = 418, .external_lex_state = 49}, + [3064] = {.lex_state = 419, .external_lex_state = 32}, + [3065] = {.lex_state = 72, .external_lex_state = 32}, + [3066] = {.lex_state = 419, .external_lex_state = 32}, + [3067] = {.lex_state = 179, .external_lex_state = 35}, + [3068] = {.lex_state = 246}, + [3069] = {.lex_state = 419, .external_lex_state = 32}, + [3070] = {.lex_state = 246}, + [3071] = {.lex_state = 238, .external_lex_state = 54}, + [3072] = {.lex_state = 418, .external_lex_state = 32}, + [3073] = {.lex_state = 419, .external_lex_state = 32}, + [3074] = {.lex_state = 418, .external_lex_state = 32}, + [3075] = {.lex_state = 175, .external_lex_state = 52}, + [3076] = {.lex_state = 175, .external_lex_state = 52}, + [3077] = {.lex_state = 419, .external_lex_state = 32}, + [3078] = {.lex_state = 175, .external_lex_state = 52}, + [3079] = {.lex_state = 246}, + [3080] = {.lex_state = 238, .external_lex_state = 54}, + [3081] = {.lex_state = 179, .external_lex_state = 35}, + [3082] = {.lex_state = 418, .external_lex_state = 32}, + [3083] = {.lex_state = 418, .external_lex_state = 32}, + [3084] = {.lex_state = 238, .external_lex_state = 54}, + [3085] = {.lex_state = 238, .external_lex_state = 54}, + [3086] = {.lex_state = 418, .external_lex_state = 32}, + [3087] = {.lex_state = 246}, + [3088] = {.lex_state = 246}, + [3089] = {.lex_state = 72, .external_lex_state = 48}, + [3090] = {.lex_state = 418, .external_lex_state = 32}, + [3091] = {.lex_state = 175, .external_lex_state = 52}, + [3092] = {.lex_state = 175, .external_lex_state = 52}, + [3093] = {.lex_state = 238, .external_lex_state = 54}, + [3094] = {.lex_state = 418, .external_lex_state = 32}, + [3095] = {.lex_state = 246}, + [3096] = {.lex_state = 238, .external_lex_state = 54}, + [3097] = {.lex_state = 418, .external_lex_state = 32}, + [3098] = {.lex_state = 244, .external_lex_state = 33}, + [3099] = {.lex_state = 244, .external_lex_state = 33}, + [3100] = {.lex_state = 244, .external_lex_state = 33}, + [3101] = {.lex_state = 244, .external_lex_state = 33}, + [3102] = {.lex_state = 238, .external_lex_state = 54}, + [3103] = {.lex_state = 244, .external_lex_state = 33}, + [3104] = {.lex_state = 238, .external_lex_state = 54}, + [3105] = {.lex_state = 246, .external_lex_state = 42}, + [3106] = {.lex_state = 238, .external_lex_state = 54}, + [3107] = {.lex_state = 238, .external_lex_state = 54}, + [3108] = {.lex_state = 244, .external_lex_state = 33}, + [3109] = {.lex_state = 246, .external_lex_state = 42}, + [3110] = {.lex_state = 244, .external_lex_state = 33}, + [3111] = {.lex_state = 238, .external_lex_state = 54}, + [3112] = {.lex_state = 244, .external_lex_state = 33}, + [3113] = {.lex_state = 244, .external_lex_state = 33}, + [3114] = {.lex_state = 231, .external_lex_state = 55}, + [3115] = {.lex_state = 244, .external_lex_state = 33}, + [3116] = {.lex_state = 244, .external_lex_state = 33}, + [3117] = {.lex_state = 238, .external_lex_state = 54}, + [3118] = {.lex_state = 238, .external_lex_state = 54}, + [3119] = {.lex_state = 72, .external_lex_state = 31}, + [3120] = {.lex_state = 246, .external_lex_state = 42}, + [3121] = {.lex_state = 244, .external_lex_state = 33}, + [3122] = {.lex_state = 238, .external_lex_state = 54}, + [3123] = {.lex_state = 418, .external_lex_state = 32}, + [3124] = {.lex_state = 418, .external_lex_state = 32}, + [3125] = {.lex_state = 244, .external_lex_state = 33}, + [3126] = {.lex_state = 418, .external_lex_state = 32}, + [3127] = {.lex_state = 244, .external_lex_state = 33}, + [3128] = {.lex_state = 238, .external_lex_state = 54}, + [3129] = {.lex_state = 238, .external_lex_state = 54}, + [3130] = {.lex_state = 238, .external_lex_state = 54}, + [3131] = {.lex_state = 238, .external_lex_state = 54}, + [3132] = {.lex_state = 72, .external_lex_state = 31}, + [3133] = {.lex_state = 72, .external_lex_state = 48}, + [3134] = {.lex_state = 72, .external_lex_state = 48}, + [3135] = {.lex_state = 238, .external_lex_state = 54}, + [3136] = {.lex_state = 72, .external_lex_state = 48}, + [3137] = {.lex_state = 256, .external_lex_state = 56}, + [3138] = {.lex_state = 244, .external_lex_state = 33}, + [3139] = {.lex_state = 72, .external_lex_state = 49}, + [3140] = {.lex_state = 244, .external_lex_state = 33}, + [3141] = {.lex_state = 244, .external_lex_state = 33}, + [3142] = {.lex_state = 72, .external_lex_state = 32}, + [3143] = {.lex_state = 244, .external_lex_state = 33}, + [3144] = {.lex_state = 72, .external_lex_state = 32}, + [3145] = {.lex_state = 72, .external_lex_state = 32}, + [3146] = {.lex_state = 72, .external_lex_state = 32}, + [3147] = {.lex_state = 238, .external_lex_state = 54}, + [3148] = {.lex_state = 244, .external_lex_state = 33}, + [3149] = {.lex_state = 238, .external_lex_state = 54}, + [3150] = {.lex_state = 244, .external_lex_state = 33}, + [3151] = {.lex_state = 244, .external_lex_state = 33}, + [3152] = {.lex_state = 244, .external_lex_state = 33}, + [3153] = {.lex_state = 72, .external_lex_state = 48}, + [3154] = {.lex_state = 244, .external_lex_state = 33}, + [3155] = {.lex_state = 238, .external_lex_state = 54}, + [3156] = {.lex_state = 238, .external_lex_state = 54}, + [3157] = {.lex_state = 238, .external_lex_state = 54}, + [3158] = {.lex_state = 72, .external_lex_state = 32}, + [3159] = {.lex_state = 246, .external_lex_state = 42}, + [3160] = {.lex_state = 244, .external_lex_state = 33}, + [3161] = {.lex_state = 246, .external_lex_state = 42}, + [3162] = {.lex_state = 236, .external_lex_state = 33}, + [3163] = {.lex_state = 236, .external_lex_state = 33}, + [3164] = {.lex_state = 236, .external_lex_state = 23}, + [3165] = {.lex_state = 231, .external_lex_state = 55}, + [3166] = {.lex_state = 231, .external_lex_state = 55}, + [3167] = {.lex_state = 72, .external_lex_state = 49}, + [3168] = {.lex_state = 72, .external_lex_state = 49}, + [3169] = {.lex_state = 236, .external_lex_state = 33}, + [3170] = {.lex_state = 72, .external_lex_state = 49}, + [3171] = {.lex_state = 72, .external_lex_state = 49}, + [3172] = {.lex_state = 246, .external_lex_state = 41}, + [3173] = {.lex_state = 231, .external_lex_state = 55}, + [3174] = {.lex_state = 236, .external_lex_state = 33}, + [3175] = {.lex_state = 231, .external_lex_state = 55}, + [3176] = {.lex_state = 246, .external_lex_state = 46}, + [3177] = {.lex_state = 246, .external_lex_state = 41}, + [3178] = {.lex_state = 246, .external_lex_state = 46}, + [3179] = {.lex_state = 236, .external_lex_state = 33}, + [3180] = {.lex_state = 231, .external_lex_state = 55}, + [3181] = {.lex_state = 236, .external_lex_state = 33}, + [3182] = {.lex_state = 236, .external_lex_state = 33}, + [3183] = {.lex_state = 231, .external_lex_state = 55}, + [3184] = {.lex_state = 236, .external_lex_state = 33}, + [3185] = {.lex_state = 236, .external_lex_state = 33}, + [3186] = {.lex_state = 236, .external_lex_state = 33}, + [3187] = {.lex_state = 236, .external_lex_state = 33}, + [3188] = {.lex_state = 231, .external_lex_state = 55}, + [3189] = {.lex_state = 236, .external_lex_state = 33}, + [3190] = {.lex_state = 236, .external_lex_state = 33}, + [3191] = {.lex_state = 236, .external_lex_state = 33}, + [3192] = {.lex_state = 236, .external_lex_state = 33}, + [3193] = {.lex_state = 236, .external_lex_state = 33}, + [3194] = {.lex_state = 236, .external_lex_state = 33}, + [3195] = {.lex_state = 236, .external_lex_state = 33}, + [3196] = {.lex_state = 236, .external_lex_state = 33}, + [3197] = {.lex_state = 236, .external_lex_state = 33}, + [3198] = {.lex_state = 236, .external_lex_state = 33}, + [3199] = {.lex_state = 72, .external_lex_state = 49}, + [3200] = {.lex_state = 236, .external_lex_state = 33}, + [3201] = {.lex_state = 236, .external_lex_state = 33}, + [3202] = {.lex_state = 236, .external_lex_state = 33}, + [3203] = {.lex_state = 236, .external_lex_state = 33}, + [3204] = {.lex_state = 236, .external_lex_state = 33}, + [3205] = {.lex_state = 236, .external_lex_state = 33}, + [3206] = {.lex_state = 236, .external_lex_state = 33}, + [3207] = {.lex_state = 236, .external_lex_state = 33}, + [3208] = {.lex_state = 236, .external_lex_state = 33}, + [3209] = {.lex_state = 236, .external_lex_state = 33}, + [3210] = {.lex_state = 236, .external_lex_state = 33}, + [3211] = {.lex_state = 236, .external_lex_state = 33}, + [3212] = {.lex_state = 72, .external_lex_state = 49}, + [3213] = {.lex_state = 236, .external_lex_state = 33}, + [3214] = {.lex_state = 246, .external_lex_state = 46}, + [3215] = {.lex_state = 236, .external_lex_state = 33}, + [3216] = {.lex_state = 236, .external_lex_state = 33}, + [3217] = {.lex_state = 236, .external_lex_state = 33}, + [3218] = {.lex_state = 246, .external_lex_state = 46}, + [3219] = {.lex_state = 236, .external_lex_state = 33}, + [3220] = {.lex_state = 236, .external_lex_state = 33}, + [3221] = {.lex_state = 236, .external_lex_state = 33}, + [3222] = {.lex_state = 236, .external_lex_state = 33}, + [3223] = {.lex_state = 236, .external_lex_state = 33}, + [3224] = {.lex_state = 256, .external_lex_state = 57}, + [3225] = {.lex_state = 236, .external_lex_state = 33}, + [3226] = {.lex_state = 236, .external_lex_state = 33}, + [3227] = {.lex_state = 236, .external_lex_state = 33}, + [3228] = {.lex_state = 236, .external_lex_state = 33}, + [3229] = {.lex_state = 236, .external_lex_state = 33}, + [3230] = {.lex_state = 246, .external_lex_state = 46}, + [3231] = {.lex_state = 246, .external_lex_state = 46}, + [3232] = {.lex_state = 236, .external_lex_state = 33}, + [3233] = {.lex_state = 236, .external_lex_state = 33}, + [3234] = {.lex_state = 236, .external_lex_state = 33}, + [3235] = {.lex_state = 236, .external_lex_state = 33}, + [3236] = {.lex_state = 236, .external_lex_state = 33}, + [3237] = {.lex_state = 231, .external_lex_state = 56}, + [3238] = {.lex_state = 236, .external_lex_state = 33}, + [3239] = {.lex_state = 236, .external_lex_state = 33}, + [3240] = {.lex_state = 231, .external_lex_state = 56}, + [3241] = {.lex_state = 236, .external_lex_state = 33}, + [3242] = {.lex_state = 236, .external_lex_state = 23}, + [3243] = {.lex_state = 231, .external_lex_state = 56}, + [3244] = {.lex_state = 236, .external_lex_state = 33}, + [3245] = {.lex_state = 236, .external_lex_state = 33}, + [3246] = {.lex_state = 236, .external_lex_state = 33}, + [3247] = {.lex_state = 231, .external_lex_state = 56}, + [3248] = {.lex_state = 236, .external_lex_state = 33}, + [3249] = {.lex_state = 236, .external_lex_state = 33}, + [3250] = {.lex_state = 231, .external_lex_state = 56}, + [3251] = {.lex_state = 236, .external_lex_state = 33}, + [3252] = {.lex_state = 236, .external_lex_state = 33}, + [3253] = {.lex_state = 236, .external_lex_state = 33}, + [3254] = {.lex_state = 236, .external_lex_state = 33}, + [3255] = {.lex_state = 231, .external_lex_state = 57}, + [3256] = {.lex_state = 231, .external_lex_state = 56}, + [3257] = {.lex_state = 231, .external_lex_state = 56}, + [3258] = {.lex_state = 231, .external_lex_state = 55}, + [3259] = {.lex_state = 231, .external_lex_state = 55}, + [3260] = {.lex_state = 231, .external_lex_state = 56}, + [3261] = {.lex_state = 231, .external_lex_state = 56}, + [3262] = {.lex_state = 231, .external_lex_state = 55}, + [3263] = {.lex_state = 231, .external_lex_state = 56}, + [3264] = {.lex_state = 231, .external_lex_state = 55}, + [3265] = {.lex_state = 231, .external_lex_state = 55}, + [3266] = {.lex_state = 246, .external_lex_state = 42}, + [3267] = {.lex_state = 231, .external_lex_state = 56}, + [3268] = {.lex_state = 231, .external_lex_state = 55}, + [3269] = {.lex_state = 231, .external_lex_state = 56}, + [3270] = {.lex_state = 231, .external_lex_state = 55}, + [3271] = {.lex_state = 246, .external_lex_state = 42}, + [3272] = {.lex_state = 231, .external_lex_state = 55}, + [3273] = {.lex_state = 231, .external_lex_state = 56}, + [3274] = {.lex_state = 246, .external_lex_state = 42}, + [3275] = {.lex_state = 231, .external_lex_state = 56}, + [3276] = {.lex_state = 231, .external_lex_state = 56}, + [3277] = {.lex_state = 247, .external_lex_state = 58}, + [3278] = {.lex_state = 231, .external_lex_state = 55}, + [3279] = {.lex_state = 231, .external_lex_state = 56}, + [3280] = {.lex_state = 231, .external_lex_state = 57}, + [3281] = {.lex_state = 231, .external_lex_state = 55}, + [3282] = {.lex_state = 231, .external_lex_state = 57}, + [3283] = {.lex_state = 231, .external_lex_state = 56}, + [3284] = {.lex_state = 231, .external_lex_state = 55}, + [3285] = {.lex_state = 231, .external_lex_state = 56}, + [3286] = {.lex_state = 231, .external_lex_state = 55}, + [3287] = {.lex_state = 231, .external_lex_state = 57}, + [3288] = {.lex_state = 231, .external_lex_state = 57}, + [3289] = {.lex_state = 236, .external_lex_state = 23}, + [3290] = {.lex_state = 231, .external_lex_state = 55}, + [3291] = {.lex_state = 246, .external_lex_state = 42}, + [3292] = {.lex_state = 231, .external_lex_state = 56}, + [3293] = {.lex_state = 231, .external_lex_state = 57}, + [3294] = {.lex_state = 231, .external_lex_state = 56}, + [3295] = {.lex_state = 231, .external_lex_state = 56}, + [3296] = {.lex_state = 231, .external_lex_state = 55}, + [3297] = {.lex_state = 256, .external_lex_state = 41}, + [3298] = {.lex_state = 246, .external_lex_state = 42}, + [3299] = {.lex_state = 231, .external_lex_state = 56}, + [3300] = {.lex_state = 231, .external_lex_state = 55}, + [3301] = {.lex_state = 231, .external_lex_state = 57}, + [3302] = {.lex_state = 231, .external_lex_state = 55}, + [3303] = {.lex_state = 72, .external_lex_state = 32}, + [3304] = {.lex_state = 72, .external_lex_state = 32}, + [3305] = {.lex_state = 231, .external_lex_state = 55}, + [3306] = {.lex_state = 231, .external_lex_state = 56}, + [3307] = {.lex_state = 231, .external_lex_state = 55}, + [3308] = {.lex_state = 256, .external_lex_state = 41}, + [3309] = {.lex_state = 231, .external_lex_state = 57}, + [3310] = {.lex_state = 231, .external_lex_state = 57}, + [3311] = {.lex_state = 231, .external_lex_state = 57}, + [3312] = {.lex_state = 231, .external_lex_state = 57}, + [3313] = {.lex_state = 231, .external_lex_state = 57}, + [3314] = {.lex_state = 72, .external_lex_state = 32}, + [3315] = {.lex_state = 246, .external_lex_state = 46}, + [3316] = {.lex_state = 231, .external_lex_state = 57}, + [3317] = {.lex_state = 231, .external_lex_state = 57}, + [3318] = {.lex_state = 231, .external_lex_state = 57}, + [3319] = {.lex_state = 231, .external_lex_state = 57}, + [3320] = {.lex_state = 231, .external_lex_state = 57}, + [3321] = {.lex_state = 159, .external_lex_state = 44}, + [3322] = {.lex_state = 231, .external_lex_state = 57}, + [3323] = {.lex_state = 231, .external_lex_state = 57}, + [3324] = {.lex_state = 256, .external_lex_state = 46}, + [3325] = {.lex_state = 246, .external_lex_state = 46}, + [3326] = {.lex_state = 256, .external_lex_state = 46}, + [3327] = {.lex_state = 231, .external_lex_state = 57}, + [3328] = {.lex_state = 231, .external_lex_state = 57}, + [3329] = {.lex_state = 72, .external_lex_state = 32}, + [3330] = {.lex_state = 231, .external_lex_state = 57}, + [3331] = {.lex_state = 256, .external_lex_state = 46}, + [3332] = {.lex_state = 159, .external_lex_state = 44}, + [3333] = {.lex_state = 72, .external_lex_state = 32}, + [3334] = {.lex_state = 256, .external_lex_state = 41}, + [3335] = {.lex_state = 231, .external_lex_state = 57}, + [3336] = {.lex_state = 246, .external_lex_state = 42}, + [3337] = {.lex_state = 231, .external_lex_state = 57}, + [3338] = {.lex_state = 231, .external_lex_state = 57}, + [3339] = {.lex_state = 246, .external_lex_state = 46}, + [3340] = {.lex_state = 246, .external_lex_state = 46}, + [3341] = {.lex_state = 246, .external_lex_state = 42}, + [3342] = {.lex_state = 246, .external_lex_state = 41}, + [3343] = {.lex_state = 246, .external_lex_state = 42}, + [3344] = {.lex_state = 256, .external_lex_state = 46}, + [3345] = {.lex_state = 246, .external_lex_state = 42}, + [3346] = {.lex_state = 246, .external_lex_state = 42}, + [3347] = {.lex_state = 246, .external_lex_state = 41}, + [3348] = {.lex_state = 246, .external_lex_state = 42}, + [3349] = {.lex_state = 246, .external_lex_state = 42}, + [3350] = {.lex_state = 246, .external_lex_state = 42}, + [3351] = {.lex_state = 246, .external_lex_state = 42}, + [3352] = {.lex_state = 246, .external_lex_state = 41}, + [3353] = {.lex_state = 246, .external_lex_state = 46}, + [3354] = {.lex_state = 246, .external_lex_state = 46}, + [3355] = {.lex_state = 246, .external_lex_state = 46}, + [3356] = {.lex_state = 246, .external_lex_state = 46}, + [3357] = {.lex_state = 246, .external_lex_state = 46}, + [3358] = {.lex_state = 246, .external_lex_state = 46}, + [3359] = {.lex_state = 246, .external_lex_state = 46}, + [3360] = {.lex_state = 246, .external_lex_state = 46}, + [3361] = {.lex_state = 246, .external_lex_state = 46}, + [3362] = {.lex_state = 246, .external_lex_state = 46}, + [3363] = {.lex_state = 246, .external_lex_state = 46}, + [3364] = {.lex_state = 246, .external_lex_state = 46}, + [3365] = {.lex_state = 246, .external_lex_state = 46}, + [3366] = {.lex_state = 246, .external_lex_state = 46}, + [3367] = {.lex_state = 246, .external_lex_state = 46}, + [3368] = {.lex_state = 246, .external_lex_state = 46}, + [3369] = {.lex_state = 230, .external_lex_state = 53}, + [3370] = {.lex_state = 246, .external_lex_state = 46}, + [3371] = {.lex_state = 246, .external_lex_state = 46}, + [3372] = {.lex_state = 246, .external_lex_state = 46}, + [3373] = {.lex_state = 230, .external_lex_state = 53}, + [3374] = {.lex_state = 246, .external_lex_state = 46}, + [3375] = {.lex_state = 246, .external_lex_state = 46}, + [3376] = {.lex_state = 246, .external_lex_state = 46}, + [3377] = {.lex_state = 246, .external_lex_state = 46}, + [3378] = {.lex_state = 246, .external_lex_state = 46}, + [3379] = {.lex_state = 246, .external_lex_state = 46}, + [3380] = {.lex_state = 246, .external_lex_state = 46}, + [3381] = {.lex_state = 246, .external_lex_state = 46}, + [3382] = {.lex_state = 246, .external_lex_state = 46}, + [3383] = {.lex_state = 246, .external_lex_state = 46}, + [3384] = {.lex_state = 246, .external_lex_state = 46}, + [3385] = {.lex_state = 246, .external_lex_state = 46}, + [3386] = {.lex_state = 246, .external_lex_state = 46}, + [3387] = {.lex_state = 246, .external_lex_state = 46}, + [3388] = {.lex_state = 246, .external_lex_state = 46}, + [3389] = {.lex_state = 246, .external_lex_state = 46}, + [3390] = {.lex_state = 246, .external_lex_state = 46}, + [3391] = {.lex_state = 246, .external_lex_state = 46}, + [3392] = {.lex_state = 246, .external_lex_state = 46}, + [3393] = {.lex_state = 246, .external_lex_state = 46}, + [3394] = {.lex_state = 246, .external_lex_state = 46}, + [3395] = {.lex_state = 246, .external_lex_state = 46}, + [3396] = {.lex_state = 246, .external_lex_state = 46}, + [3397] = {.lex_state = 246, .external_lex_state = 46}, + [3398] = {.lex_state = 246, .external_lex_state = 46}, + [3399] = {.lex_state = 224, .external_lex_state = 59}, + [3400] = {.lex_state = 223}, + [3401] = {.lex_state = 223}, + [3402] = {.lex_state = 224, .external_lex_state = 59}, + [3403] = {.lex_state = 252}, + [3404] = {.lex_state = 252}, + [3405] = {.lex_state = 252}, + [3406] = {.lex_state = 252}, + [3407] = {.lex_state = 252}, + [3408] = {.lex_state = 252}, + [3409] = {.lex_state = 252}, + [3410] = {.lex_state = 252}, + [3411] = {.lex_state = 252}, + [3412] = {.lex_state = 252}, + [3413] = {.lex_state = 252}, + [3414] = {.lex_state = 252}, + [3415] = {.lex_state = 252}, + [3416] = {.lex_state = 252}, + [3417] = {.lex_state = 252}, + [3418] = {.lex_state = 252}, + [3419] = {.lex_state = 252}, + [3420] = {.lex_state = 252}, + [3421] = {.lex_state = 252}, + [3422] = {.lex_state = 252}, + [3423] = {.lex_state = 252}, + [3424] = {.lex_state = 252}, + [3425] = {.lex_state = 252}, + [3426] = {.lex_state = 252}, + [3427] = {.lex_state = 252}, + [3428] = {.lex_state = 252}, + [3429] = {.lex_state = 252}, + [3430] = {.lex_state = 252}, + [3431] = {.lex_state = 252}, + [3432] = {.lex_state = 252}, + [3433] = {.lex_state = 252}, + [3434] = {.lex_state = 252}, + [3435] = {.lex_state = 252}, + [3436] = {.lex_state = 252}, + [3437] = {.lex_state = 252}, + [3438] = {.lex_state = 252}, + [3439] = {.lex_state = 252}, + [3440] = {.lex_state = 252}, + [3441] = {.lex_state = 252}, + [3442] = {.lex_state = 252}, + [3443] = {.lex_state = 252}, + [3444] = {.lex_state = 252}, + [3445] = {.lex_state = 252}, + [3446] = {.lex_state = 252}, + [3447] = {.lex_state = 252}, + [3448] = {.lex_state = 252}, + [3449] = {.lex_state = 71, .external_lex_state = 60}, + [3450] = {.lex_state = 71, .external_lex_state = 60}, + [3451] = {.lex_state = 252}, + [3452] = {.lex_state = 252}, + [3453] = {.lex_state = 252}, + [3454] = {.lex_state = 71, .external_lex_state = 60}, + [3455] = {.lex_state = 252}, + [3456] = {.lex_state = 252}, + [3457] = {.lex_state = 252}, + [3458] = {.lex_state = 252}, + [3459] = {.lex_state = 252}, + [3460] = {.lex_state = 71, .external_lex_state = 60}, + [3461] = {.lex_state = 252}, + [3462] = {.lex_state = 252}, + [3463] = {.lex_state = 252}, + [3464] = {.lex_state = 252}, + [3465] = {.lex_state = 252}, + [3466] = {.lex_state = 252}, + [3467] = {.lex_state = 252}, + [3468] = {.lex_state = 252}, + [3469] = {.lex_state = 252}, + [3470] = {.lex_state = 252}, + [3471] = {.lex_state = 252}, + [3472] = {.lex_state = 252}, + [3473] = {.lex_state = 252}, + [3474] = {.lex_state = 252}, + [3475] = {.lex_state = 252}, + [3476] = {.lex_state = 252}, + [3477] = {.lex_state = 252}, + [3478] = {.lex_state = 252}, + [3479] = {.lex_state = 252}, + [3480] = {.lex_state = 71, .external_lex_state = 60}, + [3481] = {.lex_state = 252}, + [3482] = {.lex_state = 252}, + [3483] = {.lex_state = 252}, + [3484] = {.lex_state = 71, .external_lex_state = 60}, + [3485] = {.lex_state = 252}, + [3486] = {.lex_state = 252}, + [3487] = {.lex_state = 252}, + [3488] = {.lex_state = 252}, + [3489] = {.lex_state = 252}, + [3490] = {.lex_state = 252}, + [3491] = {.lex_state = 252}, + [3492] = {.lex_state = 71, .external_lex_state = 60}, + [3493] = {.lex_state = 252}, + [3494] = {.lex_state = 252}, + [3495] = {.lex_state = 252}, + [3496] = {.lex_state = 252}, + [3497] = {.lex_state = 252}, + [3498] = {.lex_state = 252}, + [3499] = {.lex_state = 252}, + [3500] = {.lex_state = 252}, + [3501] = {.lex_state = 252}, + [3502] = {.lex_state = 252}, + [3503] = {.lex_state = 252}, + [3504] = {.lex_state = 71, .external_lex_state = 60}, + [3505] = {.lex_state = 252}, + [3506] = {.lex_state = 252}, + [3507] = {.lex_state = 252}, + [3508] = {.lex_state = 252}, + [3509] = {.lex_state = 252}, + [3510] = {.lex_state = 252}, + [3511] = {.lex_state = 252}, + [3512] = {.lex_state = 226}, + [3513] = {.lex_state = 225}, + [3514] = {.lex_state = 226}, + [3515] = {.lex_state = 225}, + [3516] = {.lex_state = 225}, + [3517] = {.lex_state = 225}, + [3518] = {.lex_state = 225}, + [3519] = {.lex_state = 225}, + [3520] = {.lex_state = 225}, + [3521] = {.lex_state = 226}, + [3522] = {.lex_state = 226}, + [3523] = {.lex_state = 225}, + [3524] = {.lex_state = 225}, + [3525] = {.lex_state = 225}, + [3526] = {.lex_state = 225}, + [3527] = {.lex_state = 226}, + [3528] = {.lex_state = 225}, + [3529] = {.lex_state = 225}, + [3530] = {.lex_state = 225}, + [3531] = {.lex_state = 225}, + [3532] = {.lex_state = 225}, + [3533] = {.lex_state = 225}, + [3534] = {.lex_state = 226}, + [3535] = {.lex_state = 225}, + [3536] = {.lex_state = 225}, + [3537] = {.lex_state = 225}, + [3538] = {.lex_state = 225}, + [3539] = {.lex_state = 226}, + [3540] = {.lex_state = 225}, + [3541] = {.lex_state = 225}, + [3542] = {.lex_state = 225}, + [3543] = {.lex_state = 225}, + [3544] = {.lex_state = 226}, + [3545] = {.lex_state = 226}, + [3546] = {.lex_state = 226}, + [3547] = {.lex_state = 225}, + [3548] = {.lex_state = 225}, + [3549] = {.lex_state = 225}, + [3550] = {.lex_state = 226}, + [3551] = {.lex_state = 225}, + [3552] = {.lex_state = 225}, + [3553] = {.lex_state = 225}, + [3554] = {.lex_state = 225}, + [3555] = {.lex_state = 225}, + [3556] = {.lex_state = 226}, + [3557] = {.lex_state = 225}, + [3558] = {.lex_state = 225}, + [3559] = {.lex_state = 225}, + [3560] = {.lex_state = 225}, + [3561] = {.lex_state = 226}, + [3562] = {.lex_state = 225}, + [3563] = {.lex_state = 225}, + [3564] = {.lex_state = 225}, + [3565] = {.lex_state = 225}, + [3566] = {.lex_state = 226}, + [3567] = {.lex_state = 225}, + [3568] = {.lex_state = 226}, + [3569] = {.lex_state = 225}, + [3570] = {.lex_state = 225}, + [3571] = {.lex_state = 225}, + [3572] = {.lex_state = 226}, + [3573] = {.lex_state = 226}, + [3574] = {.lex_state = 225}, + [3575] = {.lex_state = 226}, + [3576] = {.lex_state = 226}, + [3577] = {.lex_state = 225}, + [3578] = {.lex_state = 225}, + [3579] = {.lex_state = 225}, + [3580] = {.lex_state = 225}, + [3581] = {.lex_state = 225}, + [3582] = {.lex_state = 226}, + [3583] = {.lex_state = 225}, + [3584] = {.lex_state = 225}, + [3585] = {.lex_state = 226}, + [3586] = {.lex_state = 226}, + [3587] = {.lex_state = 225}, + [3588] = {.lex_state = 225}, + [3589] = {.lex_state = 226}, + [3590] = {.lex_state = 225}, + [3591] = {.lex_state = 225}, + [3592] = {.lex_state = 226}, + [3593] = {.lex_state = 225}, + [3594] = {.lex_state = 225}, + [3595] = {.lex_state = 225}, + [3596] = {.lex_state = 225}, + [3597] = {.lex_state = 225}, + [3598] = {.lex_state = 226}, + [3599] = {.lex_state = 225}, + [3600] = {.lex_state = 225}, + [3601] = {.lex_state = 226}, + [3602] = {.lex_state = 225}, + [3603] = {.lex_state = 226}, + [3604] = {.lex_state = 226}, + [3605] = {.lex_state = 225}, + [3606] = {.lex_state = 226}, + [3607] = {.lex_state = 225}, + [3608] = {.lex_state = 225}, + [3609] = {.lex_state = 225}, + [3610] = {.lex_state = 225}, + [3611] = {.lex_state = 225}, + [3612] = {.lex_state = 225}, + [3613] = {.lex_state = 225}, + [3614] = {.lex_state = 225}, + [3615] = {.lex_state = 225}, + [3616] = {.lex_state = 226}, + [3617] = {.lex_state = 225}, + [3618] = {.lex_state = 226}, + [3619] = {.lex_state = 225}, + [3620] = {.lex_state = 226}, + [3621] = {.lex_state = 225}, + [3622] = {.lex_state = 226}, + [3623] = {.lex_state = 225}, + [3624] = {.lex_state = 226}, + [3625] = {.lex_state = 225}, + [3626] = {.lex_state = 225}, + [3627] = {.lex_state = 225}, + [3628] = {.lex_state = 226}, + [3629] = {.lex_state = 225}, + [3630] = {.lex_state = 225}, + [3631] = {.lex_state = 225}, + [3632] = {.lex_state = 225}, + [3633] = {.lex_state = 225}, + [3634] = {.lex_state = 225}, + [3635] = {.lex_state = 225}, + [3636] = {.lex_state = 225}, + [3637] = {.lex_state = 226}, + [3638] = {.lex_state = 226}, + [3639] = {.lex_state = 226}, + [3640] = {.lex_state = 225}, + [3641] = {.lex_state = 225}, + [3642] = {.lex_state = 225}, + [3643] = {.lex_state = 225}, + [3644] = {.lex_state = 226}, + [3645] = {.lex_state = 225}, + [3646] = {.lex_state = 226}, + [3647] = {.lex_state = 226}, + [3648] = {.lex_state = 225}, + [3649] = {.lex_state = 226}, + [3650] = {.lex_state = 225}, + [3651] = {.lex_state = 225}, + [3652] = {.lex_state = 226}, + [3653] = {.lex_state = 225}, + [3654] = {.lex_state = 226}, + [3655] = {.lex_state = 225}, + [3656] = {.lex_state = 226}, + [3657] = {.lex_state = 226}, + [3658] = {.lex_state = 227}, + [3659] = {.lex_state = 418, .external_lex_state = 44}, + [3660] = {.lex_state = 246, .external_lex_state = 61}, + [3661] = {.lex_state = 228}, + [3662] = {.lex_state = 246, .external_lex_state = 61}, + [3663] = {.lex_state = 246, .external_lex_state = 61}, + [3664] = {.lex_state = 228}, + [3665] = {.lex_state = 246, .external_lex_state = 61}, + [3666] = {.lex_state = 246, .external_lex_state = 61}, + [3667] = {.lex_state = 246, .external_lex_state = 61}, + [3668] = {.lex_state = 246, .external_lex_state = 61}, + [3669] = {.lex_state = 228}, + [3670] = {.lex_state = 210, .external_lex_state = 62}, + [3671] = {.lex_state = 255, .external_lex_state = 59}, + [3672] = {.lex_state = 228}, + [3673] = {.lex_state = 210, .external_lex_state = 62}, + [3674] = {.lex_state = 246, .external_lex_state = 61}, + [3675] = {.lex_state = 228}, + [3676] = {.lex_state = 228}, + [3677] = {.lex_state = 210, .external_lex_state = 62}, + [3678] = {.lex_state = 228}, + [3679] = {.lex_state = 246, .external_lex_state = 61}, + [3680] = {.lex_state = 256}, + [3681] = {.lex_state = 252, .external_lex_state = 63}, + [3682] = {.lex_state = 252, .external_lex_state = 63}, + [3683] = {.lex_state = 251, .external_lex_state = 53}, + [3684] = {.lex_state = 252, .external_lex_state = 63}, + [3685] = {.lex_state = 252, .external_lex_state = 63}, + [3686] = {.lex_state = 252, .external_lex_state = 63}, + [3687] = {.lex_state = 252, .external_lex_state = 63}, + [3688] = {.lex_state = 252, .external_lex_state = 63}, + [3689] = {.lex_state = 252, .external_lex_state = 63}, + [3690] = {.lex_state = 252, .external_lex_state = 63}, + [3691] = {.lex_state = 252, .external_lex_state = 63}, + [3692] = {.lex_state = 71, .external_lex_state = 64}, + [3693] = {.lex_state = 73, .external_lex_state = 65}, + [3694] = {.lex_state = 252}, + [3695] = {.lex_state = 252}, + [3696] = {.lex_state = 255}, + [3697] = {.lex_state = 255}, + [3698] = {.lex_state = 73, .external_lex_state = 65}, + [3699] = {.lex_state = 255}, + [3700] = {.lex_state = 73, .external_lex_state = 65}, + [3701] = {.lex_state = 255}, + [3702] = {.lex_state = 255}, + [3703] = {.lex_state = 255}, + [3704] = {.lex_state = 255}, + [3705] = {.lex_state = 255}, + [3706] = {.lex_state = 255}, + [3707] = {.lex_state = 73, .external_lex_state = 65}, + [3708] = {.lex_state = 255}, + [3709] = {.lex_state = 73, .external_lex_state = 65}, + [3710] = {.lex_state = 255}, + [3711] = {.lex_state = 73, .external_lex_state = 65}, + [3712] = {.lex_state = 73, .external_lex_state = 65}, + [3713] = {.lex_state = 255}, + [3714] = {.lex_state = 255}, + [3715] = {.lex_state = 73, .external_lex_state = 65}, + [3716] = {.lex_state = 255}, + [3717] = {.lex_state = 255}, + [3718] = {.lex_state = 255}, + [3719] = {.lex_state = 255}, + [3720] = {.lex_state = 255}, + [3721] = {.lex_state = 73, .external_lex_state = 65}, + [3722] = {.lex_state = 255}, + [3723] = {.lex_state = 73, .external_lex_state = 65}, + [3724] = {.lex_state = 73, .external_lex_state = 65}, + [3725] = {.lex_state = 210}, + [3726] = {.lex_state = 73, .external_lex_state = 65}, + [3727] = {.lex_state = 73, .external_lex_state = 65}, + [3728] = {.lex_state = 73, .external_lex_state = 65}, + [3729] = {.lex_state = 73, .external_lex_state = 65}, + [3730] = {.lex_state = 73, .external_lex_state = 44}, + [3731] = {.lex_state = 210}, + [3732] = {.lex_state = 73, .external_lex_state = 65}, + [3733] = {.lex_state = 210, .external_lex_state = 62}, + [3734] = {.lex_state = 73, .external_lex_state = 65}, + [3735] = {.lex_state = 210}, + [3736] = {.lex_state = 210}, + [3737] = {.lex_state = 210}, + [3738] = {.lex_state = 73, .external_lex_state = 65}, + [3739] = {.lex_state = 73, .external_lex_state = 65}, + [3740] = {.lex_state = 73, .external_lex_state = 65}, + [3741] = {.lex_state = 73, .external_lex_state = 65}, + [3742] = {.lex_state = 210}, + [3743] = {.lex_state = 73, .external_lex_state = 65}, + [3744] = {.lex_state = 73, .external_lex_state = 65}, + [3745] = {.lex_state = 210}, + [3746] = {.lex_state = 73, .external_lex_state = 65}, + [3747] = {.lex_state = 210}, + [3748] = {.lex_state = 73, .external_lex_state = 65}, + [3749] = {.lex_state = 210}, + [3750] = {.lex_state = 210}, + [3751] = {.lex_state = 210}, + [3752] = {.lex_state = 210}, + [3753] = {.lex_state = 210, .external_lex_state = 62}, + [3754] = {.lex_state = 210}, + [3755] = {.lex_state = 210}, + [3756] = {.lex_state = 210}, + [3757] = {.lex_state = 210}, + [3758] = {.lex_state = 210}, + [3759] = {.lex_state = 210}, + [3760] = {.lex_state = 210}, + [3761] = {.lex_state = 210}, + [3762] = {.lex_state = 210, .external_lex_state = 62}, + [3763] = {.lex_state = 210, .external_lex_state = 62}, + [3764] = {.lex_state = 210, .external_lex_state = 62}, + [3765] = {.lex_state = 73, .external_lex_state = 65}, + [3766] = {.lex_state = 73, .external_lex_state = 44}, + [3767] = {.lex_state = 73, .external_lex_state = 44}, + [3768] = {.lex_state = 73, .external_lex_state = 65}, + [3769] = {.lex_state = 210}, + [3770] = {.lex_state = 210, .external_lex_state = 62}, + [3771] = {.lex_state = 210}, + [3772] = {.lex_state = 73, .external_lex_state = 65}, + [3773] = {.lex_state = 73, .external_lex_state = 44}, + [3774] = {.lex_state = 210}, + [3775] = {.lex_state = 210}, + [3776] = {.lex_state = 235, .external_lex_state = 63}, + [3777] = {.lex_state = 70, .external_lex_state = 44}, + [3778] = {.lex_state = 70, .external_lex_state = 44}, + [3779] = {.lex_state = 70, .external_lex_state = 44}, + [3780] = {.lex_state = 256}, + [3781] = {.lex_state = 70, .external_lex_state = 44}, + [3782] = {.lex_state = 256}, + [3783] = {.lex_state = 235, .external_lex_state = 63}, + [3784] = {.lex_state = 248, .external_lex_state = 66}, + [3785] = {.lex_state = 235, .external_lex_state = 63}, + [3786] = {.lex_state = 235, .external_lex_state = 63}, + [3787] = {.lex_state = 256}, + [3788] = {.lex_state = 235, .external_lex_state = 63}, + [3789] = {.lex_state = 235, .external_lex_state = 63}, + [3790] = {.lex_state = 256}, + [3791] = {.lex_state = 235, .external_lex_state = 63}, + [3792] = {.lex_state = 235, .external_lex_state = 63}, + [3793] = {.lex_state = 73, .external_lex_state = 44}, + [3794] = {.lex_state = 256}, + [3795] = {.lex_state = 70, .external_lex_state = 44}, + [3796] = {.lex_state = 258, .external_lex_state = 67}, + [3797] = {.lex_state = 70, .external_lex_state = 44}, + [3798] = {.lex_state = 256}, + [3799] = {.lex_state = 235, .external_lex_state = 63}, + [3800] = {.lex_state = 70, .external_lex_state = 44}, + [3801] = {.lex_state = 70, .external_lex_state = 44}, + [3802] = {.lex_state = 210, .external_lex_state = 68}, + [3803] = {.lex_state = 432, .external_lex_state = 69}, + [3804] = {.lex_state = 432, .external_lex_state = 69}, + [3805] = {.lex_state = 73, .external_lex_state = 44}, + [3806] = {.lex_state = 255}, + [3807] = {.lex_state = 210, .external_lex_state = 70}, + [3808] = {.lex_state = 234}, + [3809] = {.lex_state = 258, .external_lex_state = 67}, + [3810] = {.lex_state = 210, .external_lex_state = 68}, + [3811] = {.lex_state = 235, .external_lex_state = 63}, + [3812] = {.lex_state = 235, .external_lex_state = 63}, + [3813] = {.lex_state = 210, .external_lex_state = 68}, + [3814] = {.lex_state = 210, .external_lex_state = 68}, + [3815] = {.lex_state = 210, .external_lex_state = 68}, + [3816] = {.lex_state = 432, .external_lex_state = 69}, + [3817] = {.lex_state = 432, .external_lex_state = 69}, + [3818] = {.lex_state = 255}, + [3819] = {.lex_state = 432, .external_lex_state = 69}, + [3820] = {.lex_state = 255}, + [3821] = {.lex_state = 258, .external_lex_state = 67}, + [3822] = {.lex_state = 210, .external_lex_state = 68}, + [3823] = {.lex_state = 235, .external_lex_state = 63}, + [3824] = {.lex_state = 73, .external_lex_state = 44}, + [3825] = {.lex_state = 432, .external_lex_state = 69}, + [3826] = {.lex_state = 235, .external_lex_state = 63}, + [3827] = {.lex_state = 235, .external_lex_state = 63}, + [3828] = {.lex_state = 210, .external_lex_state = 68}, + [3829] = {.lex_state = 210, .external_lex_state = 68}, + [3830] = {.lex_state = 210, .external_lex_state = 68}, + [3831] = {.lex_state = 210, .external_lex_state = 70}, + [3832] = {.lex_state = 210, .external_lex_state = 68}, + [3833] = {.lex_state = 210, .external_lex_state = 68}, + [3834] = {.lex_state = 210, .external_lex_state = 68}, + [3835] = {.lex_state = 234}, + [3836] = {.lex_state = 432, .external_lex_state = 69}, + [3837] = {.lex_state = 210, .external_lex_state = 68}, + [3838] = {.lex_state = 432, .external_lex_state = 69}, + [3839] = {.lex_state = 432, .external_lex_state = 69}, + [3840] = {.lex_state = 73, .external_lex_state = 44}, + [3841] = {.lex_state = 432, .external_lex_state = 69}, + [3842] = {.lex_state = 73, .external_lex_state = 44}, + [3843] = {.lex_state = 234}, + [3844] = {.lex_state = 432, .external_lex_state = 69}, + [3845] = {.lex_state = 432, .external_lex_state = 69}, + [3846] = {.lex_state = 432, .external_lex_state = 69}, + [3847] = {.lex_state = 432, .external_lex_state = 69}, + [3848] = {.lex_state = 432, .external_lex_state = 69}, + [3849] = {.lex_state = 210, .external_lex_state = 70}, + [3850] = {.lex_state = 258, .external_lex_state = 67}, + [3851] = {.lex_state = 73, .external_lex_state = 44}, + [3852] = {.lex_state = 234}, + [3853] = {.lex_state = 432, .external_lex_state = 69}, + [3854] = {.lex_state = 256}, + [3855] = {.lex_state = 73, .external_lex_state = 44}, + [3856] = {.lex_state = 70, .external_lex_state = 44}, + [3857] = {.lex_state = 258, .external_lex_state = 67}, + [3858] = {.lex_state = 210, .external_lex_state = 70}, + [3859] = {.lex_state = 258, .external_lex_state = 67}, + [3860] = {.lex_state = 255}, + [3861] = {.lex_state = 235, .external_lex_state = 63}, + [3862] = {.lex_state = 210, .external_lex_state = 68}, + [3863] = {.lex_state = 210, .external_lex_state = 68}, + [3864] = {.lex_state = 258, .external_lex_state = 59}, + [3865] = {.lex_state = 217, .external_lex_state = 67}, + [3866] = {.lex_state = 70, .external_lex_state = 44}, + [3867] = {.lex_state = 258, .external_lex_state = 67}, + [3868] = {.lex_state = 258, .external_lex_state = 67}, + [3869] = {.lex_state = 258, .external_lex_state = 67}, + [3870] = {.lex_state = 258, .external_lex_state = 67}, + [3871] = {.lex_state = 258, .external_lex_state = 59}, + [3872] = {.lex_state = 255}, + [3873] = {.lex_state = 70, .external_lex_state = 44}, + [3874] = {.lex_state = 210, .external_lex_state = 68}, + [3875] = {.lex_state = 210, .external_lex_state = 68}, + [3876] = {.lex_state = 210, .external_lex_state = 68}, + [3877] = {.lex_state = 258, .external_lex_state = 67}, + [3878] = {.lex_state = 210, .external_lex_state = 68}, + [3879] = {.lex_state = 258, .external_lex_state = 67}, + [3880] = {.lex_state = 212}, + [3881] = {.lex_state = 258, .external_lex_state = 67}, + [3882] = {.lex_state = 212}, + [3883] = {.lex_state = 258, .external_lex_state = 67}, + [3884] = {.lex_state = 212}, + [3885] = {.lex_state = 258, .external_lex_state = 67}, + [3886] = {.lex_state = 212}, + [3887] = {.lex_state = 258, .external_lex_state = 67}, + [3888] = {.lex_state = 210, .external_lex_state = 68}, + [3889] = {.lex_state = 212}, + [3890] = {.lex_state = 212}, + [3891] = {.lex_state = 258, .external_lex_state = 67}, + [3892] = {.lex_state = 258, .external_lex_state = 67}, + [3893] = {.lex_state = 258, .external_lex_state = 67}, + [3894] = {.lex_state = 255}, + [3895] = {.lex_state = 212}, + [3896] = {.lex_state = 258, .external_lex_state = 67}, + [3897] = {.lex_state = 258, .external_lex_state = 67}, + [3898] = {.lex_state = 212}, + [3899] = {.lex_state = 258, .external_lex_state = 67}, + [3900] = {.lex_state = 234}, + [3901] = {.lex_state = 258, .external_lex_state = 67}, + [3902] = {.lex_state = 258, .external_lex_state = 67}, + [3903] = {.lex_state = 235, .external_lex_state = 63}, + [3904] = {.lex_state = 235, .external_lex_state = 63}, + [3905] = {.lex_state = 212}, + [3906] = {.lex_state = 235, .external_lex_state = 63}, + [3907] = {.lex_state = 235, .external_lex_state = 63}, + [3908] = {.lex_state = 235, .external_lex_state = 63}, + [3909] = {.lex_state = 235, .external_lex_state = 63}, + [3910] = {.lex_state = 212}, + [3911] = {.lex_state = 217, .external_lex_state = 67}, + [3912] = {.lex_state = 235, .external_lex_state = 63}, + [3913] = {.lex_state = 212}, + [3914] = {.lex_state = 235, .external_lex_state = 63}, [3915] = {.lex_state = 234}, - [3916] = {.lex_state = 251, .external_lex_state = 59}, - [3917] = {.lex_state = 234}, - [3918] = {.lex_state = 251, .external_lex_state = 59}, - [3919] = {.lex_state = 260}, - [3920] = {.lex_state = 257, .external_lex_state = 61}, - [3921] = {.lex_state = 257, .external_lex_state = 61}, - [3922] = {.lex_state = 257, .external_lex_state = 61}, - [3923] = {.lex_state = 260}, - [3924] = {.lex_state = 257, .external_lex_state = 61}, - [3925] = {.lex_state = 257, .external_lex_state = 61}, - [3926] = {.lex_state = 425, .external_lex_state = 45}, - [3927] = {.lex_state = 257, .external_lex_state = 61}, - [3928] = {.lex_state = 257, .external_lex_state = 61}, - [3929] = {.lex_state = 257, .external_lex_state = 61}, - [3930] = {.lex_state = 257, .external_lex_state = 61}, - [3931] = {.lex_state = 257, .external_lex_state = 61}, - [3932] = {.lex_state = 257, .external_lex_state = 61}, - [3933] = {.lex_state = 257, .external_lex_state = 61}, + [3916] = {.lex_state = 212}, + [3917] = {.lex_state = 235, .external_lex_state = 63}, + [3918] = {.lex_state = 235, .external_lex_state = 63}, + [3919] = {.lex_state = 235, .external_lex_state = 63}, + [3920] = {.lex_state = 235, .external_lex_state = 63}, + [3921] = {.lex_state = 235, .external_lex_state = 63}, + [3922] = {.lex_state = 235, .external_lex_state = 63}, + [3923] = {.lex_state = 235, .external_lex_state = 63}, + [3924] = {.lex_state = 217, .external_lex_state = 67}, + [3925] = {.lex_state = 235, .external_lex_state = 63}, + [3926] = {.lex_state = 235, .external_lex_state = 63}, + [3927] = {.lex_state = 432}, + [3928] = {.lex_state = 211}, + [3929] = {.lex_state = 257}, + [3930] = {.lex_state = 212}, + [3931] = {.lex_state = 211}, + [3932] = {.lex_state = 211}, + [3933] = {.lex_state = 432}, [3934] = {.lex_state = 257}, - [3935] = {.lex_state = 257}, - [3936] = {.lex_state = 74, .external_lex_state = 62}, - [3937] = {.lex_state = 76, .external_lex_state = 63}, - [3938] = {.lex_state = 74, .external_lex_state = 62}, - [3939] = {.lex_state = 259}, - [3940] = {.lex_state = 259}, - [3941] = {.lex_state = 259}, - [3942] = {.lex_state = 76, .external_lex_state = 63}, - [3943] = {.lex_state = 76, .external_lex_state = 63}, - [3944] = {.lex_state = 259}, - [3945] = {.lex_state = 259}, - [3946] = {.lex_state = 76, .external_lex_state = 63}, - [3947] = {.lex_state = 259}, - [3948] = {.lex_state = 259}, - [3949] = {.lex_state = 259}, - [3950] = {.lex_state = 259}, - [3951] = {.lex_state = 76, .external_lex_state = 63}, - [3952] = {.lex_state = 76, .external_lex_state = 63}, - [3953] = {.lex_state = 259}, - [3954] = {.lex_state = 76, .external_lex_state = 63}, - [3955] = {.lex_state = 259}, - [3956] = {.lex_state = 76, .external_lex_state = 63}, - [3957] = {.lex_state = 259}, - [3958] = {.lex_state = 76, .external_lex_state = 63}, - [3959] = {.lex_state = 76, .external_lex_state = 63}, - [3960] = {.lex_state = 259}, - [3961] = {.lex_state = 259}, - [3962] = {.lex_state = 259}, - [3963] = {.lex_state = 259}, - [3964] = {.lex_state = 259}, - [3965] = {.lex_state = 259}, - [3966] = {.lex_state = 259}, - [3967] = {.lex_state = 76, .external_lex_state = 63}, - [3968] = {.lex_state = 224}, - [3969] = {.lex_state = 76, .external_lex_state = 45}, - [3970] = {.lex_state = 76, .external_lex_state = 63}, - [3971] = {.lex_state = 224}, - [3972] = {.lex_state = 224}, - [3973] = {.lex_state = 216, .external_lex_state = 60}, - [3974] = {.lex_state = 76, .external_lex_state = 63}, - [3975] = {.lex_state = 76, .external_lex_state = 63}, - [3976] = {.lex_state = 224}, - [3977] = {.lex_state = 224}, - [3978] = {.lex_state = 216, .external_lex_state = 60}, - [3979] = {.lex_state = 76, .external_lex_state = 63}, - [3980] = {.lex_state = 76, .external_lex_state = 63}, - [3981] = {.lex_state = 224}, - [3982] = {.lex_state = 76, .external_lex_state = 63}, - [3983] = {.lex_state = 76, .external_lex_state = 63}, - [3984] = {.lex_state = 224}, - [3985] = {.lex_state = 216, .external_lex_state = 60}, - [3986] = {.lex_state = 216, .external_lex_state = 60}, - [3987] = {.lex_state = 224}, - [3988] = {.lex_state = 224}, - [3989] = {.lex_state = 76, .external_lex_state = 63}, - [3990] = {.lex_state = 76, .external_lex_state = 63}, - [3991] = {.lex_state = 76, .external_lex_state = 63}, - [3992] = {.lex_state = 224}, - [3993] = {.lex_state = 76, .external_lex_state = 63}, - [3994] = {.lex_state = 216, .external_lex_state = 60}, - [3995] = {.lex_state = 76, .external_lex_state = 45}, - [3996] = {.lex_state = 76, .external_lex_state = 63}, - [3997] = {.lex_state = 224}, - [3998] = {.lex_state = 76, .external_lex_state = 63}, - [3999] = {.lex_state = 76, .external_lex_state = 63}, - [4000] = {.lex_state = 224}, - [4001] = {.lex_state = 76, .external_lex_state = 63}, - [4002] = {.lex_state = 224}, - [4003] = {.lex_state = 216, .external_lex_state = 60}, - [4004] = {.lex_state = 224}, - [4005] = {.lex_state = 216, .external_lex_state = 60}, - [4006] = {.lex_state = 76, .external_lex_state = 63}, - [4007] = {.lex_state = 224}, - [4008] = {.lex_state = 224}, - [4009] = {.lex_state = 76, .external_lex_state = 45}, - [4010] = {.lex_state = 76, .external_lex_state = 63}, - [4011] = {.lex_state = 224}, - [4012] = {.lex_state = 224}, - [4013] = {.lex_state = 224}, - [4014] = {.lex_state = 76, .external_lex_state = 45}, - [4015] = {.lex_state = 224}, - [4016] = {.lex_state = 224}, - [4017] = {.lex_state = 216, .external_lex_state = 60}, - [4018] = {.lex_state = 224}, - [4019] = {.lex_state = 76, .external_lex_state = 63}, - [4020] = {.lex_state = 224}, - [4021] = {.lex_state = 76, .external_lex_state = 63}, - [4022] = {.lex_state = 224}, - [4023] = {.lex_state = 260}, - [4024] = {.lex_state = 260}, - [4025] = {.lex_state = 239, .external_lex_state = 61}, - [4026] = {.lex_state = 260}, - [4027] = {.lex_state = 239, .external_lex_state = 61}, - [4028] = {.lex_state = 260}, - [4029] = {.lex_state = 73, .external_lex_state = 45}, - [4030] = {.lex_state = 239, .external_lex_state = 61}, - [4031] = {.lex_state = 239, .external_lex_state = 61}, - [4032] = {.lex_state = 73, .external_lex_state = 45}, - [4033] = {.lex_state = 73, .external_lex_state = 45}, - [4034] = {.lex_state = 76, .external_lex_state = 45}, - [4035] = {.lex_state = 239, .external_lex_state = 61}, - [4036] = {.lex_state = 259, .external_lex_state = 64}, - [4037] = {.lex_state = 73, .external_lex_state = 45}, - [4038] = {.lex_state = 73, .external_lex_state = 45}, - [4039] = {.lex_state = 239, .external_lex_state = 61}, - [4040] = {.lex_state = 260}, - [4041] = {.lex_state = 73, .external_lex_state = 45}, - [4042] = {.lex_state = 239, .external_lex_state = 61}, - [4043] = {.lex_state = 260}, - [4044] = {.lex_state = 239, .external_lex_state = 61}, - [4045] = {.lex_state = 73, .external_lex_state = 45}, - [4046] = {.lex_state = 239, .external_lex_state = 61}, - [4047] = {.lex_state = 73, .external_lex_state = 45}, - [4048] = {.lex_state = 439, .external_lex_state = 65}, - [4049] = {.lex_state = 439, .external_lex_state = 65}, - [4050] = {.lex_state = 439, .external_lex_state = 65}, - [4051] = {.lex_state = 262}, - [4052] = {.lex_state = 439, .external_lex_state = 65}, - [4053] = {.lex_state = 259, .external_lex_state = 64}, - [4054] = {.lex_state = 439, .external_lex_state = 66}, - [4055] = {.lex_state = 76, .external_lex_state = 45}, - [4056] = {.lex_state = 439, .external_lex_state = 65}, - [4057] = {.lex_state = 238}, - [4058] = {.lex_state = 439, .external_lex_state = 65}, - [4059] = {.lex_state = 76, .external_lex_state = 45}, - [4060] = {.lex_state = 439, .external_lex_state = 65}, - [4061] = {.lex_state = 259, .external_lex_state = 64}, - [4062] = {.lex_state = 239, .external_lex_state = 61}, - [4063] = {.lex_state = 259, .external_lex_state = 64}, - [4064] = {.lex_state = 76, .external_lex_state = 45}, - [4065] = {.lex_state = 239, .external_lex_state = 61}, - [4066] = {.lex_state = 439, .external_lex_state = 66}, - [4067] = {.lex_state = 439, .external_lex_state = 65}, - [4068] = {.lex_state = 439, .external_lex_state = 65}, - [4069] = {.lex_state = 439, .external_lex_state = 65}, - [4070] = {.lex_state = 439, .external_lex_state = 65}, - [4071] = {.lex_state = 238}, - [4072] = {.lex_state = 260}, - [4073] = {.lex_state = 73, .external_lex_state = 45}, - [4074] = {.lex_state = 259, .external_lex_state = 64}, - [4075] = {.lex_state = 262}, - [4076] = {.lex_state = 238}, - [4077] = {.lex_state = 439, .external_lex_state = 65}, - [4078] = {.lex_state = 439, .external_lex_state = 65}, - [4079] = {.lex_state = 239, .external_lex_state = 61}, - [4080] = {.lex_state = 259, .external_lex_state = 64}, - [4081] = {.lex_state = 76, .external_lex_state = 45}, - [4082] = {.lex_state = 439, .external_lex_state = 65}, - [4083] = {.lex_state = 238}, - [4084] = {.lex_state = 439, .external_lex_state = 65}, - [4085] = {.lex_state = 259, .external_lex_state = 64}, - [4086] = {.lex_state = 76, .external_lex_state = 45}, - [4087] = {.lex_state = 76, .external_lex_state = 45}, - [4088] = {.lex_state = 259, .external_lex_state = 64}, - [4089] = {.lex_state = 239, .external_lex_state = 61}, - [4090] = {.lex_state = 262}, - [4091] = {.lex_state = 239, .external_lex_state = 61}, - [4092] = {.lex_state = 439, .external_lex_state = 65}, - [4093] = {.lex_state = 259, .external_lex_state = 64}, - [4094] = {.lex_state = 239, .external_lex_state = 61}, - [4095] = {.lex_state = 218}, - [4096] = {.lex_state = 218}, - [4097] = {.lex_state = 239, .external_lex_state = 61}, - [4098] = {.lex_state = 259, .external_lex_state = 64}, - [4099] = {.lex_state = 218}, - [4100] = {.lex_state = 218}, - [4101] = {.lex_state = 218}, - [4102] = {.lex_state = 259, .external_lex_state = 64}, - [4103] = {.lex_state = 239, .external_lex_state = 61}, - [4104] = {.lex_state = 262}, - [4105] = {.lex_state = 259, .external_lex_state = 64}, - [4106] = {.lex_state = 218}, - [4107] = {.lex_state = 259, .external_lex_state = 57}, - [4108] = {.lex_state = 239, .external_lex_state = 61}, - [4109] = {.lex_state = 218}, - [4110] = {.lex_state = 239, .external_lex_state = 61}, - [4111] = {.lex_state = 239, .external_lex_state = 61}, - [4112] = {.lex_state = 259, .external_lex_state = 64}, - [4113] = {.lex_state = 218}, - [4114] = {.lex_state = 239, .external_lex_state = 61}, - [4115] = {.lex_state = 239, .external_lex_state = 61}, - [4116] = {.lex_state = 259, .external_lex_state = 64}, - [4117] = {.lex_state = 259, .external_lex_state = 64}, - [4118] = {.lex_state = 259, .external_lex_state = 64}, - [4119] = {.lex_state = 259, .external_lex_state = 57}, - [4120] = {.lex_state = 259, .external_lex_state = 64}, - [4121] = {.lex_state = 259, .external_lex_state = 64}, - [4122] = {.lex_state = 239, .external_lex_state = 61}, - [4123] = {.lex_state = 259, .external_lex_state = 64}, - [4124] = {.lex_state = 239, .external_lex_state = 61}, - [4125] = {.lex_state = 259, .external_lex_state = 64}, - [4126] = {.lex_state = 73, .external_lex_state = 45}, - [4127] = {.lex_state = 259, .external_lex_state = 64}, - [4128] = {.lex_state = 239, .external_lex_state = 61}, - [4129] = {.lex_state = 262}, - [4130] = {.lex_state = 238}, - [4131] = {.lex_state = 259, .external_lex_state = 64}, - [4132] = {.lex_state = 239, .external_lex_state = 61}, - [4133] = {.lex_state = 239, .external_lex_state = 61}, - [4134] = {.lex_state = 73, .external_lex_state = 45}, - [4135] = {.lex_state = 218}, - [4136] = {.lex_state = 239, .external_lex_state = 61}, - [4137] = {.lex_state = 239, .external_lex_state = 61}, - [4138] = {.lex_state = 259, .external_lex_state = 64}, - [4139] = {.lex_state = 259, .external_lex_state = 64}, - [4140] = {.lex_state = 238}, - [4141] = {.lex_state = 239, .external_lex_state = 61}, - [4142] = {.lex_state = 218}, - [4143] = {.lex_state = 259, .external_lex_state = 64}, - [4144] = {.lex_state = 259, .external_lex_state = 64}, - [4145] = {.lex_state = 259, .external_lex_state = 64}, - [4146] = {.lex_state = 218}, - [4147] = {.lex_state = 218}, - [4148] = {.lex_state = 239, .external_lex_state = 61}, - [4149] = {.lex_state = 259, .external_lex_state = 64}, - [4150] = {.lex_state = 262}, - [4151] = {.lex_state = 239, .external_lex_state = 61}, - [4152] = {.lex_state = 239, .external_lex_state = 61}, - [4153] = {.lex_state = 239, .external_lex_state = 61}, - [4154] = {.lex_state = 259, .external_lex_state = 57}, - [4155] = {.lex_state = 217}, - [4156] = {.lex_state = 217}, - [4157] = {.lex_state = 439}, - [4158] = {.lex_state = 218}, - [4159] = {.lex_state = 218}, - [4160] = {.lex_state = 218}, - [4161] = {.lex_state = 261}, - [4162] = {.lex_state = 251, .external_lex_state = 61}, - [4163] = {.lex_state = 261}, - [4164] = {.lex_state = 261}, - [4165] = {.lex_state = 218}, - [4166] = {.lex_state = 218}, - [4167] = {.lex_state = 217}, - [4168] = {.lex_state = 261}, - [4169] = {.lex_state = 439}, - [4170] = {.lex_state = 218}, - [4171] = {.lex_state = 261}, - [4172] = {.lex_state = 439}, - [4173] = {.lex_state = 218}, - [4174] = {.lex_state = 217}, - [4175] = {.lex_state = 261}, - [4176] = {.lex_state = 218}, - [4177] = {.lex_state = 439}, - [4178] = {.lex_state = 218}, - [4179] = {.lex_state = 218}, - [4180] = {.lex_state = 261}, - [4181] = {.lex_state = 439}, - [4182] = {.lex_state = 261}, - [4183] = {.lex_state = 439}, - [4184] = {.lex_state = 261}, - [4185] = {.lex_state = 218}, - [4186] = {.lex_state = 261}, - [4187] = {.lex_state = 439}, - [4188] = {.lex_state = 218}, - [4189] = {.lex_state = 218}, - [4190] = {.lex_state = 218}, - [4191] = {.lex_state = 439}, - [4192] = {.lex_state = 217}, - [4193] = {.lex_state = 218}, - [4194] = {.lex_state = 261}, - [4195] = {.lex_state = 218}, - [4196] = {.lex_state = 261}, - [4197] = {.lex_state = 261}, - [4198] = {.lex_state = 218}, - [4199] = {.lex_state = 238}, - [4200] = {.lex_state = 261}, - [4201] = {.lex_state = 261}, - [4202] = {.lex_state = 218}, - [4203] = {.lex_state = 261}, - [4204] = {.lex_state = 218}, - [4205] = {.lex_state = 218}, - [4206] = {.lex_state = 218}, - [4207] = {.lex_state = 218}, - [4208] = {.lex_state = 218}, - [4209] = {.lex_state = 218}, - [4210] = {.lex_state = 439}, - [4211] = {.lex_state = 439}, - [4212] = {.lex_state = 218}, - [4213] = {.lex_state = 261}, - [4214] = {.lex_state = 218}, - [4215] = {.lex_state = 439}, - [4216] = {.lex_state = 261}, - [4217] = {.lex_state = 218}, - [4218] = {.lex_state = 218}, - [4219] = {.lex_state = 218}, - [4220] = {.lex_state = 439}, - [4221] = {.lex_state = 439}, - [4222] = {.lex_state = 218}, - [4223] = {.lex_state = 251, .external_lex_state = 61}, - [4224] = {.lex_state = 218}, - [4225] = {.lex_state = 218}, - [4226] = {.lex_state = 439}, - [4227] = {.lex_state = 261}, - [4228] = {.lex_state = 218}, - [4229] = {.lex_state = 439}, - [4230] = {.lex_state = 218}, - [4231] = {.lex_state = 217}, - [4232] = {.lex_state = 218}, - [4233] = {.lex_state = 218}, - [4234] = {.lex_state = 218}, - [4235] = {.lex_state = 218}, - [4236] = {.lex_state = 218}, - [4237] = {.lex_state = 261}, - [4238] = {.lex_state = 218}, - [4239] = {.lex_state = 218}, - [4240] = {.lex_state = 439}, - [4241] = {.lex_state = 218}, - [4242] = {.lex_state = 439}, - [4243] = {.lex_state = 439}, - [4244] = {.lex_state = 439}, - [4245] = {.lex_state = 251, .external_lex_state = 61}, - [4246] = {.lex_state = 218}, - [4247] = {.lex_state = 218}, - [4248] = {.lex_state = 259, .external_lex_state = 57}, - [4249] = {.lex_state = 218}, - [4250] = {.lex_state = 218}, - [4251] = {.lex_state = 218}, - [4252] = {.lex_state = 218}, - [4253] = {.lex_state = 218}, - [4254] = {.lex_state = 439}, - [4255] = {.lex_state = 218}, - [4256] = {.lex_state = 218}, - [4257] = {.lex_state = 439}, - [4258] = {.lex_state = 261}, - [4259] = {.lex_state = 439}, - [4260] = {.lex_state = 218}, - [4261] = {.lex_state = 439}, - [4262] = {.lex_state = 439}, - [4263] = {.lex_state = 218}, - [4264] = {.lex_state = 439}, - [4265] = {.lex_state = 439}, - [4266] = {.lex_state = 218}, - [4267] = {.lex_state = 218}, - [4268] = {.lex_state = 218}, - [4269] = {.lex_state = 439}, - [4270] = {.lex_state = 218}, - [4271] = {.lex_state = 251, .external_lex_state = 61}, - [4272] = {.lex_state = 218}, - [4273] = {.lex_state = 218}, - [4274] = {.lex_state = 218}, - [4275] = {.lex_state = 439}, - [4276] = {.lex_state = 218}, - [4277] = {.lex_state = 218}, - [4278] = {.lex_state = 217}, - [4279] = {.lex_state = 218}, - [4280] = {.lex_state = 439}, - [4281] = {.lex_state = 439}, - [4282] = {.lex_state = 218}, - [4283] = {.lex_state = 218}, - [4284] = {.lex_state = 218}, - [4285] = {.lex_state = 439}, - [4286] = {.lex_state = 439}, - [4287] = {.lex_state = 218}, - [4288] = {.lex_state = 261}, - [4289] = {.lex_state = 218}, - [4290] = {.lex_state = 439}, - [4291] = {.lex_state = 218}, - [4292] = {.lex_state = 261}, - [4293] = {.lex_state = 218}, - [4294] = {.lex_state = 439}, - [4295] = {.lex_state = 251}, - [4296] = {.lex_state = 439}, - [4297] = {.lex_state = 217}, - [4298] = {.lex_state = 216, .external_lex_state = 57}, - [4299] = {.lex_state = 216, .external_lex_state = 57}, - [4300] = {.lex_state = 216, .external_lex_state = 57}, - [4301] = {.lex_state = 439}, - [4302] = {.lex_state = 216, .external_lex_state = 57}, - [4303] = {.lex_state = 439}, - [4304] = {.lex_state = 216, .external_lex_state = 57}, - [4305] = {.lex_state = 216, .external_lex_state = 57}, - [4306] = {.lex_state = 216, .external_lex_state = 57}, - [4307] = {.lex_state = 251}, - [4308] = {.lex_state = 216, .external_lex_state = 57}, - [4309] = {.lex_state = 439}, - [4310] = {.lex_state = 439}, - [4311] = {.lex_state = 251}, - [4312] = {.lex_state = 439}, - [4313] = {.lex_state = 439}, - [4314] = {.lex_state = 439}, - [4315] = {.lex_state = 439}, - [4316] = {.lex_state = 439}, - [4317] = {.lex_state = 251}, - [4318] = {.lex_state = 439}, - [4319] = {.lex_state = 439}, - [4320] = {.lex_state = 217}, - [4321] = {.lex_state = 251}, - [4322] = {.lex_state = 259, .external_lex_state = 57}, - [4323] = {.lex_state = 439}, - [4324] = {.lex_state = 439}, - [4325] = {.lex_state = 439}, - [4326] = {.lex_state = 439}, - [4327] = {.lex_state = 259, .external_lex_state = 57}, - [4328] = {.lex_state = 439}, - [4329] = {.lex_state = 439}, - [4330] = {.lex_state = 439}, - [4331] = {.lex_state = 439}, - [4332] = {.lex_state = 439}, - [4333] = {.lex_state = 217}, - [4334] = {.lex_state = 439}, - [4335] = {.lex_state = 217}, - [4336] = {.lex_state = 439}, - [4337] = {.lex_state = 439}, - [4338] = {.lex_state = 439}, - [4339] = {.lex_state = 439}, - [4340] = {.lex_state = 217}, - [4341] = {.lex_state = 439}, - [4342] = {.lex_state = 251}, - [4343] = {.lex_state = 251}, - [4344] = {.lex_state = 439}, - [4345] = {.lex_state = 439}, - [4346] = {.lex_state = 439}, - [4347] = {.lex_state = 439}, - [4348] = {.lex_state = 218}, - [4349] = {.lex_state = 218}, - [4350] = {.lex_state = 439}, - [4351] = {.lex_state = 260}, - [4352] = {.lex_state = 260}, - [4353] = {.lex_state = 439}, - [4354] = {.lex_state = 439}, - [4355] = {.lex_state = 439}, - [4356] = {.lex_state = 260}, - [4357] = {.lex_state = 439}, - [4358] = {.lex_state = 251}, - [4359] = {.lex_state = 251}, - [4360] = {.lex_state = 251}, - [4361] = {.lex_state = 439}, - [4362] = {.lex_state = 439}, - [4363] = {.lex_state = 251}, - [4364] = {.lex_state = 251}, - [4365] = {.lex_state = 439}, - [4366] = {.lex_state = 251}, - [4367] = {.lex_state = 251}, - [4368] = {.lex_state = 439}, - [4369] = {.lex_state = 251}, - [4370] = {.lex_state = 251}, - [4371] = {.lex_state = 439}, - [4372] = {.lex_state = 251}, - [4373] = {.lex_state = 251}, - [4374] = {.lex_state = 259, .external_lex_state = 57}, - [4375] = {.lex_state = 439}, - [4376] = {.lex_state = 251}, - [4377] = {.lex_state = 439}, - [4378] = {.lex_state = 439}, - [4379] = {.lex_state = 251}, - [4380] = {.lex_state = 216, .external_lex_state = 57}, - [4381] = {.lex_state = 439}, - [4382] = {.lex_state = 251}, - [4383] = {.lex_state = 251}, - [4384] = {.lex_state = 259, .external_lex_state = 57}, - [4385] = {.lex_state = 439}, - [4386] = {.lex_state = 251}, - [4387] = {.lex_state = 251}, - [4388] = {.lex_state = 260}, - [4389] = {.lex_state = 439}, - [4390] = {.lex_state = 260}, - [4391] = {.lex_state = 251}, - [4392] = {.lex_state = 439}, - [4393] = {.lex_state = 439}, - [4394] = {.lex_state = 251}, - [4395] = {.lex_state = 439}, - [4396] = {.lex_state = 251}, - [4397] = {.lex_state = 439}, - [4398] = {.lex_state = 216, .external_lex_state = 57}, - [4399] = {.lex_state = 439}, - [4400] = {.lex_state = 439}, - [4401] = {.lex_state = 260}, - [4402] = {.lex_state = 439}, - [4403] = {.lex_state = 221}, - [4404] = {.lex_state = 218}, - [4405] = {.lex_state = 72, .external_lex_state = 45}, - [4406] = {.lex_state = 216, .external_lex_state = 57}, - [4407] = {.lex_state = 72, .external_lex_state = 45}, - [4408] = {.lex_state = 439}, - [4409] = {.lex_state = 439}, - [4410] = {.lex_state = 218}, - [4411] = {.lex_state = 218}, - [4412] = {.lex_state = 260}, - [4413] = {.lex_state = 439}, - [4414] = {.lex_state = 439, .external_lex_state = 67}, - [4415] = {.lex_state = 439, .external_lex_state = 67}, - [4416] = {.lex_state = 439}, - [4417] = {.lex_state = 216, .external_lex_state = 57}, - [4418] = {.lex_state = 216, .external_lex_state = 57}, - [4419] = {.lex_state = 218}, - [4420] = {.lex_state = 260}, - [4421] = {.lex_state = 439}, - [4422] = {.lex_state = 218}, - [4423] = {.lex_state = 439}, - [4424] = {.lex_state = 216, .external_lex_state = 57}, - [4425] = {.lex_state = 260}, - [4426] = {.lex_state = 216, .external_lex_state = 57}, - [4427] = {.lex_state = 218}, - [4428] = {.lex_state = 439}, - [4429] = {.lex_state = 221}, - [4430] = {.lex_state = 216, .external_lex_state = 57}, - [4431] = {.lex_state = 218}, - [4432] = {.lex_state = 216, .external_lex_state = 57}, - [4433] = {.lex_state = 439}, - [4434] = {.lex_state = 218}, - [4435] = {.lex_state = 218}, - [4436] = {.lex_state = 439}, - [4437] = {.lex_state = 260}, - [4438] = {.lex_state = 216, .external_lex_state = 57}, - [4439] = {.lex_state = 439}, - [4440] = {.lex_state = 216, .external_lex_state = 57}, - [4441] = {.lex_state = 216, .external_lex_state = 57}, - [4442] = {.lex_state = 218}, - [4443] = {.lex_state = 221}, - [4444] = {.lex_state = 195, .external_lex_state = 68}, - [4445] = {.lex_state = 216, .external_lex_state = 57}, - [4446] = {.lex_state = 439}, - [4447] = {.lex_state = 439}, - [4448] = {.lex_state = 439}, - [4449] = {.lex_state = 439}, - [4450] = {.lex_state = 218}, - [4451] = {.lex_state = 216, .external_lex_state = 57}, - [4452] = {.lex_state = 216, .external_lex_state = 57}, - [4453] = {.lex_state = 195, .external_lex_state = 68}, - [4454] = {.lex_state = 216, .external_lex_state = 57}, - [4455] = {.lex_state = 216, .external_lex_state = 57}, - [4456] = {.lex_state = 439}, - [4457] = {.lex_state = 439}, - [4458] = {.lex_state = 216, .external_lex_state = 57}, - [4459] = {.lex_state = 439}, - [4460] = {.lex_state = 218}, - [4461] = {.lex_state = 439}, - [4462] = {.lex_state = 439}, - [4463] = {.lex_state = 216, .external_lex_state = 57}, - [4464] = {.lex_state = 216, .external_lex_state = 57}, - [4465] = {.lex_state = 439}, - [4466] = {.lex_state = 439}, - [4467] = {.lex_state = 218}, - [4468] = {.lex_state = 439}, - [4469] = {.lex_state = 216, .external_lex_state = 57}, - [4470] = {.lex_state = 218}, - [4471] = {.lex_state = 439}, - [4472] = {.lex_state = 439}, - [4473] = {.lex_state = 439}, - [4474] = {.lex_state = 216, .external_lex_state = 57}, - [4475] = {.lex_state = 216, .external_lex_state = 57}, - [4476] = {.lex_state = 439}, - [4477] = {.lex_state = 216, .external_lex_state = 57}, - [4478] = {.lex_state = 216, .external_lex_state = 57}, - [4479] = {.lex_state = 216, .external_lex_state = 57}, - [4480] = {.lex_state = 218}, - [4481] = {.lex_state = 221}, - [4482] = {.lex_state = 216, .external_lex_state = 57}, - [4483] = {.lex_state = 260}, - [4484] = {.lex_state = 439}, - [4485] = {.lex_state = 439}, - [4486] = {.lex_state = 439}, - [4487] = {.lex_state = 439}, - [4488] = {.lex_state = 216, .external_lex_state = 57}, - [4489] = {.lex_state = 218}, - [4490] = {.lex_state = 439}, - [4491] = {.lex_state = 439}, - [4492] = {.lex_state = 439}, - [4493] = {.lex_state = 221}, - [4494] = {.lex_state = 221}, - [4495] = {.lex_state = 195, .external_lex_state = 68}, - [4496] = {.lex_state = 195, .external_lex_state = 68}, - [4497] = {.lex_state = 439}, - [4498] = {.lex_state = 218}, - [4499] = {.lex_state = 216, .external_lex_state = 57}, - [4500] = {.lex_state = 439}, - [4501] = {.lex_state = 439}, - [4502] = {.lex_state = 221}, - [4503] = {.lex_state = 216, .external_lex_state = 57}, - [4504] = {.lex_state = 216, .external_lex_state = 57}, - [4505] = {.lex_state = 439}, - [4506] = {.lex_state = 260}, - [4507] = {.lex_state = 218}, - [4508] = {.lex_state = 439}, - [4509] = {.lex_state = 439}, - [4510] = {.lex_state = 439}, - [4511] = {.lex_state = 439}, - [4512] = {.lex_state = 216, .external_lex_state = 57}, - [4513] = {.lex_state = 216, .external_lex_state = 57}, - [4514] = {.lex_state = 221}, - [4515] = {.lex_state = 216, .external_lex_state = 57}, - [4516] = {.lex_state = 218}, - [4517] = {.lex_state = 216, .external_lex_state = 57}, - [4518] = {.lex_state = 439}, - [4519] = {.lex_state = 72, .external_lex_state = 45}, - [4520] = {.lex_state = 439}, - [4521] = {.lex_state = 439}, - [4522] = {.lex_state = 439}, - [4523] = {.lex_state = 439}, - [4524] = {.lex_state = 216, .external_lex_state = 57}, - [4525] = {.lex_state = 218}, - [4526] = {.lex_state = 216, .external_lex_state = 57}, - [4527] = {.lex_state = 439}, - [4528] = {.lex_state = 439}, - [4529] = {.lex_state = 439}, - [4530] = {.lex_state = 439}, - [4531] = {.lex_state = 216, .external_lex_state = 57}, - [4532] = {.lex_state = 195, .external_lex_state = 68}, - [4533] = {.lex_state = 195, .external_lex_state = 68}, - [4534] = {.lex_state = 218}, - [4535] = {.lex_state = 439}, - [4536] = {.lex_state = 221}, - [4537] = {.lex_state = 216, .external_lex_state = 57}, - [4538] = {.lex_state = 439}, - [4539] = {.lex_state = 439}, - [4540] = {.lex_state = 439}, - [4541] = {.lex_state = 439, .external_lex_state = 69}, - [4542] = {.lex_state = 221}, - [4543] = {.lex_state = 218}, - [4544] = {.lex_state = 439}, - [4545] = {.lex_state = 439}, - [4546] = {.lex_state = 260}, - [4547] = {.lex_state = 216, .external_lex_state = 57}, - [4548] = {.lex_state = 216, .external_lex_state = 57}, - [4549] = {.lex_state = 439, .external_lex_state = 67}, - [4550] = {.lex_state = 221}, - [4551] = {.lex_state = 221}, - [4552] = {.lex_state = 218}, - [4553] = {.lex_state = 221}, - [4554] = {.lex_state = 216, .external_lex_state = 57}, - [4555] = {.lex_state = 439}, - [4556] = {.lex_state = 216, .external_lex_state = 57}, - [4557] = {.lex_state = 439}, - [4558] = {.lex_state = 439}, - [4559] = {.lex_state = 439}, - [4560] = {.lex_state = 218}, - [4561] = {.lex_state = 439}, - [4562] = {.lex_state = 216, .external_lex_state = 57}, - [4563] = {.lex_state = 216, .external_lex_state = 57}, - [4564] = {.lex_state = 439, .external_lex_state = 67}, - [4565] = {.lex_state = 216, .external_lex_state = 57}, - [4566] = {.lex_state = 221}, - [4567] = {.lex_state = 218}, - [4568] = {.lex_state = 218}, - [4569] = {.lex_state = 216, .external_lex_state = 57}, - [4570] = {.lex_state = 439}, - [4571] = {.lex_state = 218}, - [4572] = {.lex_state = 218}, - [4573] = {.lex_state = 439}, - [4574] = {.lex_state = 439}, - [4575] = {.lex_state = 194}, - [4576] = {.lex_state = 218}, - [4577] = {.lex_state = 216, .external_lex_state = 57}, - [4578] = {.lex_state = 218}, - [4579] = {.lex_state = 439, .external_lex_state = 70}, - [4580] = {.lex_state = 218}, - [4581] = {.lex_state = 439, .external_lex_state = 66}, - [4582] = {.lex_state = 439}, - [4583] = {.lex_state = 218}, - [4584] = {.lex_state = 218}, - [4585] = {.lex_state = 260}, - [4586] = {.lex_state = 439}, - [4587] = {.lex_state = 216, .external_lex_state = 57}, - [4588] = {.lex_state = 439, .external_lex_state = 70}, - [4589] = {.lex_state = 439}, - [4590] = {.lex_state = 218}, - [4591] = {.lex_state = 439, .external_lex_state = 67}, - [4592] = {.lex_state = 439, .external_lex_state = 66}, - [4593] = {.lex_state = 439, .external_lex_state = 67}, - [4594] = {.lex_state = 439}, - [4595] = {.lex_state = 439}, - [4596] = {.lex_state = 218}, - [4597] = {.lex_state = 439}, - [4598] = {.lex_state = 221}, - [4599] = {.lex_state = 216, .external_lex_state = 57}, - [4600] = {.lex_state = 218}, - [4601] = {.lex_state = 218}, - [4602] = {.lex_state = 218}, - [4603] = {.lex_state = 439}, - [4604] = {.lex_state = 260}, - [4605] = {.lex_state = 439}, - [4606] = {.lex_state = 439}, - [4607] = {.lex_state = 439}, - [4608] = {.lex_state = 218}, - [4609] = {.lex_state = 439}, - [4610] = {.lex_state = 216, .external_lex_state = 57}, - [4611] = {.lex_state = 216, .external_lex_state = 57}, - [4612] = {.lex_state = 218}, - [4613] = {.lex_state = 221}, - [4614] = {.lex_state = 218}, - [4615] = {.lex_state = 216, .external_lex_state = 57}, - [4616] = {.lex_state = 439}, - [4617] = {.lex_state = 218}, - [4618] = {.lex_state = 218}, - [4619] = {.lex_state = 439}, - [4620] = {.lex_state = 218}, - [4621] = {.lex_state = 260}, - [4622] = {.lex_state = 218}, - [4623] = {.lex_state = 439}, - [4624] = {.lex_state = 218}, - [4625] = {.lex_state = 216, .external_lex_state = 57}, - [4626] = {.lex_state = 218}, - [4627] = {.lex_state = 439}, - [4628] = {.lex_state = 218}, - [4629] = {.lex_state = 221}, - [4630] = {.lex_state = 195, .external_lex_state = 68}, - [4631] = {.lex_state = 195, .external_lex_state = 68}, - [4632] = {.lex_state = 218}, - [4633] = {.lex_state = 216, .external_lex_state = 57}, - [4634] = {.lex_state = 439}, - [4635] = {.lex_state = 216, .external_lex_state = 57}, - [4636] = {.lex_state = 216, .external_lex_state = 57}, - [4637] = {.lex_state = 221}, - [4638] = {.lex_state = 218}, - [4639] = {.lex_state = 260}, - [4640] = {.lex_state = 260}, - [4641] = {.lex_state = 216, .external_lex_state = 57}, - [4642] = {.lex_state = 439}, - [4643] = {.lex_state = 439}, - [4644] = {.lex_state = 218}, - [4645] = {.lex_state = 439}, - [4646] = {.lex_state = 439}, - [4647] = {.lex_state = 216, .external_lex_state = 57}, - [4648] = {.lex_state = 439}, - [4649] = {.lex_state = 439}, - [4650] = {.lex_state = 218}, - [4651] = {.lex_state = 439}, - [4652] = {.lex_state = 439}, - [4653] = {.lex_state = 439}, - [4654] = {.lex_state = 194}, - [4655] = {.lex_state = 439}, - [4656] = {.lex_state = 218}, - [4657] = {.lex_state = 216, .external_lex_state = 57}, - [4658] = {.lex_state = 439}, - [4659] = {.lex_state = 221}, - [4660] = {.lex_state = 218}, - [4661] = {.lex_state = 216, .external_lex_state = 57}, - [4662] = {.lex_state = 218}, - [4663] = {.lex_state = 439}, - [4664] = {.lex_state = 439}, - [4665] = {.lex_state = 216, .external_lex_state = 57}, - [4666] = {.lex_state = 439}, - [4667] = {.lex_state = 439}, - [4668] = {.lex_state = 218}, - [4669] = {.lex_state = 218}, - [4670] = {.lex_state = 439}, - [4671] = {.lex_state = 216, .external_lex_state = 57}, - [4672] = {.lex_state = 439}, - [4673] = {.lex_state = 72, .external_lex_state = 45}, - [4674] = {.lex_state = 218}, - [4675] = {.lex_state = 216, .external_lex_state = 57}, - [4676] = {.lex_state = 439}, - [4677] = {.lex_state = 439}, - [4678] = {.lex_state = 439}, - [4679] = {.lex_state = 216, .external_lex_state = 57}, - [4680] = {.lex_state = 218}, - [4681] = {.lex_state = 216, .external_lex_state = 57}, - [4682] = {.lex_state = 221}, - [4683] = {.lex_state = 221}, - [4684] = {.lex_state = 221}, - [4685] = {.lex_state = 216, .external_lex_state = 57}, - [4686] = {.lex_state = 218}, - [4687] = {.lex_state = 218}, - [4688] = {.lex_state = 439}, - [4689] = {.lex_state = 439}, - [4690] = {.lex_state = 439}, - [4691] = {.lex_state = 439, .external_lex_state = 69}, - [4692] = {.lex_state = 218}, - [4693] = {.lex_state = 216, .external_lex_state = 57}, - [4694] = {.lex_state = 439}, - [4695] = {.lex_state = 439}, - [4696] = {.lex_state = 216, .external_lex_state = 57}, - [4697] = {.lex_state = 439}, - [4698] = {.lex_state = 218}, - [4699] = {.lex_state = 216, .external_lex_state = 57}, - [4700] = {.lex_state = 439}, - [4701] = {.lex_state = 72, .external_lex_state = 45}, - [4702] = {.lex_state = 439}, - [4703] = {.lex_state = 439}, - [4704] = {.lex_state = 218}, - [4705] = {.lex_state = 216, .external_lex_state = 57}, - [4706] = {.lex_state = 216, .external_lex_state = 57}, - [4707] = {.lex_state = 216, .external_lex_state = 57}, - [4708] = {.lex_state = 221}, - [4709] = {.lex_state = 216, .external_lex_state = 57}, - [4710] = {.lex_state = 218}, - [4711] = {.lex_state = 218}, - [4712] = {.lex_state = 216, .external_lex_state = 57}, - [4713] = {.lex_state = 439}, - [4714] = {.lex_state = 218}, - [4715] = {.lex_state = 439}, - [4716] = {.lex_state = 218}, - [4717] = {.lex_state = 439}, - [4718] = {.lex_state = 439}, - [4719] = {.lex_state = 439}, - [4720] = {.lex_state = 72, .external_lex_state = 45}, - [4721] = {.lex_state = 439, .external_lex_state = 67}, - [4722] = {.lex_state = 216, .external_lex_state = 57}, - [4723] = {.lex_state = 216, .external_lex_state = 57}, - [4724] = {.lex_state = 439, .external_lex_state = 67}, - [4725] = {.lex_state = 439}, - [4726] = {.lex_state = 439}, - [4727] = {.lex_state = 72, .external_lex_state = 45}, - [4728] = {.lex_state = 218}, - [4729] = {.lex_state = 439}, - [4730] = {.lex_state = 216, .external_lex_state = 57}, - [4731] = {.lex_state = 221}, - [4732] = {.lex_state = 216, .external_lex_state = 57}, - [4733] = {.lex_state = 439}, - [4734] = {.lex_state = 218}, - [4735] = {.lex_state = 439}, - [4736] = {.lex_state = 439}, - [4737] = {.lex_state = 439}, - [4738] = {.lex_state = 439}, - [4739] = {.lex_state = 216, .external_lex_state = 57}, - [4740] = {.lex_state = 218}, - [4741] = {.lex_state = 216, .external_lex_state = 57}, - [4742] = {.lex_state = 221}, - [4743] = {.lex_state = 218}, - [4744] = {.lex_state = 439}, - [4745] = {.lex_state = 221}, - [4746] = {.lex_state = 218}, - [4747] = {.lex_state = 216, .external_lex_state = 57}, - [4748] = {.lex_state = 260}, - [4749] = {.lex_state = 439}, - [4750] = {.lex_state = 439}, - [4751] = {.lex_state = 439}, - [4752] = {.lex_state = 72, .external_lex_state = 45}, - [4753] = {.lex_state = 439}, - [4754] = {.lex_state = 439}, - [4755] = {.lex_state = 221}, - [4756] = {.lex_state = 216, .external_lex_state = 57}, - [4757] = {.lex_state = 216, .external_lex_state = 57}, - [4758] = {.lex_state = 439}, - [4759] = {.lex_state = 439}, - [4760] = {.lex_state = 260}, - [4761] = {.lex_state = 216, .external_lex_state = 57}, - [4762] = {.lex_state = 216, .external_lex_state = 57}, - [4763] = {.lex_state = 439}, - [4764] = {.lex_state = 439}, - [4765] = {.lex_state = 439}, - [4766] = {.lex_state = 439}, - [4767] = {.lex_state = 439}, - [4768] = {.lex_state = 217}, - [4769] = {.lex_state = 439}, - [4770] = {.lex_state = 218}, - [4771] = {.lex_state = 218}, - [4772] = {.lex_state = 439}, - [4773] = {.lex_state = 439}, - [4774] = {.lex_state = 216, .external_lex_state = 57}, - [4775] = {.lex_state = 439, .external_lex_state = 69}, - [4776] = {.lex_state = 439}, - [4777] = {.lex_state = 439}, - [4778] = {.lex_state = 221}, - [4779] = {.lex_state = 216, .external_lex_state = 57}, - [4780] = {.lex_state = 216, .external_lex_state = 57}, - [4781] = {.lex_state = 439, .external_lex_state = 69}, - [4782] = {.lex_state = 439}, - [4783] = {.lex_state = 439}, - [4784] = {.lex_state = 439}, - [4785] = {.lex_state = 439}, - [4786] = {.lex_state = 439}, - [4787] = {.lex_state = 221}, - [4788] = {.lex_state = 216, .external_lex_state = 57}, - [4789] = {.lex_state = 221}, - [4790] = {.lex_state = 216, .external_lex_state = 57}, - [4791] = {.lex_state = 221}, - [4792] = {.lex_state = 216, .external_lex_state = 57}, - [4793] = {.lex_state = 439}, - [4794] = {.lex_state = 439}, - [4795] = {.lex_state = 439}, - [4796] = {.lex_state = 439}, - [4797] = {.lex_state = 216, .external_lex_state = 57}, - [4798] = {.lex_state = 216, .external_lex_state = 57}, - [4799] = {.lex_state = 221}, - [4800] = {.lex_state = 439}, - [4801] = {.lex_state = 221}, - [4802] = {.lex_state = 216, .external_lex_state = 57}, - [4803] = {.lex_state = 439}, - [4804] = {.lex_state = 439}, - [4805] = {.lex_state = 439}, - [4806] = {.lex_state = 439}, - [4807] = {.lex_state = 218}, - [4808] = {.lex_state = 439}, - [4809] = {.lex_state = 216, .external_lex_state = 57}, - [4810] = {.lex_state = 439}, - [4811] = {.lex_state = 439}, - [4812] = {.lex_state = 221}, - [4813] = {.lex_state = 216, .external_lex_state = 57}, - [4814] = {.lex_state = 221}, - [4815] = {.lex_state = 216, .external_lex_state = 57}, - [4816] = {.lex_state = 439}, - [4817] = {.lex_state = 439}, - [4818] = {.lex_state = 439}, - [4819] = {.lex_state = 439}, - [4820] = {.lex_state = 216, .external_lex_state = 57}, - [4821] = {.lex_state = 216, .external_lex_state = 57}, - [4822] = {.lex_state = 221}, - [4823] = {.lex_state = 218}, - [4824] = {.lex_state = 221}, - [4825] = {.lex_state = 216, .external_lex_state = 57}, - [4826] = {.lex_state = 439}, - [4827] = {.lex_state = 439}, - [4828] = {.lex_state = 439}, - [4829] = {.lex_state = 216, .external_lex_state = 57}, - [4830] = {.lex_state = 218}, - [4831] = {.lex_state = 439}, - [4832] = {.lex_state = 216, .external_lex_state = 57}, - [4833] = {.lex_state = 194}, - [4834] = {.lex_state = 221}, - [4835] = {.lex_state = 216, .external_lex_state = 57}, - [4836] = {.lex_state = 218}, - [4837] = {.lex_state = 439}, - [4838] = {.lex_state = 439}, - [4839] = {.lex_state = 439}, - [4840] = {.lex_state = 439}, - [4841] = {.lex_state = 216, .external_lex_state = 57}, - [4842] = {.lex_state = 260}, - [4843] = {.lex_state = 439}, - [4844] = {.lex_state = 217}, - [4845] = {.lex_state = 216, .external_lex_state = 57}, - [4846] = {.lex_state = 439}, - [4847] = {.lex_state = 218}, - [4848] = {.lex_state = 216, .external_lex_state = 57}, - [4849] = {.lex_state = 439}, - [4850] = {.lex_state = 439}, - [4851] = {.lex_state = 439, .external_lex_state = 69}, - [4852] = {.lex_state = 439}, - [4853] = {.lex_state = 439}, - [4854] = {.lex_state = 221}, - [4855] = {.lex_state = 216, .external_lex_state = 57}, - [4856] = {.lex_state = 439, .external_lex_state = 69}, - [4857] = {.lex_state = 439}, - [4858] = {.lex_state = 439}, - [4859] = {.lex_state = 439}, - [4860] = {.lex_state = 439}, - [4861] = {.lex_state = 216, .external_lex_state = 57}, - [4862] = {.lex_state = 216, .external_lex_state = 57}, - [4863] = {.lex_state = 221}, - [4864] = {.lex_state = 439}, - [4865] = {.lex_state = 439}, - [4866] = {.lex_state = 218}, - [4867] = {.lex_state = 221}, - [4868] = {.lex_state = 216, .external_lex_state = 57}, - [4869] = {.lex_state = 439}, - [4870] = {.lex_state = 439}, - [4871] = {.lex_state = 439}, - [4872] = {.lex_state = 439}, - [4873] = {.lex_state = 439}, - [4874] = {.lex_state = 439}, - [4875] = {.lex_state = 216, .external_lex_state = 57}, - [4876] = {.lex_state = 439}, - [4877] = {.lex_state = 216, .external_lex_state = 57}, - [4878] = {.lex_state = 216, .external_lex_state = 57}, - [4879] = {.lex_state = 439}, - [4880] = {.lex_state = 221}, - [4881] = {.lex_state = 216, .external_lex_state = 57}, - [4882] = {.lex_state = 439}, - [4883] = {.lex_state = 439}, - [4884] = {.lex_state = 439}, - [4885] = {.lex_state = 439}, - [4886] = {.lex_state = 439}, - [4887] = {.lex_state = 439}, - [4888] = {.lex_state = 216, .external_lex_state = 57}, - [4889] = {.lex_state = 439}, - [4890] = {.lex_state = 221}, - [4891] = {.lex_state = 216, .external_lex_state = 57}, - [4892] = {.lex_state = 221}, - [4893] = {.lex_state = 221}, - [4894] = {.lex_state = 216, .external_lex_state = 57}, - [4895] = {.lex_state = 439}, - [4896] = {.lex_state = 260}, - [4897] = {.lex_state = 439}, - [4898] = {.lex_state = 439}, - [4899] = {.lex_state = 439}, - [4900] = {.lex_state = 216, .external_lex_state = 57}, - [4901] = {.lex_state = 439}, - [4902] = {.lex_state = 218}, - [4903] = {.lex_state = 260}, - [4904] = {.lex_state = 216, .external_lex_state = 57}, - [4905] = {.lex_state = 439, .external_lex_state = 69}, - [4906] = {.lex_state = 216, .external_lex_state = 57}, - [4907] = {.lex_state = 216, .external_lex_state = 57}, - [4908] = {.lex_state = 221}, - [4909] = {.lex_state = 216, .external_lex_state = 57}, - [4910] = {.lex_state = 439, .external_lex_state = 69}, - [4911] = {.lex_state = 439}, - [4912] = {.lex_state = 439}, - [4913] = {.lex_state = 221}, - [4914] = {.lex_state = 216, .external_lex_state = 57}, - [4915] = {.lex_state = 439}, - [4916] = {.lex_state = 216, .external_lex_state = 57}, - [4917] = {.lex_state = 439}, - [4918] = {.lex_state = 439}, - [4919] = {.lex_state = 216, .external_lex_state = 57}, - [4920] = {.lex_state = 218}, - [4921] = {.lex_state = 439}, - [4922] = {.lex_state = 439}, - [4923] = {.lex_state = 439}, - [4924] = {.lex_state = 439}, - [4925] = {.lex_state = 439}, - [4926] = {.lex_state = 221}, - [4927] = {.lex_state = 216, .external_lex_state = 57}, - [4928] = {.lex_state = 260}, - [4929] = {.lex_state = 439}, - [4930] = {.lex_state = 439}, - [4931] = {.lex_state = 439}, - [4932] = {.lex_state = 439}, - [4933] = {.lex_state = 216, .external_lex_state = 57}, - [4934] = {.lex_state = 218}, - [4935] = {.lex_state = 218}, - [4936] = {.lex_state = 218}, - [4937] = {.lex_state = 218}, - [4938] = {.lex_state = 218}, - [4939] = {.lex_state = 218}, - [4940] = {.lex_state = 218}, - [4941] = {.lex_state = 218}, - [4942] = {.lex_state = 218}, - [4943] = {.lex_state = 218}, - [4944] = {.lex_state = 218}, - [4945] = {.lex_state = 218}, - [4946] = {.lex_state = 218}, - [4947] = {.lex_state = 218}, - [4948] = {.lex_state = 218}, - [4949] = {.lex_state = 218}, - [4950] = {.lex_state = 218}, - [4951] = {.lex_state = 218}, - [4952] = {.lex_state = 218}, - [4953] = {.lex_state = 218}, - [4954] = {.lex_state = 218}, - [4955] = {.lex_state = 218}, - [4956] = {.lex_state = 218}, - [4957] = {.lex_state = 218}, - [4958] = {.lex_state = 218}, - [4959] = {.lex_state = 218}, - [4960] = {.lex_state = 218}, - [4961] = {.lex_state = 218}, - [4962] = {.lex_state = 218}, - [4963] = {.lex_state = 218}, - [4964] = {.lex_state = 218}, - [4965] = {.lex_state = 218}, - [4966] = {.lex_state = 218}, - [4967] = {.lex_state = 218}, - [4968] = {.lex_state = 218}, - [4969] = {.lex_state = 218}, - [4970] = {.lex_state = 218}, - [4971] = {.lex_state = 218}, - [4972] = {.lex_state = 218}, - [4973] = {.lex_state = 218}, - [4974] = {.lex_state = 218}, - [4975] = {.lex_state = 218}, - [4976] = {.lex_state = 218}, - [4977] = {.lex_state = 218}, - [4978] = {.lex_state = 260}, - [4979] = {.lex_state = 439}, - [4980] = {.lex_state = 439}, - [4981] = {.lex_state = 216, .external_lex_state = 57}, - [4982] = {.lex_state = 439}, - [4983] = {.lex_state = 218}, - [4984] = {.lex_state = 260}, - [4985] = {.lex_state = 439}, - [4986] = {.lex_state = 216, .external_lex_state = 57}, - [4987] = {.lex_state = 217}, - [4988] = {.lex_state = 216, .external_lex_state = 57}, - [4989] = {.lex_state = 218}, - [4990] = {.lex_state = 260}, - [4991] = {.lex_state = 439}, - [4992] = {.lex_state = 439}, - [4993] = {.lex_state = 218}, - [4994] = {.lex_state = 260}, - [4995] = {.lex_state = 439}, - [4996] = {.lex_state = 218}, - [4997] = {.lex_state = 218}, - [4998] = {.lex_state = 218}, - [4999] = {.lex_state = 218}, - [5000] = {.lex_state = 218}, - [5001] = {.lex_state = 218}, - [5002] = {.lex_state = 218}, - [5003] = {.lex_state = 218}, - [5004] = {.lex_state = 218}, - [5005] = {.lex_state = 218}, - [5006] = {.lex_state = 218}, - [5007] = {.lex_state = 218}, - [5008] = {.lex_state = 218}, - [5009] = {.lex_state = 218}, - [5010] = {.lex_state = 218}, - [5011] = {.lex_state = 218}, - [5012] = {.lex_state = 218}, - [5013] = {.lex_state = 218}, - [5014] = {.lex_state = 218}, - [5015] = {.lex_state = 218}, - [5016] = {.lex_state = 218}, - [5017] = {.lex_state = 218}, - [5018] = {.lex_state = 218}, - [5019] = {.lex_state = 218}, - [5020] = {.lex_state = 218}, - [5021] = {.lex_state = 218}, - [5022] = {.lex_state = 218}, - [5023] = {.lex_state = 218}, - [5024] = {.lex_state = 218}, - [5025] = {.lex_state = 218}, - [5026] = {.lex_state = 218}, - [5027] = {.lex_state = 218}, - [5028] = {.lex_state = 218}, - [5029] = {.lex_state = 218}, - [5030] = {.lex_state = 218}, - [5031] = {.lex_state = 218}, - [5032] = {.lex_state = 218}, - [5033] = {.lex_state = 218}, - [5034] = {.lex_state = 218}, - [5035] = {.lex_state = 218}, - [5036] = {.lex_state = 218}, - [5037] = {.lex_state = 218}, - [5038] = {.lex_state = 218}, - [5039] = {.lex_state = 218}, - [5040] = {.lex_state = 439}, + [3935] = {.lex_state = 211}, + [3936] = {.lex_state = 432}, + [3937] = {.lex_state = 211}, + [3938] = {.lex_state = 257}, + [3939] = {.lex_state = 212}, + [3940] = {.lex_state = 212}, + [3941] = {.lex_state = 211}, + [3942] = {.lex_state = 211}, + [3943] = {.lex_state = 211}, + [3944] = {.lex_state = 217, .external_lex_state = 67}, + [3945] = {.lex_state = 211}, + [3946] = {.lex_state = 257}, + [3947] = {.lex_state = 432}, + [3948] = {.lex_state = 195, .external_lex_state = 63}, + [3949] = {.lex_state = 211}, + [3950] = {.lex_state = 258, .external_lex_state = 59}, + [3951] = {.lex_state = 211}, + [3952] = {.lex_state = 257}, + [3953] = {.lex_state = 432}, + [3954] = {.lex_state = 211}, + [3955] = {.lex_state = 211}, + [3956] = {.lex_state = 211}, + [3957] = {.lex_state = 212}, + [3958] = {.lex_state = 211}, + [3959] = {.lex_state = 432}, + [3960] = {.lex_state = 234}, + [3961] = {.lex_state = 211}, + [3962] = {.lex_state = 211}, + [3963] = {.lex_state = 257}, + [3964] = {.lex_state = 211}, + [3965] = {.lex_state = 211}, + [3966] = {.lex_state = 211}, + [3967] = {.lex_state = 211}, + [3968] = {.lex_state = 432}, + [3969] = {.lex_state = 211}, + [3970] = {.lex_state = 211}, + [3971] = {.lex_state = 211}, + [3972] = {.lex_state = 211}, + [3973] = {.lex_state = 211}, + [3974] = {.lex_state = 211}, + [3975] = {.lex_state = 257}, + [3976] = {.lex_state = 211}, + [3977] = {.lex_state = 211}, + [3978] = {.lex_state = 257}, + [3979] = {.lex_state = 211}, + [3980] = {.lex_state = 211}, + [3981] = {.lex_state = 211}, + [3982] = {.lex_state = 211}, + [3983] = {.lex_state = 211}, + [3984] = {.lex_state = 432}, + [3985] = {.lex_state = 432}, + [3986] = {.lex_state = 211}, + [3987] = {.lex_state = 432}, + [3988] = {.lex_state = 432}, + [3989] = {.lex_state = 432}, + [3990] = {.lex_state = 432}, + [3991] = {.lex_state = 432}, + [3992] = {.lex_state = 257}, + [3993] = {.lex_state = 211}, + [3994] = {.lex_state = 257}, + [3995] = {.lex_state = 257}, + [3996] = {.lex_state = 432}, + [3997] = {.lex_state = 211}, + [3998] = {.lex_state = 211}, + [3999] = {.lex_state = 257}, + [4000] = {.lex_state = 257}, + [4001] = {.lex_state = 212}, + [4002] = {.lex_state = 432}, + [4003] = {.lex_state = 432}, + [4004] = {.lex_state = 246, .external_lex_state = 63}, + [4005] = {.lex_state = 211}, + [4006] = {.lex_state = 211}, + [4007] = {.lex_state = 211}, + [4008] = {.lex_state = 246, .external_lex_state = 63}, + [4009] = {.lex_state = 211}, + [4010] = {.lex_state = 211}, + [4011] = {.lex_state = 257}, + [4012] = {.lex_state = 211}, + [4013] = {.lex_state = 432}, + [4014] = {.lex_state = 211}, + [4015] = {.lex_state = 257}, + [4016] = {.lex_state = 211}, + [4017] = {.lex_state = 211}, + [4018] = {.lex_state = 432}, + [4019] = {.lex_state = 257}, + [4020] = {.lex_state = 432}, + [4021] = {.lex_state = 246, .external_lex_state = 63}, + [4022] = {.lex_state = 211}, + [4023] = {.lex_state = 432}, + [4024] = {.lex_state = 257}, + [4025] = {.lex_state = 211}, + [4026] = {.lex_state = 211}, + [4027] = {.lex_state = 211}, + [4028] = {.lex_state = 432}, + [4029] = {.lex_state = 432}, + [4030] = {.lex_state = 212}, + [4031] = {.lex_state = 211}, + [4032] = {.lex_state = 432}, + [4033] = {.lex_state = 211}, + [4034] = {.lex_state = 211}, + [4035] = {.lex_state = 432}, + [4036] = {.lex_state = 211}, + [4037] = {.lex_state = 211}, + [4038] = {.lex_state = 211}, + [4039] = {.lex_state = 211}, + [4040] = {.lex_state = 257}, + [4041] = {.lex_state = 211}, + [4042] = {.lex_state = 211}, + [4043] = {.lex_state = 211}, + [4044] = {.lex_state = 211}, + [4045] = {.lex_state = 257}, + [4046] = {.lex_state = 211}, + [4047] = {.lex_state = 432}, + [4048] = {.lex_state = 432}, + [4049] = {.lex_state = 432}, + [4050] = {.lex_state = 211}, + [4051] = {.lex_state = 432}, + [4052] = {.lex_state = 211}, + [4053] = {.lex_state = 257}, + [4054] = {.lex_state = 246, .external_lex_state = 63}, + [4055] = {.lex_state = 432}, + [4056] = {.lex_state = 212}, + [4057] = {.lex_state = 257}, + [4058] = {.lex_state = 432}, + [4059] = {.lex_state = 211}, + [4060] = {.lex_state = 257}, + [4061] = {.lex_state = 432}, + [4062] = {.lex_state = 432}, + [4063] = {.lex_state = 257}, + [4064] = {.lex_state = 211}, + [4065] = {.lex_state = 211}, + [4066] = {.lex_state = 432}, + [4067] = {.lex_state = 256}, + [4068] = {.lex_state = 246}, + [4069] = {.lex_state = 246}, + [4070] = {.lex_state = 246}, + [4071] = {.lex_state = 246}, + [4072] = {.lex_state = 432}, + [4073] = {.lex_state = 432}, + [4074] = {.lex_state = 432}, + [4075] = {.lex_state = 211}, + [4076] = {.lex_state = 432}, + [4077] = {.lex_state = 432}, + [4078] = {.lex_state = 246}, + [4079] = {.lex_state = 210, .external_lex_state = 59}, + [4080] = {.lex_state = 256}, + [4081] = {.lex_state = 432}, + [4082] = {.lex_state = 211}, + [4083] = {.lex_state = 246}, + [4084] = {.lex_state = 432}, + [4085] = {.lex_state = 246}, + [4086] = {.lex_state = 432}, + [4087] = {.lex_state = 432}, + [4088] = {.lex_state = 210, .external_lex_state = 59}, + [4089] = {.lex_state = 210, .external_lex_state = 59}, + [4090] = {.lex_state = 432}, + [4091] = {.lex_state = 210, .external_lex_state = 59}, + [4092] = {.lex_state = 246}, + [4093] = {.lex_state = 211}, + [4094] = {.lex_state = 432}, + [4095] = {.lex_state = 432}, + [4096] = {.lex_state = 432}, + [4097] = {.lex_state = 246}, + [4098] = {.lex_state = 432}, + [4099] = {.lex_state = 432}, + [4100] = {.lex_state = 246}, + [4101] = {.lex_state = 432}, + [4102] = {.lex_state = 432}, + [4103] = {.lex_state = 432}, + [4104] = {.lex_state = 246}, + [4105] = {.lex_state = 210, .external_lex_state = 59}, + [4106] = {.lex_state = 432}, + [4107] = {.lex_state = 432}, + [4108] = {.lex_state = 432}, + [4109] = {.lex_state = 210, .external_lex_state = 59}, + [4110] = {.lex_state = 432}, + [4111] = {.lex_state = 432}, + [4112] = {.lex_state = 246}, + [4113] = {.lex_state = 246}, + [4114] = {.lex_state = 432}, + [4115] = {.lex_state = 432}, + [4116] = {.lex_state = 246}, + [4117] = {.lex_state = 432}, + [4118] = {.lex_state = 256}, + [4119] = {.lex_state = 256}, + [4120] = {.lex_state = 432}, + [4121] = {.lex_state = 432}, + [4122] = {.lex_state = 432}, + [4123] = {.lex_state = 432}, + [4124] = {.lex_state = 432}, + [4125] = {.lex_state = 246}, + [4126] = {.lex_state = 432}, + [4127] = {.lex_state = 432}, + [4128] = {.lex_state = 210, .external_lex_state = 59}, + [4129] = {.lex_state = 432}, + [4130] = {.lex_state = 246}, + [4131] = {.lex_state = 246}, + [4132] = {.lex_state = 432}, + [4133] = {.lex_state = 432}, + [4134] = {.lex_state = 246}, + [4135] = {.lex_state = 432}, + [4136] = {.lex_state = 246}, + [4137] = {.lex_state = 432}, + [4138] = {.lex_state = 256}, + [4139] = {.lex_state = 432}, + [4140] = {.lex_state = 246}, + [4141] = {.lex_state = 210, .external_lex_state = 71}, + [4142] = {.lex_state = 432}, + [4143] = {.lex_state = 432}, + [4144] = {.lex_state = 432}, + [4145] = {.lex_state = 432}, + [4146] = {.lex_state = 432}, + [4147] = {.lex_state = 246}, + [4148] = {.lex_state = 256}, + [4149] = {.lex_state = 432}, + [4150] = {.lex_state = 432}, + [4151] = {.lex_state = 258, .external_lex_state = 59}, + [4152] = {.lex_state = 210, .external_lex_state = 59}, + [4153] = {.lex_state = 212}, + [4154] = {.lex_state = 432}, + [4155] = {.lex_state = 432}, + [4156] = {.lex_state = 432}, + [4157] = {.lex_state = 246}, + [4158] = {.lex_state = 246}, + [4159] = {.lex_state = 258, .external_lex_state = 59}, + [4160] = {.lex_state = 432}, + [4161] = {.lex_state = 212}, + [4162] = {.lex_state = 432}, + [4163] = {.lex_state = 246}, + [4164] = {.lex_state = 246}, + [4165] = {.lex_state = 246}, + [4166] = {.lex_state = 211}, + [4167] = {.lex_state = 246}, + [4168] = {.lex_state = 211}, + [4169] = {.lex_state = 432}, + [4170] = {.lex_state = 432}, + [4171] = {.lex_state = 189, .external_lex_state = 72}, + [4172] = {.lex_state = 212}, + [4173] = {.lex_state = 432, .external_lex_state = 73}, + [4174] = {.lex_state = 69, .external_lex_state = 44}, + [4175] = {.lex_state = 189, .external_lex_state = 72}, + [4176] = {.lex_state = 432}, + [4177] = {.lex_state = 212}, + [4178] = {.lex_state = 69, .external_lex_state = 44}, + [4179] = {.lex_state = 432}, + [4180] = {.lex_state = 215}, + [4181] = {.lex_state = 215}, + [4182] = {.lex_state = 432}, + [4183] = {.lex_state = 210, .external_lex_state = 59}, + [4184] = {.lex_state = 432}, + [4185] = {.lex_state = 432}, + [4186] = {.lex_state = 432}, + [4187] = {.lex_state = 432}, + [4188] = {.lex_state = 210, .external_lex_state = 59}, + [4189] = {.lex_state = 210, .external_lex_state = 59}, + [4190] = {.lex_state = 432}, + [4191] = {.lex_state = 215}, + [4192] = {.lex_state = 215}, + [4193] = {.lex_state = 256}, + [4194] = {.lex_state = 212}, + [4195] = {.lex_state = 210, .external_lex_state = 59}, + [4196] = {.lex_state = 210, .external_lex_state = 59}, + [4197] = {.lex_state = 432}, + [4198] = {.lex_state = 432}, + [4199] = {.lex_state = 432}, + [4200] = {.lex_state = 212}, + [4201] = {.lex_state = 432}, + [4202] = {.lex_state = 215}, + [4203] = {.lex_state = 210, .external_lex_state = 59}, + [4204] = {.lex_state = 210, .external_lex_state = 59}, + [4205] = {.lex_state = 432}, + [4206] = {.lex_state = 69, .external_lex_state = 44}, + [4207] = {.lex_state = 69, .external_lex_state = 44}, + [4208] = {.lex_state = 432}, + [4209] = {.lex_state = 432}, + [4210] = {.lex_state = 212}, + [4211] = {.lex_state = 432}, + [4212] = {.lex_state = 212}, + [4213] = {.lex_state = 212}, + [4214] = {.lex_state = 432, .external_lex_state = 73}, + [4215] = {.lex_state = 188}, + [4216] = {.lex_state = 215}, + [4217] = {.lex_state = 212}, + [4218] = {.lex_state = 432}, + [4219] = {.lex_state = 210, .external_lex_state = 59}, + [4220] = {.lex_state = 212}, + [4221] = {.lex_state = 256}, + [4222] = {.lex_state = 432}, + [4223] = {.lex_state = 256}, + [4224] = {.lex_state = 212}, + [4225] = {.lex_state = 212}, + [4226] = {.lex_state = 212}, + [4227] = {.lex_state = 210, .external_lex_state = 59}, + [4228] = {.lex_state = 210, .external_lex_state = 59}, + [4229] = {.lex_state = 256}, + [4230] = {.lex_state = 212}, + [4231] = {.lex_state = 432}, + [4232] = {.lex_state = 432}, + [4233] = {.lex_state = 432}, + [4234] = {.lex_state = 210, .external_lex_state = 59}, + [4235] = {.lex_state = 210, .external_lex_state = 59}, + [4236] = {.lex_state = 432}, + [4237] = {.lex_state = 432}, + [4238] = {.lex_state = 432}, + [4239] = {.lex_state = 212}, + [4240] = {.lex_state = 432}, + [4241] = {.lex_state = 215}, + [4242] = {.lex_state = 215}, + [4243] = {.lex_state = 210, .external_lex_state = 59}, + [4244] = {.lex_state = 189, .external_lex_state = 72}, + [4245] = {.lex_state = 189, .external_lex_state = 72}, + [4246] = {.lex_state = 256}, + [4247] = {.lex_state = 432}, + [4248] = {.lex_state = 212}, + [4249] = {.lex_state = 432}, + [4250] = {.lex_state = 432}, + [4251] = {.lex_state = 432}, + [4252] = {.lex_state = 215}, + [4253] = {.lex_state = 432}, + [4254] = {.lex_state = 210, .external_lex_state = 59}, + [4255] = {.lex_state = 432}, + [4256] = {.lex_state = 432}, + [4257] = {.lex_state = 212}, + [4258] = {.lex_state = 69, .external_lex_state = 44}, + [4259] = {.lex_state = 432}, + [4260] = {.lex_state = 432}, + [4261] = {.lex_state = 69, .external_lex_state = 44}, + [4262] = {.lex_state = 432}, + [4263] = {.lex_state = 432}, + [4264] = {.lex_state = 432}, + [4265] = {.lex_state = 215}, + [4266] = {.lex_state = 212}, + [4267] = {.lex_state = 432}, + [4268] = {.lex_state = 432}, + [4269] = {.lex_state = 210, .external_lex_state = 59}, + [4270] = {.lex_state = 212}, + [4271] = {.lex_state = 212}, + [4272] = {.lex_state = 432}, + [4273] = {.lex_state = 188}, + [4274] = {.lex_state = 432}, + [4275] = {.lex_state = 212}, + [4276] = {.lex_state = 212}, + [4277] = {.lex_state = 432}, + [4278] = {.lex_state = 215}, + [4279] = {.lex_state = 256}, + [4280] = {.lex_state = 210, .external_lex_state = 59}, + [4281] = {.lex_state = 432}, + [4282] = {.lex_state = 432, .external_lex_state = 73}, + [4283] = {.lex_state = 432}, + [4284] = {.lex_state = 212}, + [4285] = {.lex_state = 432}, + [4286] = {.lex_state = 432}, + [4287] = {.lex_state = 256}, + [4288] = {.lex_state = 210, .external_lex_state = 59}, + [4289] = {.lex_state = 215}, + [4290] = {.lex_state = 432, .external_lex_state = 73}, + [4291] = {.lex_state = 432}, + [4292] = {.lex_state = 432}, + [4293] = {.lex_state = 212}, + [4294] = {.lex_state = 432}, + [4295] = {.lex_state = 210, .external_lex_state = 59}, + [4296] = {.lex_state = 432}, + [4297] = {.lex_state = 69, .external_lex_state = 44}, + [4298] = {.lex_state = 432}, + [4299] = {.lex_state = 432}, + [4300] = {.lex_state = 210, .external_lex_state = 59}, + [4301] = {.lex_state = 432}, + [4302] = {.lex_state = 212}, + [4303] = {.lex_state = 432}, + [4304] = {.lex_state = 432}, + [4305] = {.lex_state = 210, .external_lex_state = 59}, + [4306] = {.lex_state = 210, .external_lex_state = 59}, + [4307] = {.lex_state = 212}, + [4308] = {.lex_state = 212}, + [4309] = {.lex_state = 432}, + [4310] = {.lex_state = 212}, + [4311] = {.lex_state = 432}, + [4312] = {.lex_state = 212}, + [4313] = {.lex_state = 432}, + [4314] = {.lex_state = 210, .external_lex_state = 59}, + [4315] = {.lex_state = 432}, + [4316] = {.lex_state = 432}, + [4317] = {.lex_state = 432}, + [4318] = {.lex_state = 212}, + [4319] = {.lex_state = 432}, + [4320] = {.lex_state = 212}, + [4321] = {.lex_state = 432}, + [4322] = {.lex_state = 432}, + [4323] = {.lex_state = 210, .external_lex_state = 59}, + [4324] = {.lex_state = 432}, + [4325] = {.lex_state = 432}, + [4326] = {.lex_state = 212}, + [4327] = {.lex_state = 432}, + [4328] = {.lex_state = 212}, + [4329] = {.lex_state = 212}, + [4330] = {.lex_state = 212}, + [4331] = {.lex_state = 432}, + [4332] = {.lex_state = 210, .external_lex_state = 59}, + [4333] = {.lex_state = 215}, + [4334] = {.lex_state = 212}, + [4335] = {.lex_state = 432}, + [4336] = {.lex_state = 432}, + [4337] = {.lex_state = 256}, + [4338] = {.lex_state = 432, .external_lex_state = 73}, + [4339] = {.lex_state = 256}, + [4340] = {.lex_state = 212}, + [4341] = {.lex_state = 432, .external_lex_state = 73}, + [4342] = {.lex_state = 210, .external_lex_state = 59}, + [4343] = {.lex_state = 432}, + [4344] = {.lex_state = 432}, + [4345] = {.lex_state = 210, .external_lex_state = 59}, + [4346] = {.lex_state = 212}, + [4347] = {.lex_state = 212}, + [4348] = {.lex_state = 432}, + [4349] = {.lex_state = 432}, + [4350] = {.lex_state = 432}, + [4351] = {.lex_state = 256}, + [4352] = {.lex_state = 212}, + [4353] = {.lex_state = 215}, + [4354] = {.lex_state = 432}, + [4355] = {.lex_state = 432}, + [4356] = {.lex_state = 432}, + [4357] = {.lex_state = 432}, + [4358] = {.lex_state = 212}, + [4359] = {.lex_state = 432}, + [4360] = {.lex_state = 210, .external_lex_state = 59}, + [4361] = {.lex_state = 432}, + [4362] = {.lex_state = 215}, + [4363] = {.lex_state = 432}, + [4364] = {.lex_state = 212}, + [4365] = {.lex_state = 432}, + [4366] = {.lex_state = 432}, + [4367] = {.lex_state = 215}, + [4368] = {.lex_state = 432}, + [4369] = {.lex_state = 69, .external_lex_state = 44}, + [4370] = {.lex_state = 212}, + [4371] = {.lex_state = 210, .external_lex_state = 59}, + [4372] = {.lex_state = 210, .external_lex_state = 59}, + [4373] = {.lex_state = 212}, + [4374] = {.lex_state = 432}, + [4375] = {.lex_state = 212}, + [4376] = {.lex_state = 212}, + [4377] = {.lex_state = 432}, + [4378] = {.lex_state = 256}, + [4379] = {.lex_state = 215}, + [4380] = {.lex_state = 432}, + [4381] = {.lex_state = 432}, + [4382] = {.lex_state = 212}, + [4383] = {.lex_state = 432}, + [4384] = {.lex_state = 432}, + [4385] = {.lex_state = 210, .external_lex_state = 59}, + [4386] = {.lex_state = 210, .external_lex_state = 59}, + [4387] = {.lex_state = 210, .external_lex_state = 59}, + [4388] = {.lex_state = 212}, + [4389] = {.lex_state = 215}, + [4390] = {.lex_state = 210, .external_lex_state = 59}, + [4391] = {.lex_state = 210, .external_lex_state = 59}, + [4392] = {.lex_state = 210, .external_lex_state = 59}, + [4393] = {.lex_state = 210, .external_lex_state = 59}, + [4394] = {.lex_state = 212}, + [4395] = {.lex_state = 189, .external_lex_state = 72}, + [4396] = {.lex_state = 210, .external_lex_state = 59}, + [4397] = {.lex_state = 210, .external_lex_state = 59}, + [4398] = {.lex_state = 210, .external_lex_state = 59}, + [4399] = {.lex_state = 210, .external_lex_state = 59}, + [4400] = {.lex_state = 212}, + [4401] = {.lex_state = 189, .external_lex_state = 72}, + [4402] = {.lex_state = 210, .external_lex_state = 59}, + [4403] = {.lex_state = 432}, + [4404] = {.lex_state = 210, .external_lex_state = 59}, + [4405] = {.lex_state = 432}, + [4406] = {.lex_state = 212}, + [4407] = {.lex_state = 215}, + [4408] = {.lex_state = 210, .external_lex_state = 59}, + [4409] = {.lex_state = 210, .external_lex_state = 59}, + [4410] = {.lex_state = 210, .external_lex_state = 59}, + [4411] = {.lex_state = 210, .external_lex_state = 59}, + [4412] = {.lex_state = 212}, + [4413] = {.lex_state = 432}, + [4414] = {.lex_state = 210, .external_lex_state = 59}, + [4415] = {.lex_state = 210, .external_lex_state = 59}, + [4416] = {.lex_state = 210, .external_lex_state = 59}, + [4417] = {.lex_state = 210, .external_lex_state = 59}, + [4418] = {.lex_state = 212}, + [4419] = {.lex_state = 432}, + [4420] = {.lex_state = 210, .external_lex_state = 59}, + [4421] = {.lex_state = 210, .external_lex_state = 59}, + [4422] = {.lex_state = 210, .external_lex_state = 59}, + [4423] = {.lex_state = 210, .external_lex_state = 59}, + [4424] = {.lex_state = 212}, + [4425] = {.lex_state = 432}, + [4426] = {.lex_state = 210, .external_lex_state = 59}, + [4427] = {.lex_state = 215}, + [4428] = {.lex_state = 210, .external_lex_state = 59}, + [4429] = {.lex_state = 432}, + [4430] = {.lex_state = 212}, + [4431] = {.lex_state = 210, .external_lex_state = 59}, + [4432] = {.lex_state = 210, .external_lex_state = 59}, + [4433] = {.lex_state = 210, .external_lex_state = 59}, + [4434] = {.lex_state = 215}, + [4435] = {.lex_state = 432}, + [4436] = {.lex_state = 212}, + [4437] = {.lex_state = 432}, + [4438] = {.lex_state = 210, .external_lex_state = 59}, + [4439] = {.lex_state = 210, .external_lex_state = 59}, + [4440] = {.lex_state = 210, .external_lex_state = 59}, + [4441] = {.lex_state = 432}, + [4442] = {.lex_state = 212}, + [4443] = {.lex_state = 432}, + [4444] = {.lex_state = 432}, + [4445] = {.lex_state = 210, .external_lex_state = 59}, + [4446] = {.lex_state = 432}, + [4447] = {.lex_state = 432}, + [4448] = {.lex_state = 212}, + [4449] = {.lex_state = 210, .external_lex_state = 59}, + [4450] = {.lex_state = 212}, + [4451] = {.lex_state = 432}, + [4452] = {.lex_state = 215}, + [4453] = {.lex_state = 212}, + [4454] = {.lex_state = 212}, + [4455] = {.lex_state = 432}, + [4456] = {.lex_state = 432}, + [4457] = {.lex_state = 432}, + [4458] = {.lex_state = 432}, + [4459] = {.lex_state = 432}, + [4460] = {.lex_state = 212}, + [4461] = {.lex_state = 432}, + [4462] = {.lex_state = 432}, + [4463] = {.lex_state = 256}, + [4464] = {.lex_state = 210, .external_lex_state = 59}, + [4465] = {.lex_state = 210, .external_lex_state = 59}, + [4466] = {.lex_state = 212}, + [4467] = {.lex_state = 215}, + [4468] = {.lex_state = 210, .external_lex_state = 59}, + [4469] = {.lex_state = 215}, + [4470] = {.lex_state = 432}, + [4471] = {.lex_state = 432}, + [4472] = {.lex_state = 212}, + [4473] = {.lex_state = 432}, + [4474] = {.lex_state = 432}, + [4475] = {.lex_state = 432}, + [4476] = {.lex_state = 210, .external_lex_state = 59}, + [4477] = {.lex_state = 432}, + [4478] = {.lex_state = 212}, + [4479] = {.lex_state = 432}, + [4480] = {.lex_state = 432}, + [4481] = {.lex_state = 215}, + [4482] = {.lex_state = 432}, + [4483] = {.lex_state = 215}, + [4484] = {.lex_state = 212}, + [4485] = {.lex_state = 432}, + [4486] = {.lex_state = 189, .external_lex_state = 72}, + [4487] = {.lex_state = 189, .external_lex_state = 72}, + [4488] = {.lex_state = 432}, + [4489] = {.lex_state = 215}, + [4490] = {.lex_state = 432}, + [4491] = {.lex_state = 210, .external_lex_state = 59}, + [4492] = {.lex_state = 210, .external_lex_state = 59}, + [4493] = {.lex_state = 432}, + [4494] = {.lex_state = 432}, + [4495] = {.lex_state = 210, .external_lex_state = 59}, + [4496] = {.lex_state = 210, .external_lex_state = 59}, + [4497] = {.lex_state = 215}, + [4498] = {.lex_state = 432}, + [4499] = {.lex_state = 432}, + [4500] = {.lex_state = 432}, + [4501] = {.lex_state = 432, .external_lex_state = 74}, + [4502] = {.lex_state = 432}, + [4503] = {.lex_state = 432}, + [4504] = {.lex_state = 210, .external_lex_state = 59}, + [4505] = {.lex_state = 432}, + [4506] = {.lex_state = 210, .external_lex_state = 59}, + [4507] = {.lex_state = 210, .external_lex_state = 59}, + [4508] = {.lex_state = 215}, + [4509] = {.lex_state = 211}, + [4510] = {.lex_state = 210, .external_lex_state = 59}, + [4511] = {.lex_state = 210, .external_lex_state = 59}, + [4512] = {.lex_state = 212}, + [4513] = {.lex_state = 210, .external_lex_state = 59}, + [4514] = {.lex_state = 215}, + [4515] = {.lex_state = 210, .external_lex_state = 59}, + [4516] = {.lex_state = 432, .external_lex_state = 74}, + [4517] = {.lex_state = 432}, + [4518] = {.lex_state = 432}, + [4519] = {.lex_state = 217}, + [4520] = {.lex_state = 432}, + [4521] = {.lex_state = 432}, + [4522] = {.lex_state = 432, .external_lex_state = 74}, + [4523] = {.lex_state = 432}, + [4524] = {.lex_state = 210, .external_lex_state = 59}, + [4525] = {.lex_state = 210, .external_lex_state = 59}, + [4526] = {.lex_state = 210, .external_lex_state = 59}, + [4527] = {.lex_state = 432}, + [4528] = {.lex_state = 212}, + [4529] = {.lex_state = 212}, + [4530] = {.lex_state = 210, .external_lex_state = 59}, + [4531] = {.lex_state = 210, .external_lex_state = 59}, + [4532] = {.lex_state = 210, .external_lex_state = 59}, + [4533] = {.lex_state = 210, .external_lex_state = 59}, + [4534] = {.lex_state = 210, .external_lex_state = 59}, + [4535] = {.lex_state = 210, .external_lex_state = 59}, + [4536] = {.lex_state = 210, .external_lex_state = 59}, + [4537] = {.lex_state = 210, .external_lex_state = 59}, + [4538] = {.lex_state = 210, .external_lex_state = 59}, + [4539] = {.lex_state = 210, .external_lex_state = 59}, + [4540] = {.lex_state = 210, .external_lex_state = 59}, + [4541] = {.lex_state = 210, .external_lex_state = 59}, + [4542] = {.lex_state = 432}, + [4543] = {.lex_state = 432}, + [4544] = {.lex_state = 215}, + [4545] = {.lex_state = 432, .external_lex_state = 75}, + [4546] = {.lex_state = 432}, + [4547] = {.lex_state = 432}, + [4548] = {.lex_state = 212}, + [4549] = {.lex_state = 212}, + [4550] = {.lex_state = 432}, + [4551] = {.lex_state = 432}, + [4552] = {.lex_state = 432}, + [4553] = {.lex_state = 256}, + [4554] = {.lex_state = 210, .external_lex_state = 59}, + [4555] = {.lex_state = 432, .external_lex_state = 73}, + [4556] = {.lex_state = 212}, + [4557] = {.lex_state = 212}, + [4558] = {.lex_state = 432, .external_lex_state = 73}, + [4559] = {.lex_state = 215}, + [4560] = {.lex_state = 212}, + [4561] = {.lex_state = 215}, + [4562] = {.lex_state = 432}, + [4563] = {.lex_state = 212}, + [4564] = {.lex_state = 432}, + [4565] = {.lex_state = 256}, + [4566] = {.lex_state = 432}, + [4567] = {.lex_state = 432}, + [4568] = {.lex_state = 210, .external_lex_state = 59}, + [4569] = {.lex_state = 210, .external_lex_state = 59}, + [4570] = {.lex_state = 432}, + [4571] = {.lex_state = 432}, + [4572] = {.lex_state = 432}, + [4573] = {.lex_state = 256}, + [4574] = {.lex_state = 215}, + [4575] = {.lex_state = 188}, + [4576] = {.lex_state = 212}, + [4577] = {.lex_state = 432}, + [4578] = {.lex_state = 212}, + [4579] = {.lex_state = 432}, + [4580] = {.lex_state = 212}, + [4581] = {.lex_state = 432}, + [4582] = {.lex_state = 432}, + [4583] = {.lex_state = 432}, + [4584] = {.lex_state = 210, .external_lex_state = 59}, + [4585] = {.lex_state = 211}, + [4586] = {.lex_state = 215}, + [4587] = {.lex_state = 215}, + [4588] = {.lex_state = 212}, + [4589] = {.lex_state = 432, .external_lex_state = 74}, + [4590] = {.lex_state = 432}, + [4591] = {.lex_state = 432}, + [4592] = {.lex_state = 432, .external_lex_state = 74}, + [4593] = {.lex_state = 432}, + [4594] = {.lex_state = 256}, + [4595] = {.lex_state = 432}, + [4596] = {.lex_state = 432}, + [4597] = {.lex_state = 432, .external_lex_state = 74}, + [4598] = {.lex_state = 432}, + [4599] = {.lex_state = 432}, + [4600] = {.lex_state = 210, .external_lex_state = 59}, + [4601] = {.lex_state = 210, .external_lex_state = 59}, + [4602] = {.lex_state = 432}, + [4603] = {.lex_state = 432}, + [4604] = {.lex_state = 432}, + [4605] = {.lex_state = 432}, + [4606] = {.lex_state = 432}, + [4607] = {.lex_state = 215}, + [4608] = {.lex_state = 432}, + [4609] = {.lex_state = 210, .external_lex_state = 59}, + [4610] = {.lex_state = 432}, + [4611] = {.lex_state = 215}, + [4612] = {.lex_state = 432}, + [4613] = {.lex_state = 189, .external_lex_state = 72}, + [4614] = {.lex_state = 432}, + [4615] = {.lex_state = 432}, + [4616] = {.lex_state = 189, .external_lex_state = 72}, + [4617] = {.lex_state = 210, .external_lex_state = 59}, + [4618] = {.lex_state = 215}, + [4619] = {.lex_state = 215}, + [4620] = {.lex_state = 432}, + [4621] = {.lex_state = 432}, + [4622] = {.lex_state = 432}, + [4623] = {.lex_state = 210, .external_lex_state = 59}, + [4624] = {.lex_state = 432}, + [4625] = {.lex_state = 210, .external_lex_state = 59}, + [4626] = {.lex_state = 432}, + [4627] = {.lex_state = 432}, + [4628] = {.lex_state = 256}, + [4629] = {.lex_state = 210, .external_lex_state = 59}, + [4630] = {.lex_state = 432}, + [4631] = {.lex_state = 432}, + [4632] = {.lex_state = 432}, + [4633] = {.lex_state = 215}, + [4634] = {.lex_state = 432}, + [4635] = {.lex_state = 432}, + [4636] = {.lex_state = 432}, + [4637] = {.lex_state = 432}, + [4638] = {.lex_state = 432}, + [4639] = {.lex_state = 212}, + [4640] = {.lex_state = 210, .external_lex_state = 59}, + [4641] = {.lex_state = 432}, + [4642] = {.lex_state = 215}, + [4643] = {.lex_state = 212}, + [4644] = {.lex_state = 432}, + [4645] = {.lex_state = 432}, + [4646] = {.lex_state = 432, .external_lex_state = 74}, + [4647] = {.lex_state = 432}, + [4648] = {.lex_state = 432}, + [4649] = {.lex_state = 432}, + [4650] = {.lex_state = 210, .external_lex_state = 59}, + [4651] = {.lex_state = 432, .external_lex_state = 74}, + [4652] = {.lex_state = 210, .external_lex_state = 59}, + [4653] = {.lex_state = 432}, + [4654] = {.lex_state = 210, .external_lex_state = 59}, + [4655] = {.lex_state = 215}, + [4656] = {.lex_state = 432}, + [4657] = {.lex_state = 432}, + [4658] = {.lex_state = 432}, + [4659] = {.lex_state = 432}, + [4660] = {.lex_state = 432}, + [4661] = {.lex_state = 212}, + [4662] = {.lex_state = 210, .external_lex_state = 59}, + [4663] = {.lex_state = 432}, + [4664] = {.lex_state = 215}, + [4665] = {.lex_state = 432}, + [4666] = {.lex_state = 432}, + [4667] = {.lex_state = 432}, + [4668] = {.lex_state = 432}, + [4669] = {.lex_state = 210, .external_lex_state = 59}, + [4670] = {.lex_state = 215}, + [4671] = {.lex_state = 432}, + [4672] = {.lex_state = 432}, + [4673] = {.lex_state = 432}, + [4674] = {.lex_state = 432}, + [4675] = {.lex_state = 212}, + [4676] = {.lex_state = 212}, + [4677] = {.lex_state = 212}, + [4678] = {.lex_state = 212}, + [4679] = {.lex_state = 212}, + [4680] = {.lex_state = 212}, + [4681] = {.lex_state = 212}, + [4682] = {.lex_state = 212}, + [4683] = {.lex_state = 212}, + [4684] = {.lex_state = 212}, + [4685] = {.lex_state = 212}, + [4686] = {.lex_state = 212}, + [4687] = {.lex_state = 212}, + [4688] = {.lex_state = 212}, + [4689] = {.lex_state = 212}, + [4690] = {.lex_state = 212}, + [4691] = {.lex_state = 212}, + [4692] = {.lex_state = 212}, + [4693] = {.lex_state = 212}, + [4694] = {.lex_state = 212}, + [4695] = {.lex_state = 212}, + [4696] = {.lex_state = 212}, + [4697] = {.lex_state = 212}, + [4698] = {.lex_state = 212}, + [4699] = {.lex_state = 212}, + [4700] = {.lex_state = 212}, + [4701] = {.lex_state = 212}, + [4702] = {.lex_state = 212}, + [4703] = {.lex_state = 212}, + [4704] = {.lex_state = 212}, + [4705] = {.lex_state = 212}, + [4706] = {.lex_state = 212}, + [4707] = {.lex_state = 212}, + [4708] = {.lex_state = 212}, + [4709] = {.lex_state = 212}, + [4710] = {.lex_state = 212}, + [4711] = {.lex_state = 212}, + [4712] = {.lex_state = 212}, + [4713] = {.lex_state = 212}, + [4714] = {.lex_state = 212}, + [4715] = {.lex_state = 212}, + [4716] = {.lex_state = 212}, + [4717] = {.lex_state = 256}, + [4718] = {.lex_state = 432}, + [4719] = {.lex_state = 210, .external_lex_state = 59}, + [4720] = {.lex_state = 215}, + [4721] = {.lex_state = 432}, + [4722] = {.lex_state = 212}, + [4723] = {.lex_state = 256}, + [4724] = {.lex_state = 432}, + [4725] = {.lex_state = 256}, + [4726] = {.lex_state = 432}, + [4727] = {.lex_state = 211}, + [4728] = {.lex_state = 212}, + [4729] = {.lex_state = 256}, + [4730] = {.lex_state = 432}, + [4731] = {.lex_state = 432}, + [4732] = {.lex_state = 212}, + [4733] = {.lex_state = 256}, + [4734] = {.lex_state = 432}, + [4735] = {.lex_state = 212}, + [4736] = {.lex_state = 212}, + [4737] = {.lex_state = 212}, + [4738] = {.lex_state = 212}, + [4739] = {.lex_state = 212}, + [4740] = {.lex_state = 212}, + [4741] = {.lex_state = 212}, + [4742] = {.lex_state = 212}, + [4743] = {.lex_state = 212}, + [4744] = {.lex_state = 212}, + [4745] = {.lex_state = 212}, + [4746] = {.lex_state = 212}, + [4747] = {.lex_state = 212}, + [4748] = {.lex_state = 212}, + [4749] = {.lex_state = 212}, + [4750] = {.lex_state = 212}, + [4751] = {.lex_state = 212}, + [4752] = {.lex_state = 212}, + [4753] = {.lex_state = 212}, + [4754] = {.lex_state = 212}, + [4755] = {.lex_state = 212}, + [4756] = {.lex_state = 212}, + [4757] = {.lex_state = 212}, + [4758] = {.lex_state = 212}, + [4759] = {.lex_state = 212}, + [4760] = {.lex_state = 212}, + [4761] = {.lex_state = 212}, + [4762] = {.lex_state = 212}, + [4763] = {.lex_state = 212}, + [4764] = {.lex_state = 212}, + [4765] = {.lex_state = 212}, + [4766] = {.lex_state = 212}, + [4767] = {.lex_state = 212}, + [4768] = {.lex_state = 212}, + [4769] = {.lex_state = 212}, + [4770] = {.lex_state = 212}, + [4771] = {.lex_state = 212}, + [4772] = {.lex_state = 212}, + [4773] = {.lex_state = 212}, + [4774] = {.lex_state = 212}, + [4775] = {.lex_state = 212}, + [4776] = {.lex_state = 212}, + [4777] = {.lex_state = 432}, }; enum { @@ -21254,11 +20688,15 @@ enum { ts_external_token_extglob_pattern = 12, ts_external_token__bare_dollar = 13, ts_external_token__brace_start = 14, - ts_external_token_RBRACE = 15, - ts_external_token_RBRACK = 16, - ts_external_token_LT_LT = 17, - ts_external_token_LT_LT_DASH = 18, - ts_external_token_LF = 19, + ts_external_token__immediate_double_hash = 15, + ts_external_token__external_expansion_sym_hash = 16, + ts_external_token__external_expansion_sym_bang = 17, + ts_external_token__external_expansion_sym_equal = 18, + ts_external_token_RBRACE = 19, + ts_external_token_RBRACK = 20, + ts_external_token_LT_LT = 21, + ts_external_token_LT_LT_DASH = 22, + ts_external_token_LF = 23, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -21277,6 +20715,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_extglob_pattern] = sym_extglob_pattern, [ts_external_token__bare_dollar] = sym__bare_dollar, [ts_external_token__brace_start] = sym__brace_start, + [ts_external_token__immediate_double_hash] = sym__immediate_double_hash, + [ts_external_token__external_expansion_sym_hash] = sym__external_expansion_sym_hash, + [ts_external_token__external_expansion_sym_bang] = sym__external_expansion_sym_bang, + [ts_external_token__external_expansion_sym_equal] = sym__external_expansion_sym_equal, [ts_external_token_RBRACE] = anon_sym_RBRACE3, [ts_external_token_RBRACK] = anon_sym_RBRACK, [ts_external_token_LT_LT] = anon_sym_LT_LT, @@ -21284,7 +20726,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[76][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_simple_heredoc_body] = true, @@ -21301,6 +20743,10 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_extglob_pattern] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token__immediate_double_hash] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, @@ -21363,10 +20809,6 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [10] = { - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - }, - [11] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, @@ -21374,28 +20816,28 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [12] = { + [11] = { [ts_external_token_file_descriptor] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [13] = { + [12] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [14] = { + [13] = { [ts_external_token_file_descriptor] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [15] = { + [14] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, @@ -21403,33 +20845,28 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [16] = { + [15] = { [ts_external_token_file_descriptor] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [17] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [16] = { [ts_external_token_LT_LT] = true, }, - [18] = { + [17] = { [ts_external_token_file_descriptor] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [19] = { + [18] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [20] = { - [ts_external_token_regex] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - }, - [21] = { + [19] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -21438,11 +20875,11 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [22] = { + [20] = { [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [23] = { + [21] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, @@ -21450,6 +20887,13 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, + [22] = { + [ts_external_token__regex_no_space] = true, + [ts_external_token__brace_start] = true, + }, + [23] = { + [ts_external_token__brace_start] = true, + }, [24] = { [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, @@ -21463,8 +20907,9 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [26] = { - [ts_external_token__regex_no_space] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LF] = true, }, [27] = { [ts_external_token_file_descriptor] = true, @@ -21475,11 +20920,6 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [28] = { - [ts_external_token_extglob_pattern] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, - }, - [29] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -21488,10 +20928,7 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [30] = { - [ts_external_token__brace_start] = true, - }, - [31] = { + [29] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, @@ -21499,57 +20936,68 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [32] = { + [30] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [33] = { - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, + [31] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [34] = { + [32] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, - [35] = { - [ts_external_token__concat] = true, + [33] = { + [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, + }, + [34] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, + [35] = { + [ts_external_token__brace_start] = true, + [ts_external_token_LF] = true, + }, [36] = { - [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, [37] = { - [ts_external_token_extglob_pattern] = true, + [ts_external_token__empty_value] = true, [ts_external_token__brace_start] = true, }, [38] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, }, [39] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_LF] = true, + [ts_external_token__immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, }, [40] = { - [ts_external_token__empty_value] = true, + [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, }, [41] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [42] = { [ts_external_token_file_descriptor] = true, @@ -21558,27 +21006,24 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [43] = { - [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACE] = true, }, [44] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [45] = { [ts_external_token_LF] = true, }, - [46] = { + [45] = { [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, }, - [47] = { + [46] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, + [47] = { + [ts_external_token__immediate_double_hash] = true, + }, [48] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -21596,87 +21041,119 @@ static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { }, [50] = { [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, + [ts_external_token__immediate_double_hash] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, }, [51] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_variable_name] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, }, [52] = { - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LF] = true, }, [53] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [54] = { + [ts_external_token__concat] = true, + [ts_external_token__brace_start] = true, + }, + [55] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [55] = { - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, - }, [56] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [57] = { - [ts_external_token_RBRACE] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [58] = { + [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, + }, + [59] = { + [ts_external_token_RBRACE] = true, + }, + [60] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LF] = true, }, - [59] = { + [61] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [60] = { + [62] = { [ts_external_token__heredoc_body_middle] = true, [ts_external_token_heredoc_end] = true, }, - [61] = { + [63] = { [ts_external_token__concat] = true, }, - [62] = { + [64] = { [ts_external_token_RBRACE] = true, [ts_external_token_LF] = true, }, - [63] = { + [65] = { [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, - [64] = { + [66] = { + [ts_external_token_regex] = true, + }, + [67] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [65] = { + [68] = { + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, + [69] = { [ts_external_token_simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, }, - [66] = { - [ts_external_token_regex] = true, + [70] = { + [ts_external_token__concat] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, }, - [67] = { - [ts_external_token_heredoc_end] = true, + [71] = { + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, }, - [68] = { + [72] = { [ts_external_token_RBRACK] = true, }, - [69] = { + [73] = { + [ts_external_token_heredoc_end] = true, + }, + [74] = { [ts_external_token_heredoc_start] = true, }, - [70] = { + [75] = { [ts_external_token__regex_no_slash] = true, }, }; @@ -21693,10 +21170,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), @@ -21706,8 +21179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), @@ -21747,6 +21218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1), [anon_sym_declare] = ACTIONS(1), [anon_sym_typeset] = ACTIONS(1), [anon_sym_export] = ACTIONS(1), @@ -21754,7 +21226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_local] = ACTIONS(1), [anon_sym_unset] = ACTIONS(1), [anon_sym_unsetenv] = ACTIONS(1), - [anon_sym_EQ_TILDE] = ACTIONS(1), [anon_sym_AMP_GT] = ACTIONS(1), [anon_sym_AMP_GT_GT] = ACTIONS(1), [anon_sym_LT_AMP] = ACTIONS(1), @@ -21766,7 +21237,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [aux_sym_unary_expression_token1] = ACTIONS(1), + [anon_sym_DASH2] = ACTIONS(1), + [anon_sym_PLUS2] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_RBRACE2] = ACTIONS(1), @@ -21776,23 +21249,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [sym_raw_string] = ACTIONS(1), [sym_ansi_c_string] = ACTIONS(1), - [aux_sym_number_token1] = ACTIONS(1), - [aux_sym_number_token2] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_RBRACE3] = ACTIONS(1), + [anon_sym_BANG2] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_STAR2] = ACTIONS(1), + [anon_sym_POUND2] = ACTIONS(1), + [anon_sym_EQ2] = ACTIONS(1), [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_DASH3] = ACTIONS(1), [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_PLUS3] = ACTIONS(1), [anon_sym_COLON_PLUS] = ACTIONS(1), + [anon_sym_QMARK2] = ACTIONS(1), [anon_sym_COLON_QMARK] = ACTIONS(1), - [anon_sym_POUND_POUND] = ACTIONS(1), [anon_sym_PERCENT_PERCENT] = ACTIONS(1), [anon_sym_SLASH_SLASH] = ACTIONS(1), [anon_sym_SLASH_POUND] = ACTIONS(1), [anon_sym_SLASH_PERCENT] = ACTIONS(1), [anon_sym_COMMA_COMMA] = ACTIONS(1), [anon_sym_CARET_CARET] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [anon_sym_U] = ACTIONS(1), [anon_sym_u] = ACTIONS(1), [anon_sym_L] = ACTIONS(1), @@ -21803,10 +21280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_K] = ACTIONS(1), [anon_sym_a] = ACTIONS(1), [anon_sym_k] = ACTIONS(1), - [anon_sym_COMMA2] = ACTIONS(1), - [anon_sym_COMMA_COMMA2] = ACTIONS(1), - [anon_sym_CARET2] = ACTIONS(1), - [anon_sym_CARET_CARET2] = ACTIONS(1), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1), @@ -21814,9 +21287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1), [sym_comment] = ACTIONS(3), [sym__comment_word] = ACTIONS(1), + [anon_sym_AT2] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), [anon_sym__] = ACTIONS(1), - [sym_test_operator] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), [sym_simple_heredoc_body] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), @@ -21832,45 +21305,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extglob_pattern] = ACTIONS(1), [sym__bare_dollar] = ACTIONS(1), [sym__brace_start] = ACTIONS(1), + [sym__immediate_double_hash] = ACTIONS(1), + [sym__external_expansion_sym_hash] = ACTIONS(1), + [sym__external_expansion_sym_bang] = ACTIONS(1), + [sym__external_expansion_sym_equal] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4874), - [sym__statements] = STATE(4873), - [sym_redirected_statement] = STATE(2851), - [sym_for_statement] = STATE(2851), - [sym_c_style_for_statement] = STATE(2851), - [sym_while_statement] = STATE(2851), - [sym_if_statement] = STATE(2851), - [sym_case_statement] = STATE(2851), - [sym_function_definition] = STATE(2851), - [sym_compound_statement] = STATE(2851), - [sym_subshell] = STATE(2851), - [sym_pipeline] = STATE(2851), - [sym_list] = STATE(2851), - [sym_negated_command] = STATE(2851), - [sym_test_command] = STATE(2851), - [sym_declaration_command] = STATE(2851), - [sym_unset_command] = STATE(2851), - [sym_command] = STATE(2851), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(662), - [sym_variable_assignments] = STATE(2851), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym__statements_repeat1] = STATE(303), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), + [sym_program] = STATE(4663), + [sym__statements] = STATE(4608), + [sym_redirected_statement] = STATE(2727), + [sym_for_statement] = STATE(2727), + [sym_c_style_for_statement] = STATE(2727), + [sym_while_statement] = STATE(2727), + [sym_if_statement] = STATE(2727), + [sym_case_statement] = STATE(2727), + [sym_function_definition] = STATE(2727), + [sym_compound_statement] = STATE(2727), + [sym_subshell] = STATE(2727), + [sym_pipeline] = STATE(2727), + [sym_list] = STATE(2727), + [sym_negated_command] = STATE(2727), + [sym_test_command] = STATE(2727), + [sym_declaration_command] = STATE(2727), + [sym_unset_command] = STATE(2727), + [sym_command] = STATE(2727), + [sym_command_name] = STATE(457), + [sym_variable_assignment] = STATE(669), + [sym_variable_assignments] = STATE(2727), + [sym_subscript] = STATE(4136), + [sym_file_redirect] = STATE(1494), + [sym_arithmetic_expansion] = STATE(836), + [sym_brace_expression] = STATE(836), + [sym_concatenation] = STATE(1267), + [sym_string] = STATE(836), + [sym_translated_string] = STATE(836), + [sym_number] = STATE(836), + [sym_simple_expansion] = STATE(836), + [sym_expansion] = STATE(836), + [sym_command_substitution] = STATE(836), + [sym_process_substitution] = STATE(836), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_redirected_statement_repeat2] = STATE(3015), + [aux_sym_command_repeat1] = STATE(953), + [aux_sym__literal_repeat1] = STATE(1038), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -21922,48 +21399,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(71), }, [2] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1948), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1788), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(338), + [sym_brace_expression] = STATE(338), + [sym_concatenation] = STATE(389), + [sym_string] = STATE(338), + [sym_translated_string] = STATE(338), + [sym_number] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(376), [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -21994,75 +21471,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(103), + [sym_ansi_c_string] = ACTIONS(103), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(119), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [3] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2112), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1943), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(339), + [sym_brace_expression] = STATE(339), + [sym_concatenation] = STATE(391), + [sym_string] = STATE(339), + [sym_translated_string] = STATE(339), + [sym_number] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(127), + [anon_sym_RPAREN_RPAREN] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -22073,7 +21554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(131), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22088,71 +21569,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(139), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [4] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1941), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), - [sym_word] = ACTIONS(73), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1977), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(339), + [sym_brace_expression] = STATE(339), + [sym_concatenation] = STATE(391), + [sym_string] = STATE(339), + [sym_translated_string] = STATE(339), + [sym_number] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), @@ -22167,7 +21652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(131), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22182,75 +21667,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(139), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [5] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2045), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1888), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(338), + [sym_brace_expression] = STATE(338), + [sym_concatenation] = STATE(389), + [sym_string] = STATE(338), + [sym_translated_string] = STATE(338), + [sym_number] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(376), + [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(137), + [anon_sym_RPAREN_RPAREN] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -22261,7 +21750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22276,75 +21765,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(103), + [sym_ansi_c_string] = ACTIONS(103), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(119), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [6] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1954), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), - [sym_word] = ACTIONS(73), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(2006), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(339), + [sym_brace_expression] = STATE(339), + [sym_concatenation] = STATE(391), + [sym_string] = STATE(339), + [sym_translated_string] = STATE(339), + [sym_number] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(127), + [anon_sym_RPAREN_RPAREN] = ACTIONS(141), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -22355,7 +21848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(131), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22370,75 +21863,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(139), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [7] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2079), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1798), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(338), + [sym_brace_expression] = STATE(338), + [sym_concatenation] = STATE(389), + [sym_string] = STATE(338), + [sym_translated_string] = STATE(338), + [sym_number] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(376), + [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(77), + [anon_sym_RPAREN_RPAREN] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -22449,7 +21946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22464,178 +21961,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(97), + [sym__special_character] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_raw_string] = ACTIONS(103), + [sym_ansi_c_string] = ACTIONS(103), + [aux_sym_number_token1] = ACTIONS(105), + [aux_sym_number_token2] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(115), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), + [sym_test_operator] = ACTIONS(119), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(125), }, [8] = { - [sym__expression] = STATE(2060), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1637), - [sym_brace_expression] = STATE(1637), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1637), - [sym_translated_string] = STATE(1637), - [sym_number] = STATE(1637), - [sym_simple_expansion] = STATE(1637), - [sym_expansion] = STATE(1637), - [sym_command_substitution] = STATE(1637), - [sym_process_substitution] = STATE(1637), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(139), - [anon_sym_LPAREN_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(152), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(160), - [sym_raw_string] = ACTIONS(139), - [sym_ansi_c_string] = ACTIONS(139), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), + [sym__expression] = STATE(1936), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1523), + [sym_brace_expression] = STATE(1523), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1523), + [sym_translated_string] = STATE(1523), + [sym_number] = STATE(1523), + [sym_simple_expansion] = STATE(1523), + [sym_expansion] = STATE(1523), + [sym_command_substitution] = STATE(1523), + [sym_process_substitution] = STATE(1523), + [aux_sym__literal_repeat1] = STATE(1653), + [aux_sym_concatenation_repeat1] = STATE(343), + [sym_word] = ACTIONS(143), + [anon_sym_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_RPAREN_RPAREN] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_PLUS_PLUS2] = ACTIONS(93), + [anon_sym_DASH_DASH2] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(160), + [sym__special_character] = ACTIONS(162), + [anon_sym_DQUOTE] = ACTIONS(164), + [sym_raw_string] = ACTIONS(143), + [sym_ansi_c_string] = ACTIONS(143), + [aux_sym_number_token1] = ACTIONS(166), + [aux_sym_number_token2] = ACTIONS(168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(174), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(176), + [anon_sym_LT_LPAREN] = ACTIONS(178), + [anon_sym_GT_LPAREN] = ACTIONS(178), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(176), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(182), + [sym_test_operator] = ACTIONS(180), + [sym_file_descriptor] = ACTIONS(182), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(186), }, [9] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2129), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), + [sym__statements] = STATE(4658), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1945), + [sym_binary_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_arithmetic_expansion] = STATE(351), + [sym_brace_expression] = STATE(351), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(351), + [sym_translated_string] = STATE(351), + [sym_number] = STATE(351), + [sym_simple_expansion] = STATE(351), + [sym_expansion] = STATE(351), + [sym_command_substitution] = STATE(351), + [sym_process_substitution] = STATE(351), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(390), + [sym_word] = ACTIONS(188), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_LPAREN] = ACTIONS(190), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(192), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), + [anon_sym_BANG] = ACTIONS(194), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22650,85 +22155,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), + [anon_sym_DASH2] = ACTIONS(196), + [anon_sym_PLUS2] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(198), + [anon_sym_PLUS_PLUS2] = ACTIONS(198), + [anon_sym_DASH_DASH2] = ACTIONS(198), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(190), + [anon_sym_DOLLAR] = ACTIONS(200), + [sym__special_character] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(206), + [sym_ansi_c_string] = ACTIONS(206), + [aux_sym_number_token1] = ACTIONS(208), + [aux_sym_number_token2] = ACTIONS(210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), + [sym_test_operator] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(224), }, [10] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2052), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1998), + [sym_binary_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_arithmetic_expansion] = STATE(351), + [sym_brace_expression] = STATE(351), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(351), + [sym_translated_string] = STATE(351), + [sym_number] = STATE(351), + [sym_simple_expansion] = STATE(351), + [sym_expansion] = STATE(351), + [sym_command_substitution] = STATE(351), + [sym_process_substitution] = STATE(351), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(390), + [sym_word] = ACTIONS(188), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_LPAREN] = ACTIONS(190), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(226), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), + [anon_sym_BANG] = ACTIONS(194), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22743,178 +22252,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), + [anon_sym_DASH2] = ACTIONS(196), + [anon_sym_PLUS2] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(198), + [anon_sym_PLUS_PLUS2] = ACTIONS(198), + [anon_sym_DASH_DASH2] = ACTIONS(198), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(190), + [anon_sym_DOLLAR] = ACTIONS(200), + [sym__special_character] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(206), + [sym_ansi_c_string] = ACTIONS(206), + [aux_sym_number_token1] = ACTIONS(208), + [aux_sym_number_token2] = ACTIONS(210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), + [sym_test_operator] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(224), }, [11] = { - [sym__expression] = STATE(1990), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1557), - [sym_translated_string] = STATE(1557), - [sym_number] = STATE(1557), - [sym_simple_expansion] = STATE(1557), - [sym_expansion] = STATE(1557), - [sym_command_substitution] = STATE(1557), - [sym_process_substitution] = STATE(1557), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(224), - [anon_sym_DQUOTE] = ACTIONS(160), - [sym_raw_string] = ACTIONS(220), - [sym_ansi_c_string] = ACTIONS(220), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), + [sym__expression] = STATE(1976), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1574), + [sym_brace_expression] = STATE(1574), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1574), + [sym_translated_string] = STATE(1574), + [sym_number] = STATE(1574), + [sym_simple_expansion] = STATE(1574), + [sym_expansion] = STATE(1574), + [sym_command_substitution] = STATE(1574), + [sym_process_substitution] = STATE(1574), + [aux_sym__literal_repeat1] = STATE(1653), + [aux_sym_concatenation_repeat1] = STATE(343), + [sym_word] = ACTIONS(228), + [anon_sym_LPAREN_LPAREN] = ACTIONS(145), + [anon_sym_RPAREN_RPAREN] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_PLUS_PLUS2] = ACTIONS(133), + [anon_sym_DASH_DASH2] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(160), + [sym__special_character] = ACTIONS(232), + [anon_sym_DQUOTE] = ACTIONS(164), + [sym_raw_string] = ACTIONS(228), + [sym_ansi_c_string] = ACTIONS(228), + [aux_sym_number_token1] = ACTIONS(166), + [aux_sym_number_token2] = ACTIONS(168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(174), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(176), + [anon_sym_LT_LPAREN] = ACTIONS(178), + [anon_sym_GT_LPAREN] = ACTIONS(178), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(226), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(182), + [sym_test_operator] = ACTIONS(234), + [sym_file_descriptor] = ACTIONS(182), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(186), }, [12] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2085), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym__expression] = STATE(1957), + [sym_binary_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_arithmetic_expansion] = STATE(351), + [sym_brace_expression] = STATE(351), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(351), + [sym_translated_string] = STATE(351), + [sym_number] = STATE(351), + [sym_simple_expansion] = STATE(351), + [sym_expansion] = STATE(351), + [sym_command_substitution] = STATE(351), + [sym_process_substitution] = STATE(351), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(390), + [sym_word] = ACTIONS(188), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_LPAREN] = ACTIONS(190), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(226), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), + [anon_sym_BANG] = ACTIONS(194), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -22929,1057 +22446,1080 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), + [anon_sym_DASH2] = ACTIONS(196), + [anon_sym_PLUS2] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(198), + [anon_sym_PLUS_PLUS2] = ACTIONS(198), + [anon_sym_DASH_DASH2] = ACTIONS(198), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(190), + [anon_sym_DOLLAR] = ACTIONS(200), + [sym__special_character] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(204), + [sym_raw_string] = ACTIONS(206), + [sym_ansi_c_string] = ACTIONS(206), + [aux_sym_number_token1] = ACTIONS(208), + [aux_sym_number_token2] = ACTIONS(210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), + [sym_test_operator] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(224), }, [13] = { - [sym__expression] = STATE(2122), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(1593), - [sym_brace_expression] = STATE(1593), - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(1593), - [sym_translated_string] = STATE(1593), - [sym_number] = STATE(1593), - [sym_simple_expansion] = STATE(1593), - [sym_expansion] = STATE(1593), - [sym_command_substitution] = STATE(1593), - [sym_process_substitution] = STATE(1593), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(360), - [sym_word] = ACTIONS(230), - [anon_sym_LPAREN_LPAREN] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(236), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(232), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(242), - [anon_sym_DQUOTE] = ACTIONS(244), - [sym_raw_string] = ACTIONS(230), - [sym_ansi_c_string] = ACTIONS(230), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(258), - [anon_sym_GT_LPAREN] = ACTIONS(258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(260), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(264), + [sym_redirected_statement] = STATE(3159), + [sym_for_statement] = STATE(3178), + [sym_c_style_for_statement] = STATE(3178), + [sym_while_statement] = STATE(3178), + [sym_if_statement] = STATE(3178), + [sym_case_statement] = STATE(3178), + [sym_function_definition] = STATE(3178), + [sym_compound_statement] = STATE(3178), + [sym_subshell] = STATE(3178), + [sym_pipeline] = STATE(3178), + [sym_list] = STATE(3178), + [sym_negated_command] = STATE(3178), + [sym_test_command] = STATE(3178), + [sym_declaration_command] = STATE(3178), + [sym_unset_command] = STATE(3178), + [sym_command] = STATE(3178), + [sym_command_name] = STATE(605), + [sym_variable_assignment] = STATE(1280), + [sym_variable_assignments] = STATE(3178), + [sym_subscript] = STATE(4068), + [sym_file_redirect] = STATE(2011), + [sym__expression] = STATE(1996), + [sym_binary_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_parenthesized_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(397), + [sym_brace_expression] = STATE(397), + [sym_concatenation] = STATE(422), + [sym_string] = STATE(397), + [sym_translated_string] = STATE(397), + [sym_number] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [sym_process_substitution] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(3274), + [aux_sym_command_repeat1] = STATE(927), + [aux_sym__literal_repeat1] = STATE(420), + [sym_word] = ACTIONS(236), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_RBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(246), + [anon_sym_AMP_GT_GT] = ACTIONS(244), + [anon_sym_LT_AMP] = ACTIONS(244), + [anon_sym_GT_AMP] = ACTIONS(244), + [anon_sym_GT_PIPE] = ACTIONS(244), + [anon_sym_DASH2] = ACTIONS(272), + [anon_sym_PLUS2] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PLUS_PLUS2] = ACTIONS(274), + [anon_sym_DASH_DASH2] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym__special_character] = ACTIONS(278), + [anon_sym_DQUOTE] = ACTIONS(280), + [sym_raw_string] = ACTIONS(282), + [sym_ansi_c_string] = ACTIONS(282), + [aux_sym_number_token1] = ACTIONS(284), + [aux_sym_number_token2] = ACTIONS(286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), + [anon_sym_BQUOTE] = ACTIONS(292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(294), + [anon_sym_LT_LPAREN] = ACTIONS(296), + [anon_sym_GT_LPAREN] = ACTIONS(296), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(298), + [sym_file_descriptor] = ACTIONS(300), + [sym_variable_name] = ACTIONS(302), + [sym__brace_start] = ACTIONS(304), }, [14] = { - [sym_redirected_statement] = STATE(3265), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2095), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), + [sym__expression] = STATE(1992), + [sym_binary_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_arithmetic_expansion] = STATE(1599), + [sym_brace_expression] = STATE(1599), + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(1599), + [sym_translated_string] = STATE(1599), + [sym_number] = STATE(1599), + [sym_simple_expansion] = STATE(1599), + [sym_expansion] = STATE(1599), + [sym_command_substitution] = STATE(1599), + [sym_process_substitution] = STATE(1599), + [aux_sym__literal_repeat1] = STATE(1602), + [aux_sym_concatenation_repeat1] = STATE(362), + [sym_word] = ACTIONS(306), + [anon_sym_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(312), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(196), + [anon_sym_PLUS2] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_PLUS_PLUS2] = ACTIONS(196), + [anon_sym_DASH_DASH2] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [sym_raw_string] = ACTIONS(306), + [sym_ansi_c_string] = ACTIONS(306), + [aux_sym_number_token1] = ACTIONS(322), + [aux_sym_number_token2] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(334), + [anon_sym_GT_LPAREN] = ACTIONS(334), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(336), + [sym_file_descriptor] = ACTIONS(182), + [sym__concat] = ACTIONS(338), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(340), }, [15] = { - [sym_redirected_statement] = STATE(3203), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2074), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), + [sym_redirected_statement] = STATE(3161), + [sym_for_statement] = STATE(3178), + [sym_c_style_for_statement] = STATE(3178), + [sym_while_statement] = STATE(3178), + [sym_if_statement] = STATE(3178), + [sym_case_statement] = STATE(3178), + [sym_function_definition] = STATE(3178), + [sym_compound_statement] = STATE(3178), + [sym_subshell] = STATE(3178), + [sym_pipeline] = STATE(3178), + [sym_list] = STATE(3178), + [sym_negated_command] = STATE(3178), + [sym_test_command] = STATE(3178), + [sym_declaration_command] = STATE(3178), + [sym_unset_command] = STATE(3178), + [sym_command] = STATE(3178), + [sym_command_name] = STATE(605), + [sym_variable_assignment] = STATE(1280), + [sym_variable_assignments] = STATE(3178), + [sym_subscript] = STATE(4068), + [sym_file_redirect] = STATE(2011), + [sym__expression] = STATE(2019), + [sym_binary_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_parenthesized_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(397), + [sym_brace_expression] = STATE(397), + [sym_concatenation] = STATE(422), + [sym_string] = STATE(397), + [sym_translated_string] = STATE(397), + [sym_number] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [sym_process_substitution] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(3274), + [aux_sym_command_repeat1] = STATE(927), + [aux_sym__literal_repeat1] = STATE(420), + [sym_word] = ACTIONS(236), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_RBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(246), + [anon_sym_AMP_GT_GT] = ACTIONS(244), + [anon_sym_LT_AMP] = ACTIONS(244), + [anon_sym_GT_AMP] = ACTIONS(244), + [anon_sym_GT_PIPE] = ACTIONS(244), + [anon_sym_DASH2] = ACTIONS(272), + [anon_sym_PLUS2] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PLUS_PLUS2] = ACTIONS(274), + [anon_sym_DASH_DASH2] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym__special_character] = ACTIONS(278), + [anon_sym_DQUOTE] = ACTIONS(280), + [sym_raw_string] = ACTIONS(282), + [sym_ansi_c_string] = ACTIONS(282), + [aux_sym_number_token1] = ACTIONS(284), + [aux_sym_number_token2] = ACTIONS(286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), + [anon_sym_BQUOTE] = ACTIONS(292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(294), + [anon_sym_LT_LPAREN] = ACTIONS(296), + [anon_sym_GT_LPAREN] = ACTIONS(296), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), + [sym_test_operator] = ACTIONS(298), + [sym_file_descriptor] = ACTIONS(300), + [sym_variable_name] = ACTIONS(302), + [sym__brace_start] = ACTIONS(304), }, [16] = { - [sym_redirected_statement] = STATE(3210), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2143), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), + [sym_redirected_statement] = STATE(3105), + [sym_for_statement] = STATE(3178), + [sym_c_style_for_statement] = STATE(3178), + [sym_while_statement] = STATE(3178), + [sym_if_statement] = STATE(3178), + [sym_case_statement] = STATE(3178), + [sym_function_definition] = STATE(3178), + [sym_compound_statement] = STATE(3178), + [sym_subshell] = STATE(3178), + [sym_pipeline] = STATE(3178), + [sym_list] = STATE(3178), + [sym_negated_command] = STATE(3178), + [sym_test_command] = STATE(3178), + [sym_declaration_command] = STATE(3178), + [sym_unset_command] = STATE(3178), + [sym_command] = STATE(3178), + [sym_command_name] = STATE(605), + [sym_variable_assignment] = STATE(1280), + [sym_variable_assignments] = STATE(3178), + [sym_subscript] = STATE(4068), + [sym_file_redirect] = STATE(2011), + [sym__expression] = STATE(1983), + [sym_binary_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_parenthesized_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(397), + [sym_brace_expression] = STATE(397), + [sym_concatenation] = STATE(422), + [sym_string] = STATE(397), + [sym_translated_string] = STATE(397), + [sym_number] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [sym_process_substitution] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(3274), + [aux_sym_command_repeat1] = STATE(927), + [aux_sym__literal_repeat1] = STATE(420), + [sym_word] = ACTIONS(236), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_GT_GT] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_RBRACK] = ACTIONS(344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(246), + [anon_sym_AMP_GT_GT] = ACTIONS(244), + [anon_sym_LT_AMP] = ACTIONS(244), + [anon_sym_GT_AMP] = ACTIONS(244), + [anon_sym_GT_PIPE] = ACTIONS(244), + [anon_sym_DASH2] = ACTIONS(272), + [anon_sym_PLUS2] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PLUS_PLUS2] = ACTIONS(274), + [anon_sym_DASH_DASH2] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(242), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym__special_character] = ACTIONS(278), + [anon_sym_DQUOTE] = ACTIONS(280), + [sym_raw_string] = ACTIONS(282), + [sym_ansi_c_string] = ACTIONS(282), + [aux_sym_number_token1] = ACTIONS(284), + [aux_sym_number_token2] = ACTIONS(286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), + [anon_sym_BQUOTE] = ACTIONS(292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(294), + [anon_sym_LT_LPAREN] = ACTIONS(296), + [anon_sym_GT_LPAREN] = ACTIONS(296), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), + [sym_test_operator] = ACTIONS(298), + [sym_file_descriptor] = ACTIONS(300), + [sym_variable_name] = ACTIONS(302), + [sym__brace_start] = ACTIONS(304), }, [17] = { - [aux_sym__statements2] = STATE(18), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4026), - [sym_else_clause] = STATE(4420), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4026), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__expression] = STATE(1951), + [sym_binary_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_parenthesized_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(1648), + [sym_brace_expression] = STATE(1648), + [sym_concatenation] = STATE(2018), + [sym_string] = STATE(1648), + [sym_translated_string] = STATE(1648), + [sym_number] = STATE(1648), + [sym_simple_expansion] = STATE(1648), + [sym_expansion] = STATE(1648), + [sym_command_substitution] = STATE(1648), + [sym_process_substitution] = STATE(1648), + [aux_sym__literal_repeat1] = STATE(1713), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym_word] = ACTIONS(346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(352), + [anon_sym_PIPE_PIPE] = ACTIONS(352), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PIPE_AMP] = ACTIONS(182), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_RBRACK] = ACTIONS(350), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(182), + [anon_sym_LT_AMP] = ACTIONS(182), + [anon_sym_GT_AMP] = ACTIONS(182), + [anon_sym_GT_PIPE] = ACTIONS(182), + [anon_sym_LT_LT_DASH] = ACTIONS(182), + [anon_sym_LT_LT_LT] = ACTIONS(182), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(272), + [anon_sym_PLUS2] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PLUS_PLUS2] = ACTIONS(274), + [anon_sym_DASH_DASH2] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(367), + [sym_ansi_c_string] = ACTIONS(367), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(383), + [sym_file_descriptor] = ACTIONS(182), + [sym__concat] = ACTIONS(359), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(385), + }, + [18] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3782), + [sym_else_clause] = STATE(4565), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3782), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(346), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(395), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [18] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4043), - [sym_else_clause] = STATE(4640), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4043), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [19] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3787), + [sym_else_clause] = STATE(4337), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3787), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(390), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(439), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [19] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4040), - [sym_else_clause] = STATE(4425), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4040), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [20] = { + [aux_sym__statements2] = STATE(19), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3790), + [sym_else_clause] = STATE(4463), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3790), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(392), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(441), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [20] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4024), - [sym_else_clause] = STATE(4437), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4024), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [21] = { + [aux_sym__statements2] = STATE(18), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3798), + [sym_else_clause] = STATE(4594), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3798), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(394), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(443), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [21] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4023), - [sym_else_clause] = STATE(4604), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4023), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [22] = { + [aux_sym__statements2] = STATE(23), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3794), + [sym_else_clause] = STATE(4378), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3794), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(396), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(445), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [22] = { - [aux_sym__statements2] = STATE(21), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4028), - [sym_else_clause] = STATE(4621), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4028), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [23] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_elif_clause] = STATE(3780), + [sym_else_clause] = STATE(4351), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_if_statement_repeat1] = STATE(3780), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(398), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), + [anon_sym_fi] = ACTIONS(447), + [anon_sym_elif] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [23] = { - [sym__statements] = STATE(4099), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_SEMI_AMP] = ACTIONS(424), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [24] = { - [sym__statements] = STATE(4096), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3889), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -23987,89 +23527,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(474), - [anon_sym_SEMI_AMP] = ACTIONS(476), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(469), + [anon_sym_SEMI_SEMI] = ACTIONS(471), + [anon_sym_SEMI_AMP] = ACTIONS(473), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(475), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [25] = { - [sym__statements] = STATE(4142), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3890), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24077,89 +23617,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(480), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_SEMI_AMP] = ACTIONS(484), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(521), + [anon_sym_SEMI_SEMI] = ACTIONS(523), + [anon_sym_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [26] = { - [sym__statements] = STATE(4101), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3916), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24167,89 +23707,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(488), - [anon_sym_SEMI_AMP] = ACTIONS(490), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(527), + [anon_sym_SEMI_SEMI] = ACTIONS(529), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(531), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [27] = { - [sym__statements] = STATE(4095), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3880), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24257,89 +23797,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(494), - [anon_sym_SEMI_AMP] = ACTIONS(496), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(533), + [anon_sym_SEMI_SEMI] = ACTIONS(535), + [anon_sym_SEMI_AMP] = ACTIONS(537), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [28] = { - [sym__statements] = STATE(4106), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3882), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24347,89 +23887,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(500), - [anon_sym_SEMI_SEMI] = ACTIONS(502), - [anon_sym_SEMI_AMP] = ACTIONS(504), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(541), + [anon_sym_SEMI_SEMI] = ACTIONS(543), + [anon_sym_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(545), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [29] = { - [sym__statements] = STATE(4100), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3884), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24437,89 +23977,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(500), - [anon_sym_SEMI_SEMI] = ACTIONS(508), - [anon_sym_SEMI_AMP] = ACTIONS(510), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(551), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [30] = { - [sym__statements] = STATE(4113), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3886), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24527,89 +24067,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(514), - [anon_sym_SEMI_SEMI] = ACTIONS(516), - [anon_sym_SEMI_AMP] = ACTIONS(518), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(533), + [anon_sym_SEMI_SEMI] = ACTIONS(553), + [anon_sym_SEMI_AMP] = ACTIONS(555), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(557), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [31] = { - [sym__statements] = STATE(4109), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3895), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24617,89 +24157,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(520), - [anon_sym_SEMI_AMP] = ACTIONS(522), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(469), + [anon_sym_SEMI_SEMI] = ACTIONS(559), + [anon_sym_SEMI_AMP] = ACTIONS(561), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(563), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [32] = { - [sym__statements] = STATE(4146), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3898), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24707,89 +24247,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(526), - [anon_sym_SEMI_AMP] = ACTIONS(528), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(565), + [anon_sym_SEMI_SEMI] = ACTIONS(567), + [anon_sym_SEMI_AMP] = ACTIONS(569), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(571), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [33] = { - [sym__statements] = STATE(4135), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3905), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24797,89 +24337,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(532), - [anon_sym_SEMI_SEMI] = ACTIONS(534), - [anon_sym_SEMI_AMP] = ACTIONS(536), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(565), + [anon_sym_SEMI_SEMI] = ACTIONS(573), + [anon_sym_SEMI_AMP] = ACTIONS(575), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(577), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [34] = { - [sym__statements] = STATE(4147), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), + [sym__statements] = STATE(3910), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), [sym_arithmetic_expansion] = STATE(665), [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), + [sym_concatenation] = STATE(878), [sym_string] = STATE(665), [sym_translated_string] = STATE(665), [sym_number] = STATE(665), @@ -24887,399 +24427,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(538), - [anon_sym_SEMI_SEMI] = ACTIONS(540), - [anon_sym_SEMI_AMP] = ACTIONS(542), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(579), + [anon_sym_SEMI_SEMI] = ACTIONS(581), + [anon_sym_SEMI_AMP] = ACTIONS(583), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(585), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [35] = { - [sym__statements] = STATE(4275), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(552), - [anon_sym_SEMI_AMP] = ACTIONS(542), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(3913), + [sym_redirected_statement] = STATE(2597), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_compound_statement] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(596), + [sym_variable_assignments] = STATE(2597), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(878), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_esac] = ACTIONS(579), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_SEMI_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(591), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), }, [36] = { - [sym__statements] = STATE(4181), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(592), - [anon_sym_SEMI_AMP] = ACTIONS(424), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(3991), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(601), + [anon_sym_SEMI_AMP] = ACTIONS(569), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(571), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [37] = { - [sym__statements] = STATE(4177), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(594), - [anon_sym_SEMI_AMP] = ACTIONS(484), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(3959), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(641), + [anon_sym_SEMI_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(591), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [38] = { - [sym__expression] = STATE(2096), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(1635), - [sym_brace_expression] = STATE(1635), - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(1635), - [sym_translated_string] = STATE(1635), - [sym_number] = STATE(1635), - [sym_simple_expansion] = STATE(1635), - [sym_expansion] = STATE(1635), - [sym_command_substitution] = STATE(1635), - [sym_process_substitution] = STATE(1635), - [aux_sym__literal_repeat1] = STATE(1923), - [aux_sym_concatenation_repeat1] = STATE(408), - [sym_word] = ACTIONS(596), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_PIPE_AMP] = ACTIONS(178), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(178), - [anon_sym_LT_AMP] = ACTIONS(178), - [anon_sym_GT_AMP] = ACTIONS(178), - [anon_sym_GT_PIPE] = ACTIONS(178), - [anon_sym_LT_LT_DASH] = ACTIONS(178), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(609), + [sym__statements] = STATE(3984), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(643), + [anon_sym_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(611), [sym__special_character] = ACTIONS(613), [anon_sym_DQUOTE] = ACTIONS(615), @@ -25295,913 +24837,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), [sym_test_operator] = ACTIONS(633), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(635), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [39] = { - [sym__statements] = STATE(4290), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(637), - [anon_sym_SEMI_AMP] = ACTIONS(476), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(3989), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(531), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [40] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(639), - [anon_sym_for] = ACTIONS(642), - [anon_sym_select] = ACTIONS(645), - [anon_sym_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_while] = ACTIONS(660), - [anon_sym_until] = ACTIONS(660), - [anon_sym_done] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_fi] = ACTIONS(663), - [anon_sym_elif] = ACTIONS(663), - [anon_sym_else] = ACTIONS(663), - [anon_sym_case] = ACTIONS(668), - [anon_sym_function] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(683), - [anon_sym_declare] = ACTIONS(686), - [anon_sym_typeset] = ACTIONS(686), - [anon_sym_export] = ACTIONS(686), - [anon_sym_readonly] = ACTIONS(686), - [anon_sym_local] = ACTIONS(686), - [anon_sym_unset] = ACTIONS(689), - [anon_sym_unsetenv] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(651), - [anon_sym_LT_AMP] = ACTIONS(651), - [anon_sym_GT_AMP] = ACTIONS(651), - [anon_sym_GT_PIPE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(692), - [sym__special_character] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_raw_string] = ACTIONS(701), - [sym_ansi_c_string] = ACTIONS(701), - [aux_sym_number_token1] = ACTIONS(704), - [aux_sym_number_token2] = ACTIONS(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym__statements] = STATE(3936), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_SEMI_AMP] = ACTIONS(537), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(728), - [sym_variable_name] = ACTIONS(731), - [sym__brace_start] = ACTIONS(734), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [41] = { - [sym__statements] = STATE(4229), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_SEMI_AMP] = ACTIONS(490), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(4002), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(649), + [anon_sym_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(545), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [42] = { - [sym__statements] = STATE(4261), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(518), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(4023), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(651), + [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(551), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [43] = { - [sym__statements] = STATE(4211), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(496), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [sym__statements] = STATE(4018), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_SEMI_AMP] = ACTIONS(555), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(557), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, [44] = { - [sym__statements] = STATE(4240), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(536), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [45] = { - [sym__statements] = STATE(4269), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(504), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [46] = { - [sym__statements] = STATE(4220), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(528), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [47] = { - [sym__statements] = STATE(4265), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(522), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [48] = { - [sym__statements] = STATE(4221), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(510), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [49] = { - [sym__terminated_statement] = STATE(59), + [aux_sym__statements2] = STATE(44), [sym_redirected_statement] = STATE(2912), [sym_for_statement] = STATE(2912), [sym_c_style_for_statement] = STATE(2912), [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(3008), [sym_if_statement] = STATE(2912), [sym_case_statement] = STATE(2912), [sym_function_definition] = STATE(2912), [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), + [sym_subshell] = STATE(2912), [sym_pipeline] = STATE(2912), [sym_list] = STATE(2912), [sym_negated_command] = STATE(2912), @@ -26209,263 +25304,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2912), [sym_unset_command] = STATE(2912), [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(755), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(655), + [anon_sym_for] = ACTIONS(658), + [anon_sym_select] = ACTIONS(661), + [anon_sym_LPAREN_LPAREN] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_while] = ACTIONS(676), + [anon_sym_until] = ACTIONS(676), + [anon_sym_done] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_fi] = ACTIONS(679), + [anon_sym_elif] = ACTIONS(679), + [anon_sym_else] = ACTIONS(679), + [anon_sym_case] = ACTIONS(684), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(702), + [anon_sym_typeset] = ACTIONS(702), + [anon_sym_export] = ACTIONS(702), + [anon_sym_readonly] = ACTIONS(702), + [anon_sym_local] = ACTIONS(702), + [anon_sym_unset] = ACTIONS(705), + [anon_sym_unsetenv] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(670), + [anon_sym_AMP_GT_GT] = ACTIONS(667), + [anon_sym_LT_AMP] = ACTIONS(667), + [anon_sym_GT_AMP] = ACTIONS(667), + [anon_sym_GT_PIPE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(664), + [anon_sym_DOLLAR] = ACTIONS(708), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_raw_string] = ACTIONS(717), + [sym_ansi_c_string] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(720), + [aux_sym_number_token2] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(741), + [sym_file_descriptor] = ACTIONS(744), + [sym_variable_name] = ACTIONS(747), + [sym__brace_start] = ACTIONS(750), }, - [50] = { - [aux_sym__statements2] = STATE(51), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(757), - [anon_sym_elif] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [45] = { + [sym__statements] = STATE(4003), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_SEMI_AMP] = ACTIONS(473), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(475), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), }, - [51] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [46] = { + [sym__statements] = STATE(3947), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(755), + [anon_sym_SEMI_AMP] = ACTIONS(583), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(585), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [47] = { + [sym__statements] = STATE(3953), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(757), + [anon_sym_SEMI_AMP] = ACTIONS(561), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(563), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [48] = { + [sym__statements] = STATE(3933), + [sym_redirected_statement] = STATE(2631), + [sym_for_statement] = STATE(2631), + [sym_c_style_for_statement] = STATE(2631), + [sym_while_statement] = STATE(2631), + [sym_if_statement] = STATE(2631), + [sym_case_statement] = STATE(2631), + [sym_function_definition] = STATE(2631), + [sym_compound_statement] = STATE(2631), + [sym_subshell] = STATE(2631), + [sym_pipeline] = STATE(2631), + [sym_list] = STATE(2631), + [sym_negated_command] = STATE(2631), + [sym_test_command] = STATE(2631), + [sym_declaration_command] = STATE(2631), + [sym_unset_command] = STATE(2631), + [sym_command] = STATE(2631), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(625), + [sym_variable_assignments] = STATE(2631), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(759), + [anon_sym_SEMI_AMP] = ACTIONS(575), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(577), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [49] = { + [sym__terminated_statement] = STATE(58), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_do_group] = STATE(3362), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(58), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(763), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(759), - [anon_sym_elif] = ACTIONS(759), - [anon_sym_else] = ACTIONS(759), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [52] = { - [sym__terminated_statement] = STATE(59), + [50] = { + [aux_sym__statements2] = STATE(44), [sym_redirected_statement] = STATE(2912), [sym_for_statement] = STATE(2912), [sym_c_style_for_statement] = STATE(2912), [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(3605), [sym_if_statement] = STATE(2912), [sym_case_statement] = STATE(2912), [sym_function_definition] = STATE(2912), [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), + [sym_subshell] = STATE(2912), [sym_pipeline] = STATE(2912), [sym_list] = STATE(2912), [sym_negated_command] = STATE(2912), @@ -26473,87 +25837,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2912), [sym_unset_command] = STATE(2912), [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(761), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(765), + [anon_sym_elif] = ACTIONS(765), + [anon_sym_else] = ACTIONS(765), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [53] = { - [sym__terminated_statement] = STATE(59), + [51] = { + [aux_sym__statements2] = STATE(50), [sym_redirected_statement] = STATE(2912), [sym_for_statement] = STATE(2912), [sym_c_style_for_statement] = STATE(2912), [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(2993), [sym_if_statement] = STATE(2912), [sym_case_statement] = STATE(2912), [sym_function_definition] = STATE(2912), [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), + [sym_subshell] = STATE(2912), [sym_pipeline] = STATE(2912), [sym_list] = STATE(2912), [sym_negated_command] = STATE(2912), @@ -26561,128 +25925,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2912), [sym_unset_command] = STATE(2912), [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(763), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(767), + [anon_sym_elif] = ACTIONS(767), + [anon_sym_else] = ACTIONS(767), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [52] = { + [sym__terminated_statement] = STATE(58), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_do_group] = STATE(3064), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(58), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [53] = { + [sym__terminated_statement] = STATE(58), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_do_group] = STATE(3036), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(58), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(771), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [54] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(777), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26697,79 +26238,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [55] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(787), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26784,79 +26325,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [56] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4658), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(791), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26871,79 +26412,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [57] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26958,79 +26499,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [58] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__terminated_statement] = STATE(58), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(58), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(795), + [anon_sym_for] = ACTIONS(798), + [anon_sym_select] = ACTIONS(801), + [anon_sym_LPAREN_LPAREN] = ACTIONS(804), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_while] = ACTIONS(816), + [anon_sym_until] = ACTIONS(816), + [anon_sym_do] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_case] = ACTIONS(824), + [anon_sym_function] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(839), + [anon_sym_declare] = ACTIONS(842), + [anon_sym_typeset] = ACTIONS(842), + [anon_sym_export] = ACTIONS(842), + [anon_sym_readonly] = ACTIONS(842), + [anon_sym_local] = ACTIONS(842), + [anon_sym_unset] = ACTIONS(845), + [anon_sym_unsetenv] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_GT_PIPE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(804), + [anon_sym_DOLLAR] = ACTIONS(848), + [sym__special_character] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(857), + [sym_ansi_c_string] = ACTIONS(857), + [aux_sym_number_token1] = ACTIONS(860), + [aux_sym_number_token2] = ACTIONS(863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), + [anon_sym_BQUOTE] = ACTIONS(872), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(875), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(881), + [sym_file_descriptor] = ACTIONS(884), + [sym_variable_name] = ACTIONS(887), + [sym__brace_start] = ACTIONS(890), + }, + [59] = { + [sym__statements] = STATE(4343), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(895), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27045,166 +26673,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [59] = { - [sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(791), - [anon_sym_for] = ACTIONS(794), - [anon_sym_select] = ACTIONS(797), - [anon_sym_LPAREN_LPAREN] = ACTIONS(800), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_while] = ACTIONS(812), - [anon_sym_until] = ACTIONS(812), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(817), - [anon_sym_case] = ACTIONS(820), - [anon_sym_function] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_typeset] = ACTIONS(838), - [anon_sym_export] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_local] = ACTIONS(838), - [anon_sym_unset] = ACTIONS(841), - [anon_sym_unsetenv] = ACTIONS(841), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_GT_PIPE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(844), - [sym__special_character] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym_raw_string] = ACTIONS(853), - [sym_ansi_c_string] = ACTIONS(853), - [aux_sym_number_token1] = ACTIONS(856), - [aux_sym_number_token2] = ACTIONS(859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(865), - [anon_sym_BQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(871), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(877), - [sym_file_descriptor] = ACTIONS(880), - [sym_variable_name] = ACTIONS(883), - [sym__brace_start] = ACTIONS(886), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [60] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4343), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27219,79 +26760,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [61] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(899), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27306,79 +26847,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [62] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(901), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27393,164 +26934,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [63] = { - [sym__statements] = STATE(4898), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4459), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [64] = { - [sym__statements] = STATE(4466), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4317), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [65] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(913), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [66] = { + [sym__statements] = STATE(4631), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(775), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27565,927 +27278,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [65] = { - [sym__statements] = STATE(4652), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [67] = { + [aux_sym__statements2] = STATE(65), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(915), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [66] = { - [sym__statements] = STATE(4421), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [68] = { + [aux_sym__statements2] = STATE(210), + [sym_redirected_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_compound_statement] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(726), + [sym_variable_assignments] = STATE(2855), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [67] = { - [sym__statements] = STATE(4423), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [69] = { + [aux_sym__statements2] = STATE(68), + [sym_redirected_statement] = STATE(2837), + [sym_for_statement] = STATE(2837), + [sym_c_style_for_statement] = STATE(2837), + [sym_while_statement] = STATE(2837), + [sym_if_statement] = STATE(2837), + [sym_case_statement] = STATE(2837), + [sym_function_definition] = STATE(2837), + [sym_compound_statement] = STATE(2837), + [sym_subshell] = STATE(2837), + [sym_pipeline] = STATE(2837), + [sym_list] = STATE(2837), + [sym_negated_command] = STATE(2837), + [sym_test_command] = STATE(2837), + [sym_declaration_command] = STATE(2837), + [sym_unset_command] = STATE(2837), + [sym_command] = STATE(2837), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(711), + [sym_variable_assignments] = STATE(2837), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [68] = { - [sym__statements] = STATE(4428), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1568), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [70] = { + [aux_sym__statements2] = STATE(80), + [sym_redirected_statement] = STATE(2904), + [sym_for_statement] = STATE(2904), + [sym_c_style_for_statement] = STATE(2904), + [sym_while_statement] = STATE(2904), + [sym_if_statement] = STATE(2904), + [sym_case_statement] = STATE(2904), + [sym_function_definition] = STATE(2904), + [sym_compound_statement] = STATE(2904), + [sym_subshell] = STATE(2904), + [sym_pipeline] = STATE(2904), + [sym_list] = STATE(2904), + [sym_negated_command] = STATE(2904), + [sym_test_command] = STATE(2904), + [sym_declaration_command] = STATE(2904), + [sym_unset_command] = STATE(2904), + [sym_command] = STATE(2904), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(697), + [sym_variable_assignments] = STATE(2904), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [69] = { - [sym__statements] = STATE(4433), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [71] = { + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(923), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [70] = { - [sym__statements] = STATE(4651), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [72] = { + [sym__terminated_statement] = STATE(52), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(52), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [71] = { - [sym__statements] = STATE(4436), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [73] = { + [aux_sym__statements2] = STATE(71), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(925), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [72] = { - [sym__statements] = STATE(4439), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1562), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [74] = { + [sym__statements] = STATE(4291), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [73] = { - [sym__statements] = STATE(4446), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [75] = { + [sym__statements] = STATE(4349), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [74] = { - [sym__statements] = STATE(4447), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [76] = { + [aux_sym__statements2] = STATE(210), + [sym_redirected_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_compound_statement] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(726), + [sym_variable_assignments] = STATE(2855), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [75] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1552), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [77] = { + [sym__statements] = STATE(4606), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1558), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -28496,7 +28209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28511,325 +28224,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [76] = { - [sym__statements] = STATE(4456), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [78] = { + [sym__statements] = STATE(4658), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(775), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [77] = { - [sym__statements] = STATE(4457), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [79] = { + [sym__terminated_statement] = STATE(49), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(49), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [78] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [80] = { + [aux_sym__statements2] = STATE(210), + [sym_redirected_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_compound_statement] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(726), + [sym_variable_assignments] = STATE(2855), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [79] = { - [sym__statements] = STATE(4461), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [81] = { + [sym__statements] = STATE(4653), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1469), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -28840,7 +28553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28855,67 +28568,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [80] = { - [sym__statements] = STATE(4649), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [82] = { + [sym__statements] = STATE(4648), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [83] = { + [sym__statements] = STATE(4645), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [84] = { + [sym__statements] = STATE(4637), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -28926,7 +28811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28941,239 +28826,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [81] = { - [sym__statements] = STATE(4471), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [85] = { + [sym__statements] = STATE(4605), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [82] = { - [sym__statements] = STATE(4472), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [86] = { + [sym__statements] = STATE(4598), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [83] = { - [sym__statements] = STATE(4473), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1514), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [87] = { + [sym__statements] = STATE(4595), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -29184,7 +29069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29199,78 +29084,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [84] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [88] = { + [aux_sym__statements2] = STATE(76), + [sym_redirected_statement] = STATE(2881), + [sym_for_statement] = STATE(2881), + [sym_c_style_for_statement] = STATE(2881), + [sym_while_statement] = STATE(2881), + [sym_if_statement] = STATE(2881), + [sym_case_statement] = STATE(2881), + [sym_function_definition] = STATE(2881), + [sym_compound_statement] = STATE(2881), + [sym_subshell] = STATE(2881), + [sym_pipeline] = STATE(2881), + [sym_list] = STATE(2881), + [sym_negated_command] = STATE(2881), + [sym_test_command] = STATE(2881), + [sym_declaration_command] = STATE(2881), + [sym_unset_command] = STATE(2881), + [sym_command] = STATE(2881), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(707), + [sym_variable_assignments] = STATE(2881), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [89] = { + [sym__statements] = STATE(4658), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(789), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29285,67 +29256,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [85] = { - [sym__statements] = STATE(4485), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [90] = { + [sym__terminated_statement] = STATE(53), + [sym_redirected_statement] = STATE(2924), + [sym_for_statement] = STATE(2924), + [sym_c_style_for_statement] = STATE(2924), + [sym_while_statement] = STATE(2924), + [sym_if_statement] = STATE(2924), + [sym_case_statement] = STATE(2924), + [sym_function_definition] = STATE(2924), + [sym_compound_statement] = STATE(2924), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2924), + [sym_list] = STATE(2924), + [sym_negated_command] = STATE(2924), + [sym_test_command] = STATE(2924), + [sym_declaration_command] = STATE(2924), + [sym_unset_command] = STATE(2924), + [sym_command] = STATE(2924), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(732), + [sym_variable_assignments] = STATE(2924), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_while_statement_repeat1] = STATE(53), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [91] = { + [sym__statements] = STATE(4461), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1502), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -29356,7 +29413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29371,422 +29428,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [86] = { - [sym__statements] = STATE(4487), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [92] = { + [sym__statements] = STATE(4458), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [87] = { - [sym__terminated_statement] = STATE(52), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(52), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [88] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [93] = { + [sym__statements] = STATE(4455), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(907), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [89] = { - [sym__statements] = STATE(4490), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [94] = { + [sym__statements] = STATE(4451), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [90] = { - [sym__statements] = STATE(4491), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1490), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [95] = { + [sym__statements] = STATE(4343), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(893), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29801,67 +29772,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [91] = { - [sym__statements] = STATE(4505), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [96] = { + [sym__statements] = STATE(4262), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1464), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -29872,7 +29843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29887,422 +29858,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [92] = { - [sym__statements] = STATE(4508), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [97] = { + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [93] = { - [aux_sym__statements2] = STATE(88), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [98] = { + [sym__statements] = STATE(4255), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(909), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [94] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [99] = { + [sym__statements] = STATE(4253), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [95] = { - [sym__statements] = STATE(4509), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [96] = { - [sym__statements] = STATE(4510), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1543), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30317,67 +30116,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [97] = { - [sym__statements] = STATE(4518), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [100] = { + [sym__statements] = STATE(4187), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1549), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -30388,7 +30187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30403,325 +30202,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [98] = { - [aux_sym__statements2] = STATE(94), - [sym_redirected_statement] = STATE(2956), - [sym_for_statement] = STATE(2956), - [sym_c_style_for_statement] = STATE(2956), - [sym_while_statement] = STATE(2956), - [sym_if_statement] = STATE(2956), - [sym_case_statement] = STATE(2956), - [sym_function_definition] = STATE(2956), - [sym_compound_statement] = STATE(2956), - [sym_subshell] = STATE(2956), - [sym_pipeline] = STATE(2956), - [sym_list] = STATE(2956), - [sym_negated_command] = STATE(2956), - [sym_test_command] = STATE(2956), - [sym_declaration_command] = STATE(2956), - [sym_unset_command] = STATE(2956), - [sym_command] = STATE(2956), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(755), - [sym_variable_assignments] = STATE(2956), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [99] = { - [sym__statements] = STATE(4520), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [101] = { + [sym__statements] = STATE(4186), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [100] = { - [sym__statements] = STATE(4522), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [102] = { + [sym__statements] = STATE(4185), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [101] = { - [sym__statements] = STATE(4527), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1474), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [103] = { + [sym__statements] = STATE(4184), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -30732,7 +30445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30747,67 +30460,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [102] = { - [sym__statements] = STATE(4538), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [104] = { + [sym__statements] = STATE(4182), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1527), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -30818,93 +30531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [103] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30919,239 +30546,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [104] = { - [sym__statements] = STATE(4539), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [105] = { + [sym__statements] = STATE(4170), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [105] = { - [sym__statements] = STATE(4540), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [106] = { + [sym__statements] = STATE(4179), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [106] = { - [sym__statements] = STATE(4545), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1477), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [107] = { + [sym__statements] = STATE(4176), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -31162,7 +30789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31177,153 +30804,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [107] = { - [sym__terminated_statement] = STATE(49), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(49), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [108] = { - [sym__statements] = STATE(4555), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4197), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1446), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -31334,7 +30875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31349,239 +30890,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [109] = { - [sym__statements] = STATE(4557), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4198), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [110] = { - [sym__statements] = STATE(4558), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4199), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [111] = { - [sym__statements] = STATE(4561), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1481), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4201), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -31592,7 +31133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31607,67 +31148,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [112] = { - [sym__statements] = STATE(4570), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4205), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1455), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -31678,7 +31219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31693,325 +31234,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [113] = { - [sym__statements] = STATE(4501), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1553), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4208), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [114] = { - [sym__statements] = STATE(4573), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4209), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [115] = { - [sym__statements] = STATE(4574), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [116] = { - [sym__statements] = STATE(4582), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1494), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4211), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -32022,7 +31477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32037,67 +31492,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [117] = { - [sym__statements] = STATE(4603), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [116] = { + [sym__statements] = STATE(4222), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1475), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -32108,7 +31563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32123,508 +31578,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), + }, + [117] = { + [sym__statements] = STATE(4231), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [118] = { - [sym__statements] = STATE(4492), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4232), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [119] = { - [sym__statements] = STATE(4605), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4233), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [120] = { - [sym__statements] = STATE(4606), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4236), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1537), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [121] = { - [sym__statements] = STATE(4486), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4237), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [122] = { - [sym__statements] = STATE(4607), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1508), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4238), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [123] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4240), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32639,67 +32180,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [124] = { - [sym__statements] = STATE(4616), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4247), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1556), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -32710,7 +32251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32725,239 +32266,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [125] = { - [sym__statements] = STATE(4529), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4249), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [126] = { - [sym__statements] = STATE(4623), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4250), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [127] = { - [sym__statements] = STATE(4627), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1509), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4251), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -32968,7 +32509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32983,67 +32524,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [128] = { - [sym__statements] = STATE(4642), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4256), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1559), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -33054,7 +32595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33069,239 +32610,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [129] = { - [sym__statements] = STATE(4643), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4259), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [130] = { - [sym__statements] = STATE(4645), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4263), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [131] = { - [sym__statements] = STATE(4653), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1536), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4264), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -33312,7 +32853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33327,67 +32868,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [132] = { - [sym__statements] = STATE(4672), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4268), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1562), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -33398,7 +32939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33413,497 +32954,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [133] = { - [sym__statements] = STATE(4484), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4361), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [134] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4272), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(915), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [135] = { - [sym__statements] = STATE(4676), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4274), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [136] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4281), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1555), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(917), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [137] = { - [sym__statements] = STATE(4677), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4283), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [138] = { - [sym__statements] = STATE(4678), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1571), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4285), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [139] = { + [sym__statements] = STATE(4286), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -33914,7 +33541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33929,67 +33556,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [139] = { - [sym__statements] = STATE(4688), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [140] = { + [sym__statements] = STATE(4315), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1550), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -34000,7 +33627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34015,497 +33642,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [140] = { - [sym__statements] = STATE(4689), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [141] = { - [aux_sym__statements2] = STATE(134), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4316), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(919), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [142] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4324), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [143] = { - [aux_sym__statements2] = STATE(142), - [sym_redirected_statement] = STATE(2936), - [sym_for_statement] = STATE(2936), - [sym_c_style_for_statement] = STATE(2936), - [sym_while_statement] = STATE(2936), - [sym_if_statement] = STATE(2936), - [sym_case_statement] = STATE(2936), - [sym_function_definition] = STATE(2936), - [sym_compound_statement] = STATE(2936), - [sym_subshell] = STATE(2936), - [sym_pipeline] = STATE(2936), - [sym_list] = STATE(2936), - [sym_negated_command] = STATE(2936), - [sym_test_command] = STATE(2936), - [sym_declaration_command] = STATE(2936), - [sym_unset_command] = STATE(2936), - [sym_command] = STATE(2936), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(732), - [sym_variable_assignments] = STATE(2936), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4348), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1548), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [144] = { - [sym__statements] = STATE(4690), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4350), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [145] = { - [sym__statements] = STATE(4694), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1556), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4357), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -34516,7 +34057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34531,67 +34072,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [146] = { - [sym__statements] = STATE(4713), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4374), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1534), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -34602,7 +34143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34617,78 +34158,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [147] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4377), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [148] = { + [sym__statements] = STATE(4311), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [149] = { + [sym__statements] = STATE(4405), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34703,67 +34416,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [148] = { - [sym__statements] = STATE(4497), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1563), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [150] = { + [sym__statements] = STATE(4443), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1531), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -34774,7 +34487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34789,325 +34502,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [149] = { - [sym__statements] = STATE(4715), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [150] = { - [sym__statements] = STATE(4500), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [151] = { + [sym__statements] = STATE(4446), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [151] = { - [sym__statements] = STATE(4717), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [152] = { + [sym__statements] = STATE(4447), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [152] = { - [sym__statements] = STATE(4718), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [153] = { + [sym__statements] = STATE(4403), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35118,7 +34745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35133,67 +34760,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [153] = { - [sym__statements] = STATE(4733), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [154] = { + [sym__statements] = STATE(4474), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1546), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35204,7 +34831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35219,325 +34846,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [154] = { - [sym__statements] = STATE(4511), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [155] = { - [sym__statements] = STATE(4735), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4477), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [156] = { - [sym__statements] = STATE(4736), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4479), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [157] = { - [sym__statements] = STATE(4738), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1541), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4480), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35548,7 +35089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35563,67 +35104,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [158] = { - [sym__statements] = STATE(4749), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4493), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1501), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35634,7 +35175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35649,239 +35190,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [159] = { - [sym__statements] = STATE(4750), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4494), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [160] = { - [sym__statements] = STATE(4751), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4502), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [161] = { - [sym__statements] = STATE(4523), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4505), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35892,7 +35433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35907,67 +35448,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [162] = { - [sym__statements] = STATE(4754), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4527), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1499), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -35978,7 +35519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35993,67 +35534,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [163] = { - [sym__statements] = STATE(4764), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4542), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [164] = { + [sym__statements] = STATE(4543), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [165] = { + [sym__statements] = STATE(4551), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -36064,7 +35777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36079,239 +35792,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [164] = { - [sym__statements] = STATE(4765), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [166] = { + [sym__statements] = STATE(4570), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1522), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [165] = { - [sym__statements] = STATE(4766), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [166] = { - [sym__statements] = STATE(4772), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1493), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -36322,7 +35863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36337,325 +35878,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [167] = { - [sym__statements] = STATE(4782), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4571), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [168] = { - [sym__statements] = STATE(4783), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(933), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [169] = { - [sym__statements] = STATE(4784), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4572), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [170] = { - [sym__statements] = STATE(4786), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1478), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4582), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -36666,7 +36207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36681,67 +36222,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [171] = { - [sym__statements] = STATE(4793), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4641), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1476), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -36752,7 +36293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36767,239 +36308,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [172] = { - [sym__statements] = STATE(4794), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4602), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [173] = { - [sym__statements] = STATE(4795), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4603), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [174] = { - [sym__statements] = STATE(4796), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1476), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4604), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37010,7 +36551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37025,67 +36566,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [175] = { - [sym__statements] = STATE(4803), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4626), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1461), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37096,7 +36637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37111,239 +36652,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [176] = { - [sym__statements] = STATE(4804), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4627), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [177] = { - [sym__statements] = STATE(4805), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4630), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [178] = { - [sym__statements] = STATE(4806), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1464), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4632), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37354,7 +36895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37369,67 +36910,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [179] = { - [sym__statements] = STATE(4816), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4777), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1448), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37440,7 +36981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37455,239 +36996,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [180] = { - [sym__statements] = STATE(4817), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4731), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [181] = { - [sym__statements] = STATE(4818), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4726), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [182] = { - [sym__statements] = STATE(4819), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1453), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4721), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37698,7 +37239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37713,67 +37254,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [183] = { - [sym__statements] = STATE(4826), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4674), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1466), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -37784,7 +37325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37799,411 +37340,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [184] = { - [sym__statements] = STATE(4737), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1559), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4673), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [185] = { - [sym__statements] = STATE(4827), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4672), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [186] = { - [aux_sym__statements2] = STATE(136), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4671), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(925), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [187] = { - [sym__statements] = STATE(4828), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [188] = { - [sym__statements] = STATE(4831), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1450), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4668), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1482), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -38214,7 +37669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38229,239 +37684,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [189] = { - [sym__statements] = STATE(4744), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [188] = { + [sym__statements] = STATE(4667), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [190] = { - [aux_sym__statements2] = STATE(198), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [189] = { + [sym__statements] = STATE(4666), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(927), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [191] = { - [sym__statements] = STATE(4837), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [190] = { + [sym__statements] = STATE(4665), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -38472,7 +37927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38487,411 +37942,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [192] = { - [sym__statements] = STATE(4409), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [193] = { - [sym__statements] = STATE(4408), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [191] = { + [sym__statements] = STATE(4660), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1508), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [194] = { - [sym__statements] = STATE(4838), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [192] = { + [sym__statements] = STATE(4659), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [195] = { - [sym__statements] = STATE(4839), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [193] = { + [sym__statements] = STATE(4657), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [196] = { - [sym__statements] = STATE(4840), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1452), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [194] = { + [sym__statements] = STATE(4656), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -38902,7 +38271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38917,67 +38286,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [197] = { - [sym__statements] = STATE(4857), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [195] = { + [sym__statements] = STATE(4583), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1529), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -38988,7 +38357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39003,411 +38372,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [198] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [196] = { + [sym__statements] = STATE(4649), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(929), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [199] = { - [sym__statements] = STATE(4858), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [197] = { + [sym__statements] = STATE(4647), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [200] = { - [sym__statements] = STATE(4859), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [198] = { + [sym__statements] = STATE(4644), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [201] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(639), - [anon_sym_for] = ACTIONS(642), - [anon_sym_select] = ACTIONS(645), - [anon_sym_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_while] = ACTIONS(660), - [anon_sym_until] = ACTIONS(660), - [anon_sym_if] = ACTIONS(665), - [anon_sym_case] = ACTIONS(668), - [anon_sym_function] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(683), - [anon_sym_declare] = ACTIONS(686), - [anon_sym_typeset] = ACTIONS(686), - [anon_sym_export] = ACTIONS(686), - [anon_sym_readonly] = ACTIONS(686), - [anon_sym_local] = ACTIONS(686), - [anon_sym_unset] = ACTIONS(689), - [anon_sym_unsetenv] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(651), - [anon_sym_LT_AMP] = ACTIONS(651), - [anon_sym_GT_AMP] = ACTIONS(651), - [anon_sym_GT_PIPE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(692), - [sym__special_character] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_raw_string] = ACTIONS(701), - [sym_ansi_c_string] = ACTIONS(701), - [aux_sym_number_token1] = ACTIONS(704), - [aux_sym_number_token2] = ACTIONS(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), + [199] = { + [aux_sym__statements2] = STATE(255), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(935), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(728), - [sym_variable_name] = ACTIONS(731), - [sym__brace_start] = ACTIONS(734), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [202] = { - [sym__statements] = STATE(4860), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1456), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [200] = { + [sym__statements] = STATE(4638), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1536), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -39418,7 +38787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39433,153 +38802,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [203] = { - [sym__statements] = STATE(4758), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [201] = { + [sym__statements] = STATE(4636), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [204] = { - [sym__statements] = STATE(4767), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [202] = { + [sym__statements] = STATE(4635), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [203] = { + [sym__statements] = STATE(4634), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -39590,7 +39045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39605,67 +39060,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [205] = { - [sym__statements] = STATE(4869), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [204] = { + [sym__statements] = STATE(4624), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1557), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -39676,7 +39131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39691,239 +39146,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [206] = { - [sym__statements] = STATE(4870), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [205] = { + [sym__statements] = STATE(4622), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [207] = { - [sym__statements] = STATE(4871), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [206] = { + [sym__statements] = STATE(4621), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [208] = { - [sym__statements] = STATE(4872), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1462), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [207] = { + [sym__statements] = STATE(4620), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -39934,7 +39389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39949,67 +39404,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [209] = { - [sym__statements] = STATE(4882), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [208] = { + [sym__statements] = STATE(4615), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1462), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40020,7 +39475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40035,239 +39490,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [210] = { - [sym__statements] = STATE(4883), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [209] = { + [sym__statements] = STATE(4614), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [210] = { + [aux_sym__statements2] = STATE(210), + [sym_redirected_statement] = STATE(2855), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_compound_statement] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(726), + [sym_variable_assignments] = STATE(2855), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(655), + [anon_sym_for] = ACTIONS(658), + [anon_sym_select] = ACTIONS(661), + [anon_sym_LPAREN_LPAREN] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_while] = ACTIONS(676), + [anon_sym_until] = ACTIONS(676), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(684), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(699), + [anon_sym_declare] = ACTIONS(702), + [anon_sym_typeset] = ACTIONS(702), + [anon_sym_export] = ACTIONS(702), + [anon_sym_readonly] = ACTIONS(702), + [anon_sym_local] = ACTIONS(702), + [anon_sym_unset] = ACTIONS(705), + [anon_sym_unsetenv] = ACTIONS(705), + [anon_sym_AMP_GT] = ACTIONS(670), + [anon_sym_AMP_GT_GT] = ACTIONS(667), + [anon_sym_LT_AMP] = ACTIONS(667), + [anon_sym_GT_AMP] = ACTIONS(667), + [anon_sym_GT_PIPE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(664), + [anon_sym_DOLLAR] = ACTIONS(708), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(714), + [sym_raw_string] = ACTIONS(717), + [sym_ansi_c_string] = ACTIONS(717), + [aux_sym_number_token1] = ACTIONS(720), + [aux_sym_number_token2] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(738), + [anon_sym_GT_LPAREN] = ACTIONS(738), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(741), + [sym_file_descriptor] = ACTIONS(744), + [sym_variable_name] = ACTIONS(747), + [sym__brace_start] = ACTIONS(750), }, [211] = { - [sym__statements] = STATE(4884), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4612), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [212] = { - [sym__statements] = STATE(4912), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1549), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4610), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40278,7 +39819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40293,153 +39834,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [213] = { - [sym__statements] = STATE(4924), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [214] = { - [sym__statements] = STATE(4886), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1466), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4599), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1478), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40450,7 +39905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40465,325 +39920,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [215] = { - [sym__statements] = STATE(4895), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [214] = { + [sym__statements] = STATE(4596), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [216] = { - [sym__statements] = STATE(4897), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [215] = { + [sym__statements] = STATE(4591), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [217] = { - [sym__statements] = STATE(4930), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [216] = { + [sym__statements] = STATE(4590), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [218] = { - [sym__statements] = STATE(4931), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [217] = { + [sym__statements] = STATE(4523), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1477), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40794,7 +40249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40809,67 +40264,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), + }, + [218] = { + [sym__statements] = STATE(4581), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [219] = { - [sym__statements] = STATE(4899), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1469), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4579), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [220] = { + [sym__statements] = STATE(4577), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40880,7 +40507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40895,67 +40522,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [220] = { - [sym__statements] = STATE(4911), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [221] = { + [sym__statements] = STATE(4567), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1463), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -40966,7 +40593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40981,239 +40608,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [221] = { - [sym__statements] = STATE(4849), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [222] = { + [sym__statements] = STATE(4566), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [222] = { - [sym__statements] = STATE(4915), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [223] = { + [sym__statements] = STATE(4564), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [223] = { - [sym__statements] = STATE(4917), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1479), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [224] = { + [sym__statements] = STATE(4562), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -41224,7 +40851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41239,67 +40866,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [224] = { - [sym__statements] = STATE(4929), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [225] = { + [sym__statements] = STATE(4552), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1453), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -41310,7 +40937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41325,239 +40952,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [225] = { - [sym__statements] = STATE(4932), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [226] = { + [sym__statements] = STATE(4550), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [226] = { - [sym__statements] = STATE(4980), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [227] = { + [sym__statements] = STATE(4547), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [227] = { - [sym__statements] = STATE(4982), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1483), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [228] = { + [sym__statements] = STATE(4546), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -41568,7 +41195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41583,67 +41210,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [228] = { - [sym__statements] = STATE(4925), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [229] = { + [sym__statements] = STATE(4521), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1460), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -41654,7 +41281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41669,325 +41296,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [229] = { - [sym__statements] = STATE(4922), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [230] = { - [sym__statements] = STATE(4921), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4520), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [231] = { - [aux_sym__statements2] = STATE(78), - [sym_redirected_statement] = STATE(2909), - [sym_for_statement] = STATE(2909), - [sym_c_style_for_statement] = STATE(2909), - [sym_while_statement] = STATE(2909), - [sym_if_statement] = STATE(2909), - [sym_case_statement] = STATE(2909), - [sym_function_definition] = STATE(2909), - [sym_compound_statement] = STATE(2909), - [sym_subshell] = STATE(2909), - [sym_pipeline] = STATE(2909), - [sym_list] = STATE(2909), - [sym_negated_command] = STATE(2909), - [sym_test_command] = STATE(2909), - [sym_declaration_command] = STATE(2909), - [sym_unset_command] = STATE(2909), - [sym_command] = STATE(2909), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(763), - [sym_variable_assignments] = STATE(2909), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4518), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [232] = { - [sym__statements] = STATE(4918), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1489), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4517), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -41998,7 +41539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42013,67 +41554,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [233] = { - [sym__statements] = STATE(4889), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4503), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1465), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -42084,7 +41625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42099,239 +41640,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [234] = { - [sym__statements] = STATE(4887), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4500), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [235] = { - [sym__statements] = STATE(4885), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4499), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [236] = { - [sym__statements] = STATE(4879), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1492), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4498), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -42342,7 +41883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42357,67 +41898,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [237] = { - [sym__statements] = STATE(4853), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4490), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1470), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -42428,7 +41969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42443,239 +41984,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [238] = { - [sym__statements] = STATE(4852), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4488), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [239] = { - [sym__statements] = STATE(4785), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4485), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [240] = { - [sym__statements] = STATE(4666), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1540), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4482), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -42686,7 +42227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42701,67 +42242,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [241] = { - [sym__statements] = STATE(4846), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1498), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4475), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1472), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -42772,7 +42313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42787,583 +42328,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [242] = { - [sym__statements] = STATE(4811), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4473), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [243] = { - [sym__statements] = STATE(4923), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4471), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [244] = { - [sym__statements] = STATE(4992), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4470), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [245] = { - [sym__terminated_statement] = STATE(53), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(53), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), + [sym__statements] = STATE(4462), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1473), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [246] = { - [sym__statements] = STATE(4810), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4457), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [247] = { - [sym__statements] = STATE(4808), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [248] = { - [sym__statements] = STATE(4800), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1501), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4456), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -43374,7 +42829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43389,67 +42844,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [249] = { - [sym__statements] = STATE(4776), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [248] = { + [sym__statements] = STATE(4444), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1483), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -43460,7 +42915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43475,239 +42930,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [250] = { - [sym__statements] = STATE(4773), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [249] = { + [sym__statements] = STATE(4441), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [251] = { - [sym__statements] = STATE(4769), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [250] = { + [sym__statements] = STATE(4437), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [252] = { - [sym__statements] = STATE(4759), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1503), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [251] = { + [sym__statements] = STATE(4435), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -43718,7 +43173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43733,67 +43188,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [253] = { - [sym__statements] = STATE(4729), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [252] = { + [sym__statements] = STATE(4429), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1484), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -43804,7 +43259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43819,325 +43274,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), + }, + [253] = { + [aux_sym__statements2] = STATE(168), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(939), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [254] = { - [sym__statements] = STATE(4725), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4425), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [255] = { - [sym__statements] = STATE(4719), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [aux_sym__statements2] = STATE(44), + [sym_redirected_statement] = STATE(2912), + [sym_for_statement] = STATE(2912), + [sym_c_style_for_statement] = STATE(2912), + [sym_while_statement] = STATE(2912), + [sym_if_statement] = STATE(2912), + [sym_case_statement] = STATE(2912), + [sym_function_definition] = STATE(2912), + [sym_compound_statement] = STATE(2912), + [sym_subshell] = STATE(2912), + [sym_pipeline] = STATE(2912), + [sym_list] = STATE(2912), + [sym_negated_command] = STATE(2912), + [sym_test_command] = STATE(2912), + [sym_declaration_command] = STATE(2912), + [sym_unset_command] = STATE(2912), + [sym_command] = STATE(2912), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(744), + [sym_variable_assignments] = STATE(2912), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(941), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [256] = { - [sym__statements] = STATE(4703), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1510), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4419), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [257] = { - [sym__statements] = STATE(5040), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4413), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44148,7 +43689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44163,67 +43704,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [258] = { - [sym__statements] = STATE(4664), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4384), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1492), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44234,7 +43775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44249,153 +43790,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [259] = { - [sym__statements] = STATE(4663), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [sym__statements] = STATE(4383), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, [260] = { - [sym__statements] = STATE(4876), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1538), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4381), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [261] = { + [sym__statements] = STATE(4380), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44406,7 +44033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44421,153 +44048,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [261] = { - [sym__statements] = STATE(4619), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [262] = { - [sym__statements] = STATE(4648), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1512), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4368), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1496), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44578,7 +44119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44593,67 +44134,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, [263] = { - [sym__statements] = STATE(4597), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4292), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [264] = { + [sym__statements] = STATE(4294), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1518), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44664,7 +44291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44679,239 +44306,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [264] = { - [sym__statements] = STATE(4594), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [265] = { + [sym__statements] = STATE(4296), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [265] = { - [sym__statements] = STATE(4589), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [266] = { + [sym__statements] = STATE(4366), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [266] = { - [sym__statements] = STATE(4586), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1516), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [267] = { + [sym__statements] = STATE(4298), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [268] = { + [sym__statements] = STATE(4299), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1515), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -44922,7 +44635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44937,153 +44650,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [267] = { - [sym__statements] = STATE(4865), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [269] = { + [sym__statements] = STATE(4365), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [268] = { - [sym__statements] = STATE(4702), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1455), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [270] = { + [sym__statements] = STATE(4363), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -45094,7 +44807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45109,67 +44822,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [269] = { - [sym__statements] = STATE(4544), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [271] = { + [sym__statements] = STATE(4359), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1497), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -45180,7 +44893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45195,411 +44908,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [270] = { - [sym__statements] = STATE(4700), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [271] = { - [sym__statements] = STATE(4535), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [272] = { + [sym__statements] = STATE(4301), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [272] = { - [sym__statements] = STATE(4697), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [273] = { + [sym__statements] = STATE(4303), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [273] = { - [sym__statements] = STATE(4530), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [274] = { + [sym__statements] = STATE(4356), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [274] = { - [sym__statements] = STATE(4658), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [275] = { + [sym__statements] = STATE(4304), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1514), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -45610,7 +45237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45625,153 +45252,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [275] = { - [sym__statements] = STATE(4416), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1567), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [276] = { + [sym__statements] = STATE(4355), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [276] = { - [sym__statements] = STATE(4528), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1523), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [277] = { + [sym__statements] = STATE(4309), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [278] = { + [sym__statements] = STATE(4267), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [279] = { + [sym__statements] = STATE(4354), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -45782,7 +45581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45797,67 +45596,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [277] = { - [sym__statements] = STATE(4655), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1535), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [280] = { + [sym__statements] = STATE(4313), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1512), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -45868,7 +45667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45883,239 +45682,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [278] = { - [sym__statements] = STATE(4465), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [281] = { + [sym__statements] = STATE(4319), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [279] = { - [sym__statements] = STATE(4462), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [282] = { + [sym__statements] = STATE(4321), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [280] = { - [sym__statements] = STATE(4459), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1526), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [283] = { + [sym__statements] = STATE(4322), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1511), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -46126,7 +45925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -46141,67 +45940,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [281] = { - [sym__statements] = STATE(4413), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [284] = { + [sym__statements] = STATE(4325), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [285] = { + [sym__statements] = STATE(4344), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1444), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -46212,7 +46097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -46227,239 +46112,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [282] = { - [sym__statements] = STATE(4634), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [286] = { + [sym__statements] = STATE(4336), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [283] = { - [sym__statements] = STATE(4448), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [287] = { + [sym__statements] = STATE(4335), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [284] = { - [sym__statements] = STATE(4468), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1529), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [288] = { + [sym__statements] = STATE(4331), + [sym_redirected_statement] = STATE(2704), + [sym_for_statement] = STATE(2704), + [sym_c_style_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_compound_statement] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_negated_command] = STATE(2704), + [sym_test_command] = STATE(2704), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(645), + [sym_variable_assignments] = STATE(2704), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1510), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -46470,7 +46355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -46485,669 +46370,832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [285] = { - [sym__statements] = STATE(4595), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [289] = { + [sym__statements] = STATE(4327), + [sym_redirected_statement] = STATE(2792), + [sym_for_statement] = STATE(2792), + [sym_c_style_for_statement] = STATE(2792), + [sym_while_statement] = STATE(2792), + [sym_if_statement] = STATE(2792), + [sym_case_statement] = STATE(2792), + [sym_function_definition] = STATE(2792), + [sym_compound_statement] = STATE(2792), + [sym_subshell] = STATE(2792), + [sym_pipeline] = STATE(2792), + [sym_list] = STATE(2792), + [sym_negated_command] = STATE(2792), + [sym_test_command] = STATE(2792), + [sym_declaration_command] = STATE(2792), + [sym_unset_command] = STATE(2792), + [sym_command] = STATE(2792), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(715), + [sym_variable_assignments] = STATE(2792), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [286] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [290] = { + [sym_redirected_statement] = STATE(2591), + [sym_for_statement] = STATE(2591), + [sym_c_style_for_statement] = STATE(2591), + [sym_while_statement] = STATE(2591), + [sym_if_statement] = STATE(2591), + [sym_case_statement] = STATE(2591), + [sym_function_definition] = STATE(2591), + [sym_compound_statement] = STATE(2591), + [sym_subshell] = STATE(2591), + [sym_pipeline] = STATE(2591), + [sym_list] = STATE(2591), + [sym_negated_command] = STATE(2591), + [sym_test_command] = STATE(2591), + [sym_declaration_command] = STATE(2591), + [sym_unset_command] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(602), + [sym_variable_assignments] = STATE(2591), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(878), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), + }, + [291] = { + [sym__terminated_statement] = STATE(4339), + [sym_redirected_statement] = STATE(2951), + [sym_for_statement] = STATE(2951), + [sym_c_style_for_statement] = STATE(2951), + [sym_while_statement] = STATE(2951), + [sym_if_statement] = STATE(2951), + [sym_case_statement] = STATE(2951), + [sym_function_definition] = STATE(2951), + [sym_compound_statement] = STATE(2951), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2951), + [sym_list] = STATE(2951), + [sym_negated_command] = STATE(2951), + [sym_test_command] = STATE(2951), + [sym_declaration_command] = STATE(2951), + [sym_unset_command] = STATE(2951), + [sym_command] = STATE(2951), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(709), + [sym_variable_assignments] = STATE(2951), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [287] = { - [sym__statements] = STATE(4901), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [292] = { + [sym_redirected_statement] = STATE(2771), + [sym_for_statement] = STATE(2771), + [sym_c_style_for_statement] = STATE(2771), + [sym_while_statement] = STATE(2771), + [sym_if_statement] = STATE(2771), + [sym_case_statement] = STATE(2771), + [sym_function_definition] = STATE(2771), + [sym_compound_statement] = STATE(2771), + [sym_subshell] = STATE(2771), + [sym_pipeline] = STATE(2771), + [sym_list] = STATE(2771), + [sym_negated_command] = STATE(2771), + [sym_test_command] = STATE(2771), + [sym_declaration_command] = STATE(2771), + [sym_unset_command] = STATE(2771), + [sym_command] = STATE(2771), + [sym_command_name] = STATE(457), + [sym_variable_assignment] = STATE(673), + [sym_variable_assignments] = STATE(2771), + [sym_subscript] = STATE(4136), + [sym_file_redirect] = STATE(1494), + [sym_arithmetic_expansion] = STATE(836), + [sym_brace_expression] = STATE(836), + [sym_concatenation] = STATE(1267), + [sym_string] = STATE(836), + [sym_translated_string] = STATE(836), + [sym_number] = STATE(836), + [sym_simple_expansion] = STATE(836), + [sym_expansion] = STATE(836), + [sym_command_substitution] = STATE(836), + [sym_process_substitution] = STATE(836), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(3015), + [aux_sym_command_repeat1] = STATE(953), + [aux_sym__literal_repeat1] = STATE(1038), + [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_GT] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym__special_character] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [sym_ansi_c_string] = ACTIONS(47), + [aux_sym_number_token1] = ACTIONS(49), + [aux_sym_number_token2] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(61), + [anon_sym_GT_LPAREN] = ACTIONS(61), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(65), + [sym_file_descriptor] = ACTIONS(67), + [sym_variable_name] = ACTIONS(69), + [sym__brace_start] = ACTIONS(71), }, - [288] = { - [sym__statements] = STATE(4646), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1531), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [293] = { + [sym_redirected_statement] = STATE(2737), + [sym_for_statement] = STATE(2737), + [sym_c_style_for_statement] = STATE(2737), + [sym_while_statement] = STATE(2737), + [sym_if_statement] = STATE(2737), + [sym_case_statement] = STATE(2737), + [sym_function_definition] = STATE(2737), + [sym_compound_statement] = STATE(2737), + [sym_subshell] = STATE(2737), + [sym_pipeline] = STATE(2737), + [sym_list] = STATE(2737), + [sym_negated_command] = STATE(2737), + [sym_test_command] = STATE(2737), + [sym_declaration_command] = STATE(2737), + [sym_unset_command] = STATE(2737), + [sym_command] = STATE(2737), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(675), + [sym_variable_assignments] = STATE(2737), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [289] = { - [sym__statements] = STATE(4726), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [294] = { + [sym_redirected_statement] = STATE(2842), + [sym_for_statement] = STATE(2842), + [sym_c_style_for_statement] = STATE(2842), + [sym_while_statement] = STATE(2842), + [sym_if_statement] = STATE(2842), + [sym_case_statement] = STATE(2842), + [sym_function_definition] = STATE(2842), + [sym_compound_statement] = STATE(2842), + [sym_subshell] = STATE(2842), + [sym_pipeline] = STATE(2842), + [sym_list] = STATE(2842), + [sym_negated_command] = STATE(2842), + [sym_test_command] = STATE(2842), + [sym_declaration_command] = STATE(2842), + [sym_unset_command] = STATE(2842), + [sym_command] = STATE(2842), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(706), + [sym_variable_assignments] = STATE(2842), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(943), + [anon_sym_for] = ACTIONS(946), + [anon_sym_select] = ACTIONS(949), + [anon_sym_LPAREN_LPAREN] = ACTIONS(952), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_while] = ACTIONS(964), + [anon_sym_until] = ACTIONS(964), + [anon_sym_if] = ACTIONS(967), + [anon_sym_case] = ACTIONS(970), + [anon_sym_function] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_typeset] = ACTIONS(988), + [anon_sym_export] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_local] = ACTIONS(988), + [anon_sym_unset] = ACTIONS(991), + [anon_sym_unsetenv] = ACTIONS(991), + [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT_GT] = ACTIONS(955), + [anon_sym_LT_AMP] = ACTIONS(955), + [anon_sym_GT_AMP] = ACTIONS(955), + [anon_sym_GT_PIPE] = ACTIONS(955), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(994), + [sym__special_character] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1003), + [sym_ansi_c_string] = ACTIONS(1003), + [aux_sym_number_token1] = ACTIONS(1006), + [aux_sym_number_token2] = ACTIONS(1009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1030), + [sym_variable_name] = ACTIONS(1033), + [sym__brace_start] = ACTIONS(1036), + }, + [295] = { + [sym__terminated_statement] = STATE(4628), + [sym_redirected_statement] = STATE(2951), + [sym_for_statement] = STATE(2951), + [sym_c_style_for_statement] = STATE(2951), + [sym_while_statement] = STATE(2951), + [sym_if_statement] = STATE(2951), + [sym_case_statement] = STATE(2951), + [sym_function_definition] = STATE(2951), + [sym_compound_statement] = STATE(2951), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2951), + [sym_list] = STATE(2951), + [sym_negated_command] = STATE(2951), + [sym_test_command] = STATE(2951), + [sym_declaration_command] = STATE(2951), + [sym_unset_command] = STATE(2951), + [sym_command] = STATE(2951), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(709), + [sym_variable_assignments] = STATE(2951), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [290] = { - [sym__statements] = STATE(4753), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [296] = { + [sym__terminated_statement] = STATE(4221), + [sym_redirected_statement] = STATE(2951), + [sym_for_statement] = STATE(2951), + [sym_c_style_for_statement] = STATE(2951), + [sym_while_statement] = STATE(2951), + [sym_if_statement] = STATE(2951), + [sym_case_statement] = STATE(2951), + [sym_function_definition] = STATE(2951), + [sym_compound_statement] = STATE(2951), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2951), + [sym_list] = STATE(2951), + [sym_negated_command] = STATE(2951), + [sym_test_command] = STATE(2951), + [sym_declaration_command] = STATE(2951), + [sym_unset_command] = STATE(2951), + [sym_command] = STATE(2951), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(709), + [sym_variable_assignments] = STATE(2951), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [291] = { - [sym__statements] = STATE(4777), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [297] = { + [sym__terminated_statement] = STATE(4279), + [sym_redirected_statement] = STATE(2951), + [sym_for_statement] = STATE(2951), + [sym_c_style_for_statement] = STATE(2951), + [sym_while_statement] = STATE(2951), + [sym_if_statement] = STATE(2951), + [sym_case_statement] = STATE(2951), + [sym_function_definition] = STATE(2951), + [sym_compound_statement] = STATE(2951), + [sym_subshell] = STATE(3214), + [sym_pipeline] = STATE(2951), + [sym_list] = STATE(2951), + [sym_negated_command] = STATE(2951), + [sym_test_command] = STATE(2951), + [sym_declaration_command] = STATE(2951), + [sym_unset_command] = STATE(2951), + [sym_command] = STATE(2951), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(709), + [sym_variable_assignments] = STATE(2951), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [292] = { - [sym__statements] = STATE(4667), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), + [298] = { + [sym_redirected_statement] = STATE(2717), + [sym_for_statement] = STATE(2717), + [sym_c_style_for_statement] = STATE(2717), + [sym_while_statement] = STATE(2717), + [sym_if_statement] = STATE(2717), + [sym_case_statement] = STATE(2717), + [sym_function_definition] = STATE(2717), + [sym_compound_statement] = STATE(2717), + [sym_subshell] = STATE(2717), + [sym_pipeline] = STATE(2717), + [sym_list] = STATE(2717), + [sym_negated_command] = STATE(2717), + [sym_test_command] = STATE(2717), + [sym_declaration_command] = STATE(2717), + [sym_unset_command] = STATE(2717), + [sym_command] = STATE(2717), + [sym_command_name] = STATE(470), [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1534), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [sym_variable_assignments] = STATE(2717), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -47158,7 +47206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -47173,914 +47221,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [293] = { - [sym__statements] = STATE(4843), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [299] = { + [sym_redirected_statement] = STATE(2626), + [sym_for_statement] = STATE(2626), + [sym_c_style_for_statement] = STATE(2626), + [sym_while_statement] = STATE(2626), + [sym_if_statement] = STATE(2626), + [sym_case_statement] = STATE(2626), + [sym_function_definition] = STATE(2626), + [sym_compound_statement] = STATE(2626), + [sym_subshell] = STATE(2626), + [sym_pipeline] = STATE(2626), + [sym_list] = STATE(2626), + [sym_negated_command] = STATE(2626), + [sym_test_command] = STATE(2626), + [sym_declaration_command] = STATE(2626), + [sym_unset_command] = STATE(2626), + [sym_command] = STATE(2626), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(614), + [sym_variable_assignments] = STATE(2626), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [300] = { + [sym_redirected_statement] = STATE(3144), + [sym_for_statement] = STATE(3144), + [sym_c_style_for_statement] = STATE(3144), + [sym_while_statement] = STATE(3144), + [sym_if_statement] = STATE(3144), + [sym_case_statement] = STATE(3144), + [sym_function_definition] = STATE(3144), + [sym_compound_statement] = STATE(3144), + [sym_subshell] = STATE(3144), + [sym_pipeline] = STATE(3144), + [sym_list] = STATE(3144), + [sym_negated_command] = STATE(3144), + [sym_test_command] = STATE(3144), + [sym_declaration_command] = STATE(3144), + [sym_unset_command] = STATE(3144), + [sym_command] = STATE(3144), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1021), + [sym_variable_assignments] = STATE(3144), + [sym_subscript] = STATE(4131), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(1394), + [sym_brace_expression] = STATE(1394), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(1394), + [sym_translated_string] = STATE(1394), + [sym_number] = STATE(1394), + [sym_simple_expansion] = STATE(1394), + [sym_expansion] = STATE(1394), + [sym_command_substitution] = STATE(1394), + [sym_process_substitution] = STATE(1394), + [aux_sym_redirected_statement_repeat2] = STATE(3303), + [aux_sym_command_repeat1] = STATE(882), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(1039), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(1045), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [294] = { - [sym__statements] = STATE(4850), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [295] = { - [sym_redirected_statement] = STATE(2798), - [sym_for_statement] = STATE(2798), - [sym_c_style_for_statement] = STATE(2798), - [sym_while_statement] = STATE(2798), - [sym_if_statement] = STATE(2798), - [sym_case_statement] = STATE(2798), - [sym_function_definition] = STATE(2798), - [sym_compound_statement] = STATE(2798), - [sym_subshell] = STATE(2798), - [sym_pipeline] = STATE(2798), - [sym_list] = STATE(2798), - [sym_negated_command] = STATE(2798), - [sym_test_command] = STATE(2798), - [sym_declaration_command] = STATE(2798), - [sym_unset_command] = STATE(2798), - [sym_command] = STATE(2798), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(653), - [sym_variable_assignments] = STATE(2798), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [296] = { - [sym_redirected_statement] = STATE(2855), - [sym_for_statement] = STATE(2855), - [sym_c_style_for_statement] = STATE(2855), - [sym_while_statement] = STATE(2855), - [sym_if_statement] = STATE(2855), - [sym_case_statement] = STATE(2855), - [sym_function_definition] = STATE(2855), - [sym_compound_statement] = STATE(2855), - [sym_subshell] = STATE(2855), - [sym_pipeline] = STATE(2855), - [sym_list] = STATE(2855), - [sym_negated_command] = STATE(2855), - [sym_test_command] = STATE(2855), - [sym_declaration_command] = STATE(2855), - [sym_unset_command] = STATE(2855), - [sym_command] = STATE(2855), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(743), - [sym_variable_assignments] = STATE(2855), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [297] = { - [sym_redirected_statement] = STATE(2716), - [sym_for_statement] = STATE(2716), - [sym_c_style_for_statement] = STATE(2716), - [sym_while_statement] = STATE(2716), - [sym_if_statement] = STATE(2716), - [sym_case_statement] = STATE(2716), - [sym_function_definition] = STATE(2716), - [sym_compound_statement] = STATE(2716), - [sym_subshell] = STATE(2716), - [sym_pipeline] = STATE(2716), - [sym_list] = STATE(2716), - [sym_negated_command] = STATE(2716), - [sym_test_command] = STATE(2716), - [sym_declaration_command] = STATE(2716), - [sym_unset_command] = STATE(2716), - [sym_command] = STATE(2716), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(608), - [sym_variable_assignments] = STATE(2716), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [298] = { - [sym_redirected_statement] = STATE(2727), - [sym_for_statement] = STATE(2727), - [sym_c_style_for_statement] = STATE(2727), - [sym_while_statement] = STATE(2727), - [sym_if_statement] = STATE(2727), - [sym_case_statement] = STATE(2727), - [sym_function_definition] = STATE(2727), - [sym_compound_statement] = STATE(2727), - [sym_subshell] = STATE(2727), - [sym_pipeline] = STATE(2727), - [sym_list] = STATE(2727), - [sym_negated_command] = STATE(2727), - [sym_test_command] = STATE(2727), - [sym_declaration_command] = STATE(2727), - [sym_unset_command] = STATE(2727), - [sym_command] = STATE(2727), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2727), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [299] = { - [sym_redirected_statement] = STATE(2954), - [sym_for_statement] = STATE(2954), - [sym_c_style_for_statement] = STATE(2954), - [sym_while_statement] = STATE(2954), - [sym_if_statement] = STATE(2954), - [sym_case_statement] = STATE(2954), - [sym_function_definition] = STATE(2954), - [sym_compound_statement] = STATE(2954), - [sym_subshell] = STATE(2954), - [sym_pipeline] = STATE(2954), - [sym_list] = STATE(2954), - [sym_negated_command] = STATE(2954), - [sym_test_command] = STATE(2954), - [sym_declaration_command] = STATE(2954), - [sym_unset_command] = STATE(2954), - [sym_command] = STATE(2954), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(709), - [sym_variable_assignments] = STATE(2954), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(935), - [anon_sym_for] = ACTIONS(938), - [anon_sym_select] = ACTIONS(941), - [anon_sym_LPAREN_LPAREN] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_while] = ACTIONS(956), - [anon_sym_until] = ACTIONS(956), - [anon_sym_if] = ACTIONS(959), - [anon_sym_case] = ACTIONS(962), - [anon_sym_function] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(977), - [anon_sym_declare] = ACTIONS(980), - [anon_sym_typeset] = ACTIONS(980), - [anon_sym_export] = ACTIONS(980), - [anon_sym_readonly] = ACTIONS(980), - [anon_sym_local] = ACTIONS(980), - [anon_sym_unset] = ACTIONS(983), - [anon_sym_unsetenv] = ACTIONS(983), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(947), - [anon_sym_LT_AMP] = ACTIONS(947), - [anon_sym_GT_AMP] = ACTIONS(947), - [anon_sym_GT_PIPE] = ACTIONS(947), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(986), - [sym__special_character] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_raw_string] = ACTIONS(995), - [sym_ansi_c_string] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(998), - [aux_sym_number_token2] = ACTIONS(1001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_BQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1013), - [anon_sym_LT_LPAREN] = ACTIONS(1016), - [anon_sym_GT_LPAREN] = ACTIONS(1016), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1019), - [sym_file_descriptor] = ACTIONS(1022), - [sym_variable_name] = ACTIONS(1025), - [sym__brace_start] = ACTIONS(1028), - }, - [300] = { - [sym__terminated_statement] = STATE(4546), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(1049), + [anon_sym_typeset] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1049), + [anon_sym_readonly] = ACTIONS(1049), + [anon_sym_local] = ACTIONS(1049), + [anon_sym_unset] = ACTIONS(1051), + [anon_sym_unsetenv] = ACTIONS(1051), + [anon_sym_AMP_GT] = ACTIONS(1043), + [anon_sym_AMP_GT_GT] = ACTIONS(1041), + [anon_sym_LT_AMP] = ACTIONS(1041), + [anon_sym_GT_AMP] = ACTIONS(1041), + [anon_sym_GT_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(1055), + [sym_ansi_c_string] = ACTIONS(1055), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1059), + [sym_variable_name] = ACTIONS(1061), + [sym__brace_start] = ACTIONS(437), }, [301] = { - [sym__terminated_statement] = STATE(4903), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [302] = { - [sym__terminated_statement] = STATE(4639), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [303] = { - [sym_redirected_statement] = STATE(2821), - [sym_for_statement] = STATE(2821), - [sym_c_style_for_statement] = STATE(2821), - [sym_while_statement] = STATE(2821), - [sym_if_statement] = STATE(2821), - [sym_case_statement] = STATE(2821), - [sym_function_definition] = STATE(2821), - [sym_compound_statement] = STATE(2821), - [sym_subshell] = STATE(2821), - [sym_pipeline] = STATE(2821), - [sym_list] = STATE(2821), - [sym_negated_command] = STATE(2821), - [sym_test_command] = STATE(2821), - [sym_declaration_command] = STATE(2821), - [sym_unset_command] = STATE(2821), - [sym_command] = STATE(2821), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(676), - [sym_variable_assignments] = STATE(2821), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), + [sym_redirected_statement] = STATE(2815), + [sym_for_statement] = STATE(2815), + [sym_c_style_for_statement] = STATE(2815), + [sym_while_statement] = STATE(2815), + [sym_if_statement] = STATE(2815), + [sym_case_statement] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_compound_statement] = STATE(2815), + [sym_subshell] = STATE(2815), + [sym_pipeline] = STATE(2815), + [sym_list] = STATE(2815), + [sym_negated_command] = STATE(2815), + [sym_test_command] = STATE(2815), + [sym_declaration_command] = STATE(2815), + [sym_unset_command] = STATE(2815), + [sym_command] = STATE(2815), + [sym_command_name] = STATE(457), + [sym_variable_assignment] = STATE(635), + [sym_variable_assignments] = STATE(2815), + [sym_subscript] = STATE(4136), + [sym_file_redirect] = STATE(1494), + [sym_arithmetic_expansion] = STATE(836), + [sym_brace_expression] = STATE(836), + [sym_concatenation] = STATE(1267), + [sym_string] = STATE(836), + [sym_translated_string] = STATE(836), + [sym_number] = STATE(836), + [sym_simple_expansion] = STATE(836), + [sym_expansion] = STATE(836), + [sym_command_substitution] = STATE(836), + [sym_process_substitution] = STATE(836), + [aux_sym_redirected_statement_repeat2] = STATE(3015), + [aux_sym_command_repeat1] = STATE(953), + [aux_sym__literal_repeat1] = STATE(1038), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -48130,130 +47494,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(69), [sym__brace_start] = ACTIONS(71), }, - [304] = { - [sym__terminated_statement] = STATE(4760), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [305] = { - [sym_redirected_statement] = STATE(2845), - [sym_for_statement] = STATE(2845), - [sym_c_style_for_statement] = STATE(2845), - [sym_while_statement] = STATE(2845), - [sym_if_statement] = STATE(2845), - [sym_case_statement] = STATE(2845), - [sym_function_definition] = STATE(2845), - [sym_compound_statement] = STATE(2845), - [sym_subshell] = STATE(2845), - [sym_pipeline] = STATE(2845), - [sym_list] = STATE(2845), - [sym_negated_command] = STATE(2845), - [sym_test_command] = STATE(2845), - [sym_declaration_command] = STATE(2845), - [sym_unset_command] = STATE(2845), - [sym_command] = STATE(2845), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(663), - [sym_variable_assignments] = STATE(2845), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [302] = { + [sym_redirected_statement] = STATE(2787), + [sym_for_statement] = STATE(2787), + [sym_c_style_for_statement] = STATE(2787), + [sym_while_statement] = STATE(2787), + [sym_if_statement] = STATE(2787), + [sym_case_statement] = STATE(2787), + [sym_function_definition] = STATE(2787), + [sym_compound_statement] = STATE(2787), + [sym_subshell] = STATE(2787), + [sym_pipeline] = STATE(2787), + [sym_list] = STATE(2787), + [sym_negated_command] = STATE(2787), + [sym_test_command] = STATE(2787), + [sym_declaration_command] = STATE(2787), + [sym_unset_command] = STATE(2787), + [sym_command] = STATE(2787), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(641), + [sym_variable_assignments] = STATE(2787), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -48264,7 +47543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -48279,737 +47558,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [306] = { - [sym_redirected_statement] = STATE(2719), - [sym_for_statement] = STATE(2719), - [sym_c_style_for_statement] = STATE(2719), - [sym_while_statement] = STATE(2719), - [sym_if_statement] = STATE(2719), - [sym_case_statement] = STATE(2719), - [sym_function_definition] = STATE(2719), - [sym_compound_statement] = STATE(2719), - [sym_subshell] = STATE(2719), - [sym_pipeline] = STATE(2719), - [sym_list] = STATE(2719), - [sym_negated_command] = STATE(2719), - [sym_test_command] = STATE(2719), - [sym_declaration_command] = STATE(2719), - [sym_unset_command] = STATE(2719), - [sym_command] = STATE(2719), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(610), - [sym_variable_assignments] = STATE(2719), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [307] = { - [sym_redirected_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_c_style_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_if_statement] = STATE(3368), - [sym_case_statement] = STATE(3368), - [sym_function_definition] = STATE(3368), - [sym_compound_statement] = STATE(3368), - [sym_subshell] = STATE(3368), - [sym_pipeline] = STATE(3368), - [sym_list] = STATE(3368), - [sym_negated_command] = STATE(3368), - [sym_test_command] = STATE(3368), - [sym_declaration_command] = STATE(3368), - [sym_unset_command] = STATE(3368), - [sym_command] = STATE(3368), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1322), - [sym_variable_assignments] = STATE(3368), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1544), - [sym_brace_expression] = STATE(1544), - [sym_concatenation] = STATE(1970), - [sym_string] = STATE(1544), - [sym_translated_string] = STATE(1544), - [sym_number] = STATE(1544), - [sym_simple_expansion] = STATE(1544), - [sym_expansion] = STATE(1544), - [sym_command_substitution] = STATE(1544), - [sym_process_substitution] = STATE(1544), - [aux_sym_redirected_statement_repeat2] = STATE(3568), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(1731), - [sym_word] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_GT_PIPE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(1069), - }, - [308] = { - [sym_redirected_statement] = STATE(3360), - [sym_for_statement] = STATE(3360), - [sym_c_style_for_statement] = STATE(3360), - [sym_while_statement] = STATE(3360), - [sym_if_statement] = STATE(3360), - [sym_case_statement] = STATE(3360), - [sym_function_definition] = STATE(3360), - [sym_compound_statement] = STATE(3360), - [sym_subshell] = STATE(3360), - [sym_pipeline] = STATE(3360), - [sym_list] = STATE(3360), - [sym_negated_command] = STATE(3360), - [sym_test_command] = STATE(3360), - [sym_declaration_command] = STATE(3360), - [sym_unset_command] = STATE(3360), - [sym_command] = STATE(3360), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1324), - [sym_variable_assignments] = STATE(3360), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1544), - [sym_brace_expression] = STATE(1544), - [sym_concatenation] = STATE(1970), - [sym_string] = STATE(1544), - [sym_translated_string] = STATE(1544), - [sym_number] = STATE(1544), - [sym_simple_expansion] = STATE(1544), - [sym_expansion] = STATE(1544), - [sym_command_substitution] = STATE(1544), - [sym_process_substitution] = STATE(1544), - [aux_sym_redirected_statement_repeat2] = STATE(3568), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(1731), - [sym_word] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_GT_PIPE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(1069), - }, - [309] = { - [sym_redirected_statement] = STATE(3269), - [sym_for_statement] = STATE(3269), - [sym_c_style_for_statement] = STATE(3269), - [sym_while_statement] = STATE(3269), - [sym_if_statement] = STATE(3269), - [sym_case_statement] = STATE(3269), - [sym_function_definition] = STATE(3269), - [sym_compound_statement] = STATE(3269), - [sym_subshell] = STATE(3269), - [sym_pipeline] = STATE(3269), - [sym_list] = STATE(3269), - [sym_negated_command] = STATE(3269), - [sym_test_command] = STATE(3269), - [sym_declaration_command] = STATE(3269), - [sym_unset_command] = STATE(3269), - [sym_command] = STATE(3269), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1044), - [sym_variable_assignments] = STATE(3269), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), - }, - [310] = { - [sym_redirected_statement] = STATE(2945), - [sym_for_statement] = STATE(2945), - [sym_c_style_for_statement] = STATE(2945), - [sym_while_statement] = STATE(2945), - [sym_if_statement] = STATE(2945), - [sym_case_statement] = STATE(2945), - [sym_function_definition] = STATE(2945), - [sym_compound_statement] = STATE(2945), - [sym_subshell] = STATE(2945), - [sym_pipeline] = STATE(2945), - [sym_list] = STATE(2945), - [sym_negated_command] = STATE(2945), - [sym_test_command] = STATE(2945), - [sym_declaration_command] = STATE(2945), - [sym_unset_command] = STATE(2945), - [sym_command] = STATE(2945), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(756), - [sym_variable_assignments] = STATE(2945), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [311] = { - [sym_redirected_statement] = STATE(2905), - [sym_for_statement] = STATE(2905), - [sym_c_style_for_statement] = STATE(2905), - [sym_while_statement] = STATE(2905), - [sym_if_statement] = STATE(2905), - [sym_case_statement] = STATE(2905), - [sym_function_definition] = STATE(2905), - [sym_compound_statement] = STATE(2905), - [sym_subshell] = STATE(2905), - [sym_pipeline] = STATE(2905), - [sym_list] = STATE(2905), - [sym_negated_command] = STATE(2905), - [sym_test_command] = STATE(2905), - [sym_declaration_command] = STATE(2905), - [sym_unset_command] = STATE(2905), - [sym_command] = STATE(2905), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(754), - [sym_variable_assignments] = STATE(2905), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [312] = { - [sym_redirected_statement] = STATE(2750), - [sym_for_statement] = STATE(2750), - [sym_c_style_for_statement] = STATE(2750), - [sym_while_statement] = STATE(2750), - [sym_if_statement] = STATE(2750), - [sym_case_statement] = STATE(2750), - [sym_function_definition] = STATE(2750), - [sym_compound_statement] = STATE(2750), - [sym_subshell] = STATE(2750), - [sym_pipeline] = STATE(2750), - [sym_list] = STATE(2750), - [sym_negated_command] = STATE(2750), - [sym_test_command] = STATE(2750), - [sym_declaration_command] = STATE(2750), - [sym_unset_command] = STATE(2750), - [sym_command] = STATE(2750), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(631), - [sym_variable_assignments] = STATE(2750), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [313] = { - [sym_redirected_statement] = STATE(2759), - [sym_for_statement] = STATE(2759), - [sym_c_style_for_statement] = STATE(2759), - [sym_while_statement] = STATE(2759), - [sym_if_statement] = STATE(2759), - [sym_case_statement] = STATE(2759), - [sym_function_definition] = STATE(2759), - [sym_compound_statement] = STATE(2759), - [sym_subshell] = STATE(2759), - [sym_pipeline] = STATE(2759), - [sym_list] = STATE(2759), - [sym_negated_command] = STATE(2759), - [sym_test_command] = STATE(2759), - [sym_declaration_command] = STATE(2759), - [sym_unset_command] = STATE(2759), - [sym_command] = STATE(2759), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(625), - [sym_variable_assignments] = STATE(2759), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [314] = { - [sym_redirected_statement] = STATE(2796), - [sym_for_statement] = STATE(2796), - [sym_c_style_for_statement] = STATE(2796), - [sym_while_statement] = STATE(2796), - [sym_if_statement] = STATE(2796), - [sym_case_statement] = STATE(2796), - [sym_function_definition] = STATE(2796), - [sym_compound_statement] = STATE(2796), - [sym_subshell] = STATE(2796), - [sym_pipeline] = STATE(2796), - [sym_list] = STATE(2796), - [sym_negated_command] = STATE(2796), - [sym_test_command] = STATE(2796), - [sym_declaration_command] = STATE(2796), - [sym_unset_command] = STATE(2796), - [sym_command] = STATE(2796), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(674), - [sym_variable_assignments] = STATE(2796), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), + [303] = { + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(470), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(4164), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(803), + [sym_brace_expression] = STATE(803), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(803), + [sym_translated_string] = STATE(803), + [sym_number] = STATE(803), + [sym_simple_expansion] = STATE(803), + [sym_expansion] = STATE(803), + [sym_command_substitution] = STATE(803), + [sym_process_substitution] = STATE(803), + [aux_sym_redirected_statement_repeat2] = STATE(3061), + [aux_sym_command_repeat1] = STATE(922), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(773), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -49020,7 +47627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(779), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -49035,397 +47642,901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(783), + [sym_ansi_c_string] = ACTIONS(783), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(785), + [sym_file_descriptor] = ACTIONS(121), + [sym_variable_name] = ACTIONS(123), + [sym__brace_start] = ACTIONS(437), }, - [315] = { - [sym_redirected_statement] = STATE(3224), - [sym_for_statement] = STATE(3224), - [sym_c_style_for_statement] = STATE(3224), - [sym_while_statement] = STATE(3224), - [sym_if_statement] = STATE(3224), - [sym_case_statement] = STATE(3224), - [sym_function_definition] = STATE(3224), - [sym_compound_statement] = STATE(3224), - [sym_subshell] = STATE(3224), - [sym_pipeline] = STATE(3224), - [sym_list] = STATE(3224), - [sym_negated_command] = STATE(3224), - [sym_test_command] = STATE(3224), - [sym_declaration_command] = STATE(3224), - [sym_unset_command] = STATE(3224), - [sym_command] = STATE(3224), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1090), - [sym_variable_assignments] = STATE(3224), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), + [304] = { + [sym_redirected_statement] = STATE(3146), + [sym_for_statement] = STATE(3146), + [sym_c_style_for_statement] = STATE(3146), + [sym_while_statement] = STATE(3146), + [sym_if_statement] = STATE(3146), + [sym_case_statement] = STATE(3146), + [sym_function_definition] = STATE(3146), + [sym_compound_statement] = STATE(3146), + [sym_subshell] = STATE(3146), + [sym_pipeline] = STATE(3146), + [sym_list] = STATE(3146), + [sym_negated_command] = STATE(3146), + [sym_test_command] = STATE(3146), + [sym_declaration_command] = STATE(3146), + [sym_unset_command] = STATE(3146), + [sym_command] = STATE(3146), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(3146), + [sym_subscript] = STATE(4131), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(1394), + [sym_brace_expression] = STATE(1394), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(1394), + [sym_translated_string] = STATE(1394), + [sym_number] = STATE(1394), + [sym_simple_expansion] = STATE(1394), + [sym_expansion] = STATE(1394), + [sym_command_substitution] = STATE(1394), + [sym_process_substitution] = STATE(1394), + [aux_sym_redirected_statement_repeat2] = STATE(3303), + [aux_sym_command_repeat1] = STATE(882), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(1039), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(1045), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(1049), + [anon_sym_typeset] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1049), + [anon_sym_readonly] = ACTIONS(1049), + [anon_sym_local] = ACTIONS(1049), + [anon_sym_unset] = ACTIONS(1051), + [anon_sym_unsetenv] = ACTIONS(1051), + [anon_sym_AMP_GT] = ACTIONS(1043), + [anon_sym_AMP_GT_GT] = ACTIONS(1041), + [anon_sym_LT_AMP] = ACTIONS(1041), + [anon_sym_GT_AMP] = ACTIONS(1041), + [anon_sym_GT_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(1055), + [sym_ansi_c_string] = ACTIONS(1055), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1059), + [sym_variable_name] = ACTIONS(1061), + [sym__brace_start] = ACTIONS(437), }, - [316] = { - [sym_redirected_statement] = STATE(2871), - [sym_for_statement] = STATE(2871), - [sym_c_style_for_statement] = STATE(2871), - [sym_while_statement] = STATE(2871), - [sym_if_statement] = STATE(2871), - [sym_case_statement] = STATE(2871), - [sym_function_definition] = STATE(2871), - [sym_compound_statement] = STATE(2871), - [sym_subshell] = STATE(2871), - [sym_pipeline] = STATE(2871), - [sym_list] = STATE(2871), - [sym_negated_command] = STATE(2871), - [sym_test_command] = STATE(2871), - [sym_declaration_command] = STATE(2871), - [sym_unset_command] = STATE(2871), - [sym_command] = STATE(2871), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(703), - [sym_variable_assignments] = STATE(2871), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [305] = { + [sym_redirected_statement] = STATE(2620), + [sym_for_statement] = STATE(2620), + [sym_c_style_for_statement] = STATE(2620), + [sym_while_statement] = STATE(2620), + [sym_if_statement] = STATE(2620), + [sym_case_statement] = STATE(2620), + [sym_function_definition] = STATE(2620), + [sym_compound_statement] = STATE(2620), + [sym_subshell] = STATE(2620), + [sym_pipeline] = STATE(2620), + [sym_list] = STATE(2620), + [sym_negated_command] = STATE(2620), + [sym_test_command] = STATE(2620), + [sym_declaration_command] = STATE(2620), + [sym_unset_command] = STATE(2620), + [sym_command] = STATE(2620), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(629), + [sym_variable_assignments] = STATE(2620), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [306] = { + [sym_redirected_statement] = STATE(2655), + [sym_for_statement] = STATE(2655), + [sym_c_style_for_statement] = STATE(2655), + [sym_while_statement] = STATE(2655), + [sym_if_statement] = STATE(2655), + [sym_case_statement] = STATE(2655), + [sym_function_definition] = STATE(2655), + [sym_compound_statement] = STATE(2655), + [sym_subshell] = STATE(2655), + [sym_pipeline] = STATE(2655), + [sym_list] = STATE(2655), + [sym_negated_command] = STATE(2655), + [sym_test_command] = STATE(2655), + [sym_declaration_command] = STATE(2655), + [sym_unset_command] = STATE(2655), + [sym_command] = STATE(2655), + [sym_command_name] = STATE(443), + [sym_variable_assignment] = STATE(618), + [sym_variable_assignments] = STATE(2655), + [sym_subscript] = STATE(4071), + [sym_file_redirect] = STATE(1383), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1008), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym_redirected_statement_repeat2] = STATE(2857), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(993), + [sym_word] = ACTIONS(593), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(607), + [anon_sym_typeset] = ACTIONS(607), + [anon_sym_export] = ACTIONS(607), + [anon_sym_readonly] = ACTIONS(607), + [anon_sym_local] = ACTIONS(607), + [anon_sym_unset] = ACTIONS(609), + [anon_sym_unsetenv] = ACTIONS(609), + [anon_sym_AMP_GT] = ACTIONS(599), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_GT_PIPE] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(611), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [sym_raw_string] = ACTIONS(617), + [sym_ansi_c_string] = ACTIONS(617), + [aux_sym_number_token1] = ACTIONS(619), + [aux_sym_number_token2] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(631), + [anon_sym_GT_LPAREN] = ACTIONS(631), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(633), + [sym_file_descriptor] = ACTIONS(635), + [sym_variable_name] = ACTIONS(637), + [sym__brace_start] = ACTIONS(639), + }, + [307] = { + [sym_redirected_statement] = STATE(2585), + [sym_for_statement] = STATE(2585), + [sym_c_style_for_statement] = STATE(2585), + [sym_while_statement] = STATE(2585), + [sym_if_statement] = STATE(2585), + [sym_case_statement] = STATE(2585), + [sym_function_definition] = STATE(2585), + [sym_compound_statement] = STATE(2585), + [sym_subshell] = STATE(2585), + [sym_pipeline] = STATE(2585), + [sym_list] = STATE(2585), + [sym_negated_command] = STATE(2585), + [sym_test_command] = STATE(2585), + [sym_declaration_command] = STATE(2585), + [sym_unset_command] = STATE(2585), + [sym_command] = STATE(2585), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(593), + [sym_variable_assignments] = STATE(2585), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(878), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), + }, + [308] = { + [sym_redirected_statement] = STATE(2583), + [sym_for_statement] = STATE(2583), + [sym_c_style_for_statement] = STATE(2583), + [sym_while_statement] = STATE(2583), + [sym_if_statement] = STATE(2583), + [sym_case_statement] = STATE(2583), + [sym_function_definition] = STATE(2583), + [sym_compound_statement] = STATE(2583), + [sym_subshell] = STATE(2583), + [sym_pipeline] = STATE(2583), + [sym_list] = STATE(2583), + [sym_negated_command] = STATE(2583), + [sym_test_command] = STATE(2583), + [sym_declaration_command] = STATE(2583), + [sym_unset_command] = STATE(2583), + [sym_command] = STATE(2583), + [sym_command_name] = STATE(436), + [sym_variable_assignment] = STATE(607), + [sym_variable_assignments] = STATE(2583), + [sym_subscript] = STATE(4147), + [sym_file_redirect] = STATE(1328), + [sym_arithmetic_expansion] = STATE(665), + [sym_brace_expression] = STATE(665), + [sym_concatenation] = STATE(878), + [sym_string] = STATE(665), + [sym_translated_string] = STATE(665), + [sym_number] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_expansion] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [aux_sym_redirected_statement_repeat2] = STATE(2790), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(768), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_variable_name] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), + }, + [309] = { + [sym_redirected_statement] = STATE(2831), + [sym_for_statement] = STATE(2831), + [sym_c_style_for_statement] = STATE(2831), + [sym_while_statement] = STATE(2831), + [sym_if_statement] = STATE(2831), + [sym_case_statement] = STATE(2831), + [sym_function_definition] = STATE(2831), + [sym_compound_statement] = STATE(2831), + [sym_subshell] = STATE(2831), + [sym_pipeline] = STATE(2831), + [sym_list] = STATE(2831), + [sym_negated_command] = STATE(2831), + [sym_test_command] = STATE(2831), + [sym_declaration_command] = STATE(2831), + [sym_unset_command] = STATE(2831), + [sym_command] = STATE(2831), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(731), + [sym_variable_assignments] = STATE(2831), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [317] = { - [sym_redirected_statement] = STATE(2874), - [sym_for_statement] = STATE(2874), - [sym_c_style_for_statement] = STATE(2874), - [sym_while_statement] = STATE(2874), - [sym_if_statement] = STATE(2874), - [sym_case_statement] = STATE(2874), - [sym_function_definition] = STATE(2874), - [sym_compound_statement] = STATE(2874), - [sym_subshell] = STATE(2874), - [sym_pipeline] = STATE(2874), - [sym_list] = STATE(2874), - [sym_negated_command] = STATE(2874), - [sym_test_command] = STATE(2874), - [sym_declaration_command] = STATE(2874), - [sym_unset_command] = STATE(2874), - [sym_command] = STATE(2874), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(701), - [sym_variable_assignments] = STATE(2874), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), + [310] = { + [sym_redirected_statement] = STATE(2853), + [sym_for_statement] = STATE(2853), + [sym_c_style_for_statement] = STATE(2853), + [sym_while_statement] = STATE(2853), + [sym_if_statement] = STATE(2853), + [sym_case_statement] = STATE(2853), + [sym_function_definition] = STATE(2853), + [sym_compound_statement] = STATE(2853), + [sym_subshell] = STATE(2853), + [sym_pipeline] = STATE(2853), + [sym_list] = STATE(2853), + [sym_negated_command] = STATE(2853), + [sym_test_command] = STATE(2853), + [sym_declaration_command] = STATE(2853), + [sym_unset_command] = STATE(2853), + [sym_command] = STATE(2853), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(734), + [sym_variable_assignments] = STATE(2853), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3082), + [aux_sym_command_repeat1] = STATE(913), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [318] = { - [sym_redirected_statement] = STATE(2710), - [sym_for_statement] = STATE(2710), - [sym_c_style_for_statement] = STATE(2710), - [sym_while_statement] = STATE(2710), - [sym_if_statement] = STATE(2710), - [sym_case_statement] = STATE(2710), - [sym_function_definition] = STATE(2710), - [sym_compound_statement] = STATE(2710), - [sym_subshell] = STATE(2710), - [sym_pipeline] = STATE(2710), - [sym_list] = STATE(2710), - [sym_negated_command] = STATE(2710), - [sym_test_command] = STATE(2710), - [sym_declaration_command] = STATE(2710), - [sym_unset_command] = STATE(2710), - [sym_command] = STATE(2710), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2710), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), + [311] = { + [sym_redirected_statement] = STATE(3176), + [sym_for_statement] = STATE(3176), + [sym_c_style_for_statement] = STATE(3176), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3176), + [sym_function_definition] = STATE(3176), + [sym_compound_statement] = STATE(3176), + [sym_subshell] = STATE(3176), + [sym_pipeline] = STATE(3176), + [sym_list] = STATE(3176), + [sym_negated_command] = STATE(3176), + [sym_test_command] = STATE(3176), + [sym_declaration_command] = STATE(3176), + [sym_unset_command] = STATE(3176), + [sym_command] = STATE(3176), + [sym_command_name] = STATE(605), + [sym_variable_assignment] = STATE(1167), + [sym_variable_assignments] = STATE(3176), + [sym_subscript] = STATE(4068), + [sym_file_redirect] = STATE(2077), + [sym_arithmetic_expansion] = STATE(1506), + [sym_brace_expression] = STATE(1506), + [sym_concatenation] = STATE(1802), + [sym_string] = STATE(1506), + [sym_translated_string] = STATE(1506), + [sym_number] = STATE(1506), + [sym_simple_expansion] = STATE(1506), + [sym_expansion] = STATE(1506), + [sym_command_substitution] = STATE(1506), + [sym_process_substitution] = STATE(1506), + [aux_sym_redirected_statement_repeat2] = STATE(3315), + [aux_sym_command_repeat1] = STATE(927), + [aux_sym__literal_repeat1] = STATE(1741), + [sym_word] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_GT_PIPE] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1075), + [sym__special_character] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [sym_raw_string] = ACTIONS(1081), + [sym_ansi_c_string] = ACTIONS(1081), + [aux_sym_number_token1] = ACTIONS(1083), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1091), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1093), + [anon_sym_LT_LPAREN] = ACTIONS(1095), + [anon_sym_GT_LPAREN] = ACTIONS(1095), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), + [sym_test_operator] = ACTIONS(1097), + [sym_file_descriptor] = ACTIONS(1099), + [sym_variable_name] = ACTIONS(302), + [sym__brace_start] = ACTIONS(1101), }, - [319] = { - [sym_redirected_statement] = STATE(2814), - [sym_for_statement] = STATE(2814), - [sym_c_style_for_statement] = STATE(2814), - [sym_while_statement] = STATE(2814), - [sym_if_statement] = STATE(2814), - [sym_case_statement] = STATE(2814), - [sym_function_definition] = STATE(2814), - [sym_compound_statement] = STATE(2814), - [sym_subshell] = STATE(2814), - [sym_pipeline] = STATE(2814), - [sym_list] = STATE(2814), - [sym_negated_command] = STATE(2814), - [sym_test_command] = STATE(2814), - [sym_declaration_command] = STATE(2814), - [sym_unset_command] = STATE(2814), - [sym_command] = STATE(2814), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(656), - [sym_variable_assignments] = STATE(2814), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), + [312] = { + [sym_redirected_statement] = STATE(3218), + [sym_for_statement] = STATE(3218), + [sym_c_style_for_statement] = STATE(3218), + [sym_while_statement] = STATE(3218), + [sym_if_statement] = STATE(3218), + [sym_case_statement] = STATE(3218), + [sym_function_definition] = STATE(3218), + [sym_compound_statement] = STATE(3218), + [sym_subshell] = STATE(3218), + [sym_pipeline] = STATE(3218), + [sym_list] = STATE(3218), + [sym_negated_command] = STATE(3218), + [sym_test_command] = STATE(3218), + [sym_declaration_command] = STATE(3218), + [sym_unset_command] = STATE(3218), + [sym_command] = STATE(3218), + [sym_command_name] = STATE(605), + [sym_variable_assignment] = STATE(1234), + [sym_variable_assignments] = STATE(3218), + [sym_subscript] = STATE(4068), + [sym_file_redirect] = STATE(2077), + [sym_arithmetic_expansion] = STATE(1506), + [sym_brace_expression] = STATE(1506), + [sym_concatenation] = STATE(1802), + [sym_string] = STATE(1506), + [sym_translated_string] = STATE(1506), + [sym_number] = STATE(1506), + [sym_simple_expansion] = STATE(1506), + [sym_expansion] = STATE(1506), + [sym_command_substitution] = STATE(1506), + [sym_process_substitution] = STATE(1506), + [aux_sym_redirected_statement_repeat2] = STATE(3315), + [aux_sym_command_repeat1] = STATE(927), + [aux_sym__literal_repeat1] = STATE(1741), + [sym_word] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_GT_PIPE] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1075), + [sym__special_character] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [sym_raw_string] = ACTIONS(1081), + [sym_ansi_c_string] = ACTIONS(1081), + [aux_sym_number_token1] = ACTIONS(1083), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1089), + [anon_sym_BQUOTE] = ACTIONS(1091), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1093), + [anon_sym_LT_LPAREN] = ACTIONS(1095), + [anon_sym_GT_LPAREN] = ACTIONS(1095), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1097), + [sym_file_descriptor] = ACTIONS(1099), + [sym_variable_name] = ACTIONS(302), + [sym__brace_start] = ACTIONS(1101), + }, + [313] = { + [sym__expression] = STATE(1936), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1523), + [sym_brace_expression] = STATE(1523), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1523), + [sym_translated_string] = STATE(1523), + [sym_number] = STATE(1523), + [sym_simple_expansion] = STATE(1523), + [sym_expansion] = STATE(1523), + [sym_command_substitution] = STATE(1523), + [sym_process_substitution] = STATE(1523), + [aux_sym__literal_repeat1] = STATE(1653), + [aux_sym_concatenation_repeat1] = STATE(1489), + [sym_word] = ACTIONS(143), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN_RPAREN] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(160), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1111), + [sym_ansi_c_string] = ACTIONS(1111), + [aux_sym_number_token1] = ACTIONS(166), + [aux_sym_number_token2] = ACTIONS(168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(174), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1119), + [sym__concat] = ACTIONS(1105), + [sym__brace_start] = ACTIONS(186), + }, + [314] = { + [sym_redirected_statement] = STATE(2821), + [sym_for_statement] = STATE(2821), + [sym_c_style_for_statement] = STATE(2821), + [sym_while_statement] = STATE(2821), + [sym_if_statement] = STATE(2821), + [sym_case_statement] = STATE(2821), + [sym_function_definition] = STATE(2821), + [sym_compound_statement] = STATE(2821), + [sym_subshell] = STATE(2821), + [sym_pipeline] = STATE(2821), + [sym_list] = STATE(2821), + [sym_negated_command] = STATE(2821), + [sym_test_command] = STATE(2821), + [sym_declaration_command] = STATE(2821), + [sym_unset_command] = STATE(2821), + [sym_command] = STATE(2821), + [sym_command_name] = STATE(457), + [sym_variable_assignment] = STATE(634), + [sym_variable_assignments] = STATE(2821), + [sym_subscript] = STATE(4136), + [sym_file_redirect] = STATE(1494), + [sym_arithmetic_expansion] = STATE(836), + [sym_brace_expression] = STATE(836), + [sym_concatenation] = STATE(1267), + [sym_string] = STATE(836), + [sym_translated_string] = STATE(836), + [sym_number] = STATE(836), + [sym_simple_expansion] = STATE(836), + [sym_expansion] = STATE(836), + [sym_command_substitution] = STATE(836), + [sym_process_substitution] = STATE(836), + [aux_sym_redirected_statement_repeat2] = STATE(3015), + [aux_sym_command_repeat1] = STATE(953), + [aux_sym__literal_repeat1] = STATE(1038), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -49475,817 +48586,1015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(69), [sym__brace_start] = ACTIONS(71), }, - [320] = { - [sym_redirected_statement] = STATE(3225), - [sym_for_statement] = STATE(3225), - [sym_c_style_for_statement] = STATE(3225), - [sym_while_statement] = STATE(3225), - [sym_if_statement] = STATE(3225), - [sym_case_statement] = STATE(3225), - [sym_function_definition] = STATE(3225), - [sym_compound_statement] = STATE(3225), - [sym_subshell] = STATE(3225), - [sym_pipeline] = STATE(3225), - [sym_list] = STATE(3225), - [sym_negated_command] = STATE(3225), - [sym_test_command] = STATE(3225), - [sym_declaration_command] = STATE(3225), - [sym_unset_command] = STATE(3225), - [sym_command] = STATE(3225), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1184), - [sym_variable_assignments] = STATE(3225), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), + [315] = { + [sym_redirected_statement] = STATE(3142), + [sym_for_statement] = STATE(3142), + [sym_c_style_for_statement] = STATE(3142), + [sym_while_statement] = STATE(3142), + [sym_if_statement] = STATE(3142), + [sym_case_statement] = STATE(3142), + [sym_function_definition] = STATE(3142), + [sym_compound_statement] = STATE(3142), + [sym_subshell] = STATE(3142), + [sym_pipeline] = STATE(3142), + [sym_list] = STATE(3142), + [sym_negated_command] = STATE(3142), + [sym_test_command] = STATE(3142), + [sym_declaration_command] = STATE(3142), + [sym_unset_command] = STATE(3142), + [sym_command] = STATE(3142), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1126), + [sym_variable_assignments] = STATE(3142), + [sym_subscript] = STATE(4131), + [sym_file_redirect] = STATE(1468), + [sym_arithmetic_expansion] = STATE(1394), + [sym_brace_expression] = STATE(1394), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(1394), + [sym_translated_string] = STATE(1394), + [sym_number] = STATE(1394), + [sym_simple_expansion] = STATE(1394), + [sym_expansion] = STATE(1394), + [sym_command_substitution] = STATE(1394), + [sym_process_substitution] = STATE(1394), + [aux_sym_redirected_statement_repeat2] = STATE(3303), + [aux_sym_command_repeat1] = STATE(882), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(1039), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(1045), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_declare] = ACTIONS(1049), + [anon_sym_typeset] = ACTIONS(1049), + [anon_sym_export] = ACTIONS(1049), + [anon_sym_readonly] = ACTIONS(1049), + [anon_sym_local] = ACTIONS(1049), + [anon_sym_unset] = ACTIONS(1051), + [anon_sym_unsetenv] = ACTIONS(1051), + [anon_sym_AMP_GT] = ACTIONS(1043), + [anon_sym_AMP_GT_GT] = ACTIONS(1041), + [anon_sym_LT_AMP] = ACTIONS(1041), + [anon_sym_GT_AMP] = ACTIONS(1041), + [anon_sym_GT_PIPE] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(1055), + [sym_ansi_c_string] = ACTIONS(1055), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), + [sym_test_operator] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1059), + [sym_variable_name] = ACTIONS(1061), + [sym__brace_start] = ACTIONS(437), }, - [321] = { - [sym_redirected_statement] = STATE(2825), - [sym_for_statement] = STATE(2825), - [sym_c_style_for_statement] = STATE(2825), - [sym_while_statement] = STATE(2825), - [sym_if_statement] = STATE(2825), - [sym_case_statement] = STATE(2825), - [sym_function_definition] = STATE(2825), - [sym_compound_statement] = STATE(2825), - [sym_subshell] = STATE(2825), - [sym_pipeline] = STATE(2825), - [sym_list] = STATE(2825), - [sym_negated_command] = STATE(2825), - [sym_test_command] = STATE(2825), - [sym_declaration_command] = STATE(2825), - [sym_unset_command] = STATE(2825), - [sym_command] = STATE(2825), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(648), - [sym_variable_assignments] = STATE(2825), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), - [sym_word] = ACTIONS(7), + [316] = { + [sym_redirected_statement] = STATE(2807), + [sym_for_statement] = STATE(2807), + [sym_c_style_for_statement] = STATE(2807), + [sym_while_statement] = STATE(2807), + [sym_if_statement] = STATE(2807), + [sym_case_statement] = STATE(2807), + [sym_function_definition] = STATE(2807), + [sym_compound_statement] = STATE(2807), + [sym_subshell] = STATE(2807), + [sym_pipeline] = STATE(2807), + [sym_list] = STATE(2807), + [sym_negated_command] = STATE(2807), + [sym_test_command] = STATE(2807), + [sym_declaration_command] = STATE(2807), + [sym_unset_command] = STATE(2807), + [sym_command] = STATE(2807), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(699), + [sym_variable_assignments] = STATE(2807), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [322] = { - [sym__expression] = STATE(1990), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1557), - [sym_translated_string] = STATE(1557), - [sym_number] = STATE(1557), - [sym_simple_expansion] = STATE(1557), - [sym_expansion] = STATE(1557), - [sym_command_substitution] = STATE(1557), - [sym_process_substitution] = STATE(1557), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(1546), - [sym_word] = ACTIONS(220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN_RPAREN] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), - [aux_sym_concatenation_token1] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1103), - [sym_ansi_c_string] = ACTIONS(1103), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), + [317] = { + [sym_redirected_statement] = STATE(2798), + [sym_for_statement] = STATE(2798), + [sym_c_style_for_statement] = STATE(2798), + [sym_while_statement] = STATE(2798), + [sym_if_statement] = STATE(2798), + [sym_case_statement] = STATE(2798), + [sym_function_definition] = STATE(2798), + [sym_compound_statement] = STATE(2798), + [sym_subshell] = STATE(2798), + [sym_pipeline] = STATE(2798), + [sym_list] = STATE(2798), + [sym_negated_command] = STATE(2798), + [sym_test_command] = STATE(2798), + [sym_declaration_command] = STATE(2798), + [sym_unset_command] = STATE(2798), + [sym_command] = STATE(2798), + [sym_command_name] = STATE(490), + [sym_variable_assignment] = STATE(703), + [sym_variable_assignments] = STATE(2798), + [sym_subscript] = STATE(4070), + [sym_file_redirect] = STATE(1585), + [sym_arithmetic_expansion] = STATE(898), + [sym_brace_expression] = STATE(898), + [sym_concatenation] = STATE(1352), + [sym_string] = STATE(898), + [sym_translated_string] = STATE(898), + [sym_number] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [aux_sym_redirected_statement_repeat2] = STATE(3029), + [aux_sym_command_repeat1] = STATE(932), + [aux_sym__literal_repeat1] = STATE(1095), + [sym_word] = ACTIONS(903), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(909), + [anon_sym_typeset] = ACTIONS(909), + [anon_sym_export] = ACTIONS(909), + [anon_sym_readonly] = ACTIONS(909), + [anon_sym_local] = ACTIONS(909), + [anon_sym_unset] = ACTIONS(911), + [anon_sym_unsetenv] = ACTIONS(911), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1111), - [sym__concat] = ACTIONS(1097), - [sym__brace_start] = ACTIONS(182), + [sym_test_operator] = ACTIONS(431), + [sym_file_descriptor] = ACTIONS(433), + [sym_variable_name] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [323] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [318] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(1127), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1131), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(1141), + [sym__brace_start] = ACTIONS(385), }, - [324] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [319] = { + [sym__expression] = STATE(1942), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1665), + [sym_brace_expression] = STATE(1665), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1665), + [sym_translated_string] = STATE(1665), + [sym_number] = STATE(1665), + [sym_simple_expansion] = STATE(1665), + [sym_expansion] = STATE(1665), + [sym_command_substitution] = STATE(1665), + [sym_process_substitution] = STATE(1665), + [aux_sym__literal_repeat1] = STATE(1684), + [aux_sym_concatenation_repeat1] = STATE(1629), + [sym_word] = ACTIONS(1143), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(350), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1149), + [anon_sym_PLUS2] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1151), + [anon_sym_PLUS_PLUS2] = ACTIONS(1151), + [anon_sym_DASH_DASH2] = ACTIONS(1151), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1145), + [aux_sym_concatenation_token1] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1159), + [sym_ansi_c_string] = ACTIONS(1159), + [aux_sym_number_token1] = ACTIONS(322), + [aux_sym_number_token2] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1135), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1167), + [sym__concat] = ACTIONS(1153), + [sym__brace_start] = ACTIONS(340), }, - [325] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1137), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [320] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1139), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(1171), + [sym__brace_start] = ACTIONS(385), }, - [326] = { - [sym__expression] = STATE(2060), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1637), - [sym_brace_expression] = STATE(1637), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1637), - [sym_translated_string] = STATE(1637), - [sym_number] = STATE(1637), - [sym_simple_expansion] = STATE(1637), - [sym_expansion] = STATE(1637), - [sym_command_substitution] = STATE(1637), - [sym_process_substitution] = STATE(1637), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(1606), - [sym_word] = ACTIONS(139), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN_RPAREN] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(152), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), - [aux_sym_concatenation_token1] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1143), - [sym_ansi_c_string] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), + [321] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1145), - [sym__concat] = ACTIONS(1097), - [sym__brace_start] = ACTIONS(182), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(1175), + [sym__brace_start] = ACTIONS(385), }, - [327] = { - [sym__expression] = STATE(2054), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1583), - [sym_brace_expression] = STATE(1583), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1583), - [sym_translated_string] = STATE(1583), - [sym_number] = STATE(1583), - [sym_simple_expansion] = STATE(1583), - [sym_expansion] = STATE(1583), - [sym_command_substitution] = STATE(1583), - [sym_process_substitution] = STATE(1583), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1706), - [sym_word] = ACTIONS(1147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1161), - [sym_ansi_c_string] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), + [322] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(350), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1169), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(350), + [sym__brace_start] = ACTIONS(385), }, - [328] = { - [sym__expression] = STATE(2096), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(1635), - [sym_brace_expression] = STATE(1635), - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(1635), - [sym_translated_string] = STATE(1635), - [sym_number] = STATE(1635), - [sym_simple_expansion] = STATE(1635), - [sym_expansion] = STATE(1635), - [sym_command_substitution] = STATE(1635), - [sym_process_substitution] = STATE(1635), - [aux_sym__literal_repeat1] = STATE(1923), - [aux_sym_concatenation_repeat1] = STATE(1648), - [sym_word] = ACTIONS(596), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(617), - [sym_ansi_c_string] = ACTIONS(617), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [323] = { + [sym__expression] = STATE(2001), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1609), + [sym_brace_expression] = STATE(1609), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1609), + [sym_translated_string] = STATE(1609), + [sym_number] = STATE(1609), + [sym_simple_expansion] = STATE(1609), + [sym_expansion] = STATE(1609), + [sym_command_substitution] = STATE(1609), + [sym_process_substitution] = STATE(1609), + [aux_sym__literal_repeat1] = STATE(1602), + [aux_sym_concatenation_repeat1] = STATE(1677), + [sym_word] = ACTIONS(1177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1181), + [anon_sym_PLUS2] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1183), + [anon_sym_PLUS_PLUS2] = ACTIONS(1183), + [anon_sym_DASH_DASH2] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1145), + [aux_sym_concatenation_token1] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1187), + [sym_ansi_c_string] = ACTIONS(1187), + [aux_sym_number_token1] = ACTIONS(322), + [aux_sym_number_token2] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(633), - [sym__concat] = ACTIONS(1123), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1189), + [sym__concat] = ACTIONS(1153), + [sym__brace_start] = ACTIONS(340), }, - [329] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [324] = { + [sym__expression] = STATE(1976), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1574), + [sym_brace_expression] = STATE(1574), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1574), + [sym_translated_string] = STATE(1574), + [sym_number] = STATE(1574), + [sym_simple_expansion] = STATE(1574), + [sym_expansion] = STATE(1574), + [sym_command_substitution] = STATE(1574), + [sym_process_substitution] = STATE(1574), + [aux_sym__literal_repeat1] = STATE(1653), + [aux_sym_concatenation_repeat1] = STATE(1683), + [sym_word] = ACTIONS(228), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN_RPAREN] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(160), + [sym__special_character] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1193), + [sym_ansi_c_string] = ACTIONS(1193), + [aux_sym_number_token1] = ACTIONS(166), + [aux_sym_number_token2] = ACTIONS(168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(174), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(600), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1195), + [sym__concat] = ACTIONS(1105), + [sym__brace_start] = ACTIONS(186), }, - [330] = { - [sym__expression] = STATE(2130), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), + [325] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1593), + [sym_brace_expression] = STATE(1593), + [sym_concatenation] = STATE(1795), + [sym_string] = STATE(1593), + [sym_translated_string] = STATE(1593), + [sym_number] = STATE(1593), + [sym_simple_expansion] = STATE(1593), + [sym_expansion] = STATE(1593), + [sym_command_substitution] = STATE(1593), + [sym_process_substitution] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(1197), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(1199), + [sym__brace_start] = ACTIONS(385), + }, + [326] = { + [sym__expression] = STATE(1951), + [sym_binary_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_parenthesized_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(1648), + [sym_brace_expression] = STATE(1648), + [sym_concatenation] = STATE(2018), + [sym_string] = STATE(1648), + [sym_translated_string] = STATE(1648), + [sym_number] = STATE(1648), + [sym_simple_expansion] = STATE(1648), + [sym_expansion] = STATE(1648), + [sym_command_substitution] = STATE(1648), + [sym_process_substitution] = STATE(1648), + [aux_sym__literal_repeat1] = STATE(1713), + [aux_sym_concatenation_repeat1] = STATE(1625), + [sym_word] = ACTIONS(346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_RBRACK] = ACTIONS(350), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(272), + [anon_sym_PLUS2] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PLUS_PLUS2] = ACTIONS(274), + [anon_sym_DASH_DASH2] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(367), + [sym_ansi_c_string] = ACTIONS(367), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(383), + [sym__concat] = ACTIONS(1133), + [sym__brace_start] = ACTIONS(385), + }, + [327] = { + [sym__expression] = STATE(1992), + [sym_binary_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), [sym_arithmetic_expansion] = STATE(1599), [sym_brace_expression] = STATE(1599), - [sym_concatenation] = STATE(1623), + [sym_concatenation] = STATE(1947), [sym_string] = STATE(1599), [sym_translated_string] = STATE(1599), [sym_number] = STATE(1599), @@ -50293,157 +49602,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1599), [sym_command_substitution] = STATE(1599), [sym_process_substitution] = STATE(1599), - [aux_sym__literal_repeat1] = STATE(1831), - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym_word] = ACTIONS(1171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_RBRACK_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1179), - [sym_ansi_c_string] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1181), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [331] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), + [aux_sym__literal_repeat1] = STATE(1602), + [aux_sym_concatenation_repeat1] = STATE(1611), + [sym_word] = ACTIONS(306), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(312), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(196), + [anon_sym_PLUS2] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(198), + [anon_sym_PLUS_PLUS2] = ACTIONS(198), + [anon_sym_DASH_DASH2] = ACTIONS(198), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1145), + [aux_sym_concatenation_token1] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1203), + [sym_ansi_c_string] = ACTIONS(1203), + [aux_sym_number_token1] = ACTIONS(322), + [aux_sym_number_token2] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1185), - [sym__brace_start] = ACTIONS(635), + [sym_test_operator] = ACTIONS(1205), + [sym__concat] = ACTIONS(1153), + [sym__brace_start] = ACTIONS(340), }, - [332] = { - [sym__expression] = STATE(2122), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), + [328] = { + [sym__expression] = STATE(1824), + [sym_binary_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_parenthesized_expression] = STATE(1795), [sym_arithmetic_expansion] = STATE(1593), [sym_brace_expression] = STATE(1593), - [sym_concatenation] = STATE(2117), + [sym_concatenation] = STATE(1795), [sym_string] = STATE(1593), [sym_translated_string] = STATE(1593), [sym_number] = STATE(1593), @@ -50451,497 +49685,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1593), [sym_command_substitution] = STATE(1593), [sym_process_substitution] = STATE(1593), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1626), - [sym_word] = ACTIONS(230), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(236), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1189), - [sym_ansi_c_string] = ACTIONS(1189), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), + [aux_sym__literal_repeat1] = STATE(1573), + [aux_sym_concatenation_repeat1] = STATE(1638), + [sym_word] = ACTIONS(1121), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1129), + [anon_sym_PLUS2] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1191), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), + [sym_test_operator] = ACTIONS(1139), + [sym__concat] = ACTIONS(1209), + [sym__brace_start] = ACTIONS(385), }, - [333] = { - [sym__expression] = STATE(2163), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1711), - [sym_brace_expression] = STATE(1711), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1711), - [sym_translated_string] = STATE(1711), - [sym_number] = STATE(1711), - [sym_simple_expansion] = STATE(1711), - [sym_expansion] = STATE(1711), - [sym_command_substitution] = STATE(1711), - [sym_process_substitution] = STATE(1711), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1926), - [sym_word] = ACTIONS(1193), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1197), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1201), - [sym_ansi_c_string] = ACTIONS(1201), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), + [329] = { + [sym__expression] = STATE(2030), + [sym_binary_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1767), + [sym_brace_expression] = STATE(1767), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1767), + [sym_translated_string] = STATE(1767), + [sym_number] = STATE(1767), + [sym_simple_expansion] = STATE(1767), + [sym_expansion] = STATE(1767), + [sym_command_substitution] = STATE(1767), + [sym_process_substitution] = STATE(1767), + [aux_sym__literal_repeat1] = STATE(1602), + [aux_sym_concatenation_repeat1] = STATE(1699), + [sym_word] = ACTIONS(1211), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(147), + [anon_sym_GT_GT] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DASH2] = ACTIONS(1215), + [anon_sym_PLUS2] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_PLUS_PLUS2] = ACTIONS(1217), + [anon_sym_DASH_DASH2] = ACTIONS(1217), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1145), + [aux_sym_concatenation_token1] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(316), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1221), + [sym_ansi_c_string] = ACTIONS(1221), + [aux_sym_number_token1] = ACTIONS(322), + [aux_sym_number_token2] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), + [anon_sym_LT_LPAREN] = ACTIONS(1165), + [anon_sym_GT_LPAREN] = ACTIONS(1165), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1203), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [334] = { - [sym_string] = STATE(354), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_SEMI_SEMI] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1211), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1207), - [anon_sym__] = ACTIONS(1207), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), - }, - [335] = { - [sym_string] = STATE(354), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_SEMI_SEMI] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1211), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1207), - [anon_sym__] = ACTIONS(1207), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), - }, - [336] = { - [sym_string] = STATE(381), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_SEMI_SEMI] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1219), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1223), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(1219), - [anon_sym__] = ACTIONS(1219), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), - }, - [337] = { - [sym_string] = STATE(381), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_SEMI_SEMI] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1219), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1223), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(1219), - [anon_sym__] = ACTIONS(1219), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), + [sym_test_operator] = ACTIONS(1223), + [sym__concat] = ACTIONS(1153), + [sym__brace_start] = ACTIONS(340), }, - [338] = { - [aux_sym_concatenation_repeat1] = STATE(345), + [330] = { + [sym_string] = STATE(349), [sym_word] = ACTIONS(1225), [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1225), [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1225), + [anon_sym_DASH_EQ] = ACTIONS(1225), + [anon_sym_STAR_EQ] = ACTIONS(1225), + [anon_sym_SLASH_EQ] = ACTIONS(1225), + [anon_sym_PERCENT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_EQ] = ACTIONS(1225), + [anon_sym_CARET_EQ] = ACTIONS(1225), + [anon_sym_PIPE_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1225), [anon_sym_SEMI_SEMI] = ACTIONS(1225), [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1225), [anon_sym_AMP_GT] = ACTIONS(1225), [anon_sym_AMP_GT_GT] = ACTIONS(1225), [anon_sym_LT_AMP] = ACTIONS(1225), @@ -50950,18 +49882,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(1225), [anon_sym_LF] = ACTIONS(1225), [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), [anon_sym_QMARK] = ACTIONS(1227), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1227), [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1229), [sym_raw_string] = ACTIONS(1225), [sym_ansi_c_string] = ACTIONS(1225), [aux_sym_number_token1] = ACTIONS(1225), [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1227), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), [anon_sym_BQUOTE] = ACTIONS(1225), @@ -50969,201 +49901,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1225), [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1231), + [anon_sym_AT2] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [sym_test_operator] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, - [339] = { - [sym_string] = STATE(429), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), + [331] = { + [sym_string] = STATE(349), + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1240), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1231), + [anon_sym_AT2] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [sym_test_operator] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), }, - [340] = { - [sym_string] = STATE(429), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1215), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), + [332] = { + [sym_string] = STATE(382), + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1240), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), + [aux_sym__simple_variable_name_token1] = ACTIONS(1243), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1243), + [anon_sym_AT2] = ACTIONS(1239), + [anon_sym_0] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [sym_test_operator] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), }, - [341] = { - [aux_sym_concatenation_repeat1] = STATE(345), + [333] = { + [sym_string] = STATE(382), [sym_word] = ACTIONS(1225), [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1225), + [anon_sym_DASH_EQ] = ACTIONS(1225), + [anon_sym_STAR_EQ] = ACTIONS(1225), + [anon_sym_SLASH_EQ] = ACTIONS(1225), + [anon_sym_PERCENT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_EQ] = ACTIONS(1225), + [anon_sym_CARET_EQ] = ACTIONS(1225), + [anon_sym_PIPE_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), [anon_sym_SEMI_SEMI] = ACTIONS(1225), [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1225), [anon_sym_AMP_GT] = ACTIONS(1225), [anon_sym_AMP_GT_GT] = ACTIONS(1225), [anon_sym_LT_AMP] = ACTIONS(1225), @@ -51172,18 +50114,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(1225), [anon_sym_LF] = ACTIONS(1225), [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1239), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1239), [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1241), [sym_raw_string] = ACTIONS(1225), [sym_ansi_c_string] = ACTIONS(1225), [aux_sym_number_token1] = ACTIONS(1225), [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1239), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), [anon_sym_BQUOTE] = ACTIONS(1225), @@ -51191,72 +50133,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1225), [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [aux_sym__simple_variable_name_token1] = ACTIONS(1243), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1243), + [anon_sym_AT2] = ACTIONS(1239), + [anon_sym_0] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [sym_test_operator] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, - [342] = { - [aux_sym_concatenation_repeat1] = STATE(345), + [334] = { + [sym_string] = STATE(410), + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1245), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1249), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1249), + [anon_sym_AT2] = ACTIONS(1245), + [anon_sym_0] = ACTIONS(1245), + [anon_sym__] = ACTIONS(1245), + [sym_test_operator] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), + }, + [335] = { + [sym_string] = STATE(410), [sym_word] = ACTIONS(1225), [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1225), + [anon_sym_DASH_EQ] = ACTIONS(1225), + [anon_sym_STAR_EQ] = ACTIONS(1225), + [anon_sym_SLASH_EQ] = ACTIONS(1225), + [anon_sym_PERCENT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_EQ] = ACTIONS(1225), + [anon_sym_CARET_EQ] = ACTIONS(1225), + [anon_sym_PIPE_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_STAR_STAR] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(1225), [anon_sym_AMP_GT] = ACTIONS(1225), [anon_sym_AMP_GT_GT] = ACTIONS(1225), [anon_sym_LT_AMP] = ACTIONS(1225), [anon_sym_GT_AMP] = ACTIONS(1225), [anon_sym_GT_PIPE] = ACTIONS(1225), [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1245), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1245), [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1247), [sym_raw_string] = ACTIONS(1225), [sym_ansi_c_string] = ACTIONS(1225), [aux_sym_number_token1] = ACTIONS(1225), [aux_sym_number_token2] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1245), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), [anon_sym_BQUOTE] = ACTIONS(1225), @@ -51264,667 +50281,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1225), [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [aux_sym__simple_variable_name_token1] = ACTIONS(1249), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1249), + [anon_sym_AT2] = ACTIONS(1245), + [anon_sym_0] = ACTIONS(1245), + [anon_sym__] = ACTIONS(1245), + [sym_test_operator] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, - [343] = { + [336] = { [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [344] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), + [337] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [345] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), + [338] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1256), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [346] = { - [aux_sym_concatenation_repeat1] = STATE(345), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), + [339] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [347] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), + [340] = { + [aux_sym_concatenation_repeat1] = STATE(343), + [sym_word] = ACTIONS(1262), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_EQ] = ACTIONS(1262), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_PIPE_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_ansi_c_string] = ACTIONS(1262), + [aux_sym_number_token1] = ACTIONS(1262), + [aux_sym_number_token2] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1265), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [sym__concat] = ACTIONS(184), + [sym__bare_dollar] = ACTIONS(1264), + [sym__brace_start] = ACTIONS(1264), }, - [348] = { - [aux_sym_concatenation_repeat1] = STATE(359), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), + [341] = { + [aux_sym_concatenation_repeat1] = STATE(360), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(338), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [349] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [342] = { + [aux_sym_concatenation_repeat1] = STATE(342), + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_test_operator] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1273), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), }, - [350] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LF] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [351] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [352] = { + [343] = { + [aux_sym_concatenation_repeat1] = STATE(342), [sym_word] = ACTIONS(1276), [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), [anon_sym_RPAREN_RPAREN] = ACTIONS(1276), @@ -51975,7 +50856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1276), [anon_sym_QMARK] = ACTIONS(1276), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(158), [anon_sym_DOLLAR] = ACTIONS(1276), [sym__special_character] = ACTIONS(1276), [anon_sym_DQUOTE] = ACTIONS(1276), @@ -51992,1091 +50873,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_test_operator] = ACTIONS(1276), [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), + [sym__concat] = ACTIONS(1280), [sym__bare_dollar] = ACTIONS(1278), [sym__brace_start] = ACTIONS(1278), }, - [353] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1280), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), - }, - [354] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), + [344] = { + [aux_sym_concatenation_repeat1] = STATE(342), + [sym_word] = ACTIONS(1282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1282), + [anon_sym_DASH_EQ] = ACTIONS(1282), + [anon_sym_STAR_EQ] = ACTIONS(1282), + [anon_sym_SLASH_EQ] = ACTIONS(1282), + [anon_sym_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_EQ] = ACTIONS(1282), + [anon_sym_CARET_EQ] = ACTIONS(1282), + [anon_sym_PIPE_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_AMP] = ACTIONS(1282), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_PERCENT] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_SEMI_SEMI] = ACTIONS(1282), + [anon_sym_PIPE_AMP] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(1282), + [anon_sym_LT_AMP] = ACTIONS(1282), + [anon_sym_GT_AMP] = ACTIONS(1282), + [anon_sym_GT_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_QMARK] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), + [aux_sym_concatenation_token1] = ACTIONS(158), + [anon_sym_DOLLAR] = ACTIONS(1282), + [sym__special_character] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_raw_string] = ACTIONS(1282), + [sym_ansi_c_string] = ACTIONS(1282), + [aux_sym_number_token1] = ACTIONS(1282), + [aux_sym_number_token2] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), + [anon_sym_LT_LPAREN] = ACTIONS(1282), + [anon_sym_GT_LPAREN] = ACTIONS(1282), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(1284), [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym__bare_dollar] = ACTIONS(1284), + [sym__brace_start] = ACTIONS(1284), }, - [355] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [345] = { + [sym_word] = ACTIONS(1288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_EQ] = ACTIONS(1288), + [anon_sym_DASH_EQ] = ACTIONS(1288), + [anon_sym_STAR_EQ] = ACTIONS(1288), + [anon_sym_SLASH_EQ] = ACTIONS(1288), + [anon_sym_PERCENT_EQ] = ACTIONS(1288), + [anon_sym_LT_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_GT_EQ] = ACTIONS(1288), + [anon_sym_AMP_EQ] = ACTIONS(1288), + [anon_sym_CARET_EQ] = ACTIONS(1288), + [anon_sym_PIPE_EQ] = ACTIONS(1288), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_EQ] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_SEMI_SEMI] = ACTIONS(1288), + [anon_sym_PIPE_AMP] = ACTIONS(1288), + [anon_sym_EQ_TILDE] = ACTIONS(1288), + [anon_sym_AMP_GT] = ACTIONS(1288), + [anon_sym_AMP_GT_GT] = ACTIONS(1288), + [anon_sym_LT_AMP] = ACTIONS(1288), + [anon_sym_GT_AMP] = ACTIONS(1288), + [anon_sym_GT_PIPE] = ACTIONS(1288), + [anon_sym_LT_LT_DASH] = ACTIONS(1288), + [anon_sym_LF] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1291), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [356] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), - }, - [357] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_SEMI_SEMI] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1288), + [sym__special_character] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_raw_string] = ACTIONS(1288), + [sym_ansi_c_string] = ACTIONS(1288), + [aux_sym_number_token1] = ACTIONS(1288), + [aux_sym_number_token2] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), + [anon_sym_LT_LPAREN] = ACTIONS(1288), + [anon_sym_GT_LPAREN] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1288), + [sym_file_descriptor] = ACTIONS(1290), + [sym__concat] = ACTIONS(1290), + [sym__bare_dollar] = ACTIONS(1290), + [sym__brace_start] = ACTIONS(1290), }, - [358] = { - [sym_word] = ACTIONS(1302), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_LT_AMP] = ACTIONS(1302), - [anon_sym_GT_AMP] = ACTIONS(1302), - [anon_sym_GT_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), - [aux_sym_concatenation_token1] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), - [sym_ansi_c_string] = ACTIONS(1302), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), + [346] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_GT_EQ] = ACTIONS(1292), + [anon_sym_AMP_EQ] = ACTIONS(1292), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_SEMI_SEMI] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1292), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1292), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1292), + [anon_sym_LT_LT_DASH] = ACTIONS(1292), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), + [aux_sym_concatenation_token1] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_raw_string] = ACTIONS(1292), + [sym_ansi_c_string] = ACTIONS(1292), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [359] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), + [347] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [aux_sym_concatenation_token1] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_ansi_c_string] = ACTIONS(1296), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), }, - [360] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), + [348] = { + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_EQ] = ACTIONS(1300), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [aux_sym_concatenation_token1] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_ansi_c_string] = ACTIONS(1300), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1308), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), + [sym_test_operator] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), }, - [361] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), + [349] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_LF] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), + [sym_test_operator] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), }, - [362] = { - [aux_sym_concatenation_repeat1] = STATE(359), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), + [350] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_EQ] = ACTIONS(1308), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [aux_sym_concatenation_token1] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1308), + [sym_ansi_c_string] = ACTIONS(1308), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [sym_test_operator] = ACTIONS(1308), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), }, - [363] = { + [351] = { [aux_sym_concatenation_repeat1] = STATE(360), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(338), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [364] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), + [352] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), }, - [365] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), + [353] = { + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_EQ] = ACTIONS(1316), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1316), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1316), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), }, - [366] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), + [354] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_LF] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), + [aux_sym_concatenation_token1] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_raw_string] = ACTIONS(1320), + [sym_ansi_c_string] = ACTIONS(1320), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), + [anon_sym_LT_LPAREN] = ACTIONS(1320), + [anon_sym_GT_LPAREN] = ACTIONS(1320), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), + [sym_test_operator] = ACTIONS(1320), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), }, - [367] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1326), - [anon_sym_GT_AMP] = ACTIONS(1326), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), + [355] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [aux_sym_concatenation_token1] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1326), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), + [sym_test_operator] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1327), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), }, - [368] = { + [356] = { [sym_word] = ACTIONS(1330), [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), [anon_sym_RPAREN_RPAREN] = ACTIONS(1330), @@ -53148,7 +51814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1332), [sym__brace_start] = ACTIONS(1332), }, - [369] = { + [357] = { [sym_word] = ACTIONS(1334), [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), [anon_sym_RPAREN_RPAREN] = ACTIONS(1334), @@ -53220,79 +51886,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1336), [sym__brace_start] = ACTIONS(1336), }, - [370] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), + [358] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_test_operator] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), }, - [371] = { + [359] = { [sym_word] = ACTIONS(1338), [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), [anon_sym_RPAREN_RPAREN] = ACTIONS(1338), @@ -53364,437 +52030,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1340), [sym__brace_start] = ACTIONS(1340), }, - [372] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1342), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [373] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_EQ] = ACTIONS(1346), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_LT_LT_LT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), - [aux_sym_concatenation_token1] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [sym_ansi_c_string] = ACTIONS(1346), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1346), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), - }, - [374] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [375] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), + [360] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1282), + [anon_sym_DASH_EQ] = ACTIONS(1282), + [anon_sym_STAR_EQ] = ACTIONS(1282), + [anon_sym_SLASH_EQ] = ACTIONS(1282), + [anon_sym_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_EQ] = ACTIONS(1282), + [anon_sym_CARET_EQ] = ACTIONS(1282), + [anon_sym_PIPE_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_AMP] = ACTIONS(1282), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_PERCENT] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_SEMI_SEMI] = ACTIONS(1282), + [anon_sym_PIPE_AMP] = ACTIONS(1282), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(1282), + [anon_sym_LT_AMP] = ACTIONS(1282), + [anon_sym_GT_AMP] = ACTIONS(1282), + [anon_sym_GT_PIPE] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(1282), + [anon_sym_LF] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_QMARK] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(1282), + [sym__special_character] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_raw_string] = ACTIONS(1282), + [sym_ansi_c_string] = ACTIONS(1282), + [aux_sym_number_token1] = ACTIONS(1282), + [aux_sym_number_token2] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), + [anon_sym_LT_LPAREN] = ACTIONS(1282), + [anon_sym_GT_LPAREN] = ACTIONS(1282), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(1284), + [sym__concat] = ACTIONS(1342), + [sym__bare_dollar] = ACTIONS(1284), + [sym__brace_start] = ACTIONS(1284), }, - [376] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), + [361] = { + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [aux_sym_concatenation_token1] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1271), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), }, - [377] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), + [362] = { + [aux_sym_concatenation_repeat1] = STATE(355), + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_SEMI_SEMI] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1276), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1276), + [anon_sym_LT_LT_DASH] = ACTIONS(1276), + [anon_sym_LF] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1276), + [sym_ansi_c_string] = ACTIONS(1276), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), + [anon_sym_LT_LPAREN] = ACTIONS(1276), + [anon_sym_GT_LPAREN] = ACTIONS(1276), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), + [sym_test_operator] = ACTIONS(1276), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1344), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, - [378] = { + [363] = { [sym_word] = ACTIONS(1346), [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1346), [anon_sym_SEMI] = ACTIONS(1346), [anon_sym_EQ] = ACTIONS(1346), [anon_sym_PLUS_PLUS] = ACTIONS(1346), @@ -53863,220 +52318,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1348), [sym__brace_start] = ACTIONS(1348), }, - [379] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), + [364] = { + [aux_sym_concatenation_repeat1] = STATE(362), + [sym_word] = ACTIONS(1262), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_EQ] = ACTIONS(1262), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_PIPE_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [aux_sym_concatenation_token1] = ACTIONS(314), + [anon_sym_DOLLAR] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_ansi_c_string] = ACTIONS(1262), + [aux_sym_number_token1] = ACTIONS(1262), + [aux_sym_number_token2] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [sym__concat] = ACTIONS(338), + [sym__bare_dollar] = ACTIONS(1264), + [sym__brace_start] = ACTIONS(1264), + }, + [365] = { + [sym_word] = ACTIONS(1350), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_STAR_STAR] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_SEMI_SEMI] = ACTIONS(1350), + [anon_sym_PIPE_AMP] = ACTIONS(1350), + [anon_sym_EQ_TILDE] = ACTIONS(1350), + [anon_sym_AMP_GT] = ACTIONS(1350), + [anon_sym_AMP_GT_GT] = ACTIONS(1350), + [anon_sym_LT_AMP] = ACTIONS(1350), + [anon_sym_GT_AMP] = ACTIONS(1350), + [anon_sym_GT_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT_DASH] = ACTIONS(1350), + [anon_sym_LF] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), + [aux_sym_concatenation_token1] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_raw_string] = ACTIONS(1350), + [sym_ansi_c_string] = ACTIONS(1350), + [aux_sym_number_token1] = ACTIONS(1350), + [aux_sym_number_token2] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), + [anon_sym_LT_LPAREN] = ACTIONS(1350), + [anon_sym_GT_LPAREN] = ACTIONS(1350), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), + [sym_test_operator] = ACTIONS(1350), + [sym_file_descriptor] = ACTIONS(1352), + [sym__concat] = ACTIONS(1352), + [sym__bare_dollar] = ACTIONS(1352), + [sym__brace_start] = ACTIONS(1352), }, - [380] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), + [366] = { + [sym_word] = ACTIONS(1354), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_STAR_STAR] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_SEMI_SEMI] = ACTIONS(1354), + [anon_sym_PIPE_AMP] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_AMP_GT] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1354), + [anon_sym_LT_AMP] = ACTIONS(1354), + [anon_sym_GT_AMP] = ACTIONS(1354), + [anon_sym_GT_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT_DASH] = ACTIONS(1354), + [anon_sym_LF] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), + [aux_sym_concatenation_token1] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [sym__special_character] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_raw_string] = ACTIONS(1354), + [sym_ansi_c_string] = ACTIONS(1354), + [aux_sym_number_token1] = ACTIONS(1354), + [aux_sym_number_token2] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), + [anon_sym_LT_LPAREN] = ACTIONS(1354), + [anon_sym_GT_LPAREN] = ACTIONS(1354), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1342), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), + [sym_test_operator] = ACTIONS(1354), + [sym_file_descriptor] = ACTIONS(1356), + [sym__concat] = ACTIONS(1356), + [sym__bare_dollar] = ACTIONS(1356), + [sym__brace_start] = ACTIONS(1356), }, - [381] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), + [367] = { + [sym_word] = ACTIONS(1358), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_STAR_STAR] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [aux_sym_concatenation_token1] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_ansi_c_string] = ACTIONS(1358), + [aux_sym_number_token1] = ACTIONS(1358), + [aux_sym_number_token2] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym__bare_dollar] = ACTIONS(1360), + [sym__brace_start] = ACTIONS(1360), }, - [382] = { + [368] = { [sym_word] = ACTIONS(1330), [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), [anon_sym_SEMI] = ACTIONS(1330), @@ -54147,149 +52677,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1332), [sym__brace_start] = ACTIONS(1332), }, - [383] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), + [369] = { + [sym_word] = ACTIONS(1288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_EQ] = ACTIONS(1288), + [anon_sym_DASH_EQ] = ACTIONS(1288), + [anon_sym_STAR_EQ] = ACTIONS(1288), + [anon_sym_SLASH_EQ] = ACTIONS(1288), + [anon_sym_PERCENT_EQ] = ACTIONS(1288), + [anon_sym_LT_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_GT_EQ] = ACTIONS(1288), + [anon_sym_AMP_EQ] = ACTIONS(1288), + [anon_sym_CARET_EQ] = ACTIONS(1288), + [anon_sym_PIPE_EQ] = ACTIONS(1288), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1288), + [anon_sym_GT_EQ] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_SEMI_SEMI] = ACTIONS(1288), + [anon_sym_PIPE_AMP] = ACTIONS(1288), + [anon_sym_EQ_TILDE] = ACTIONS(1288), + [anon_sym_AMP_GT] = ACTIONS(1288), + [anon_sym_AMP_GT_GT] = ACTIONS(1288), + [anon_sym_LT_AMP] = ACTIONS(1288), + [anon_sym_GT_AMP] = ACTIONS(1288), + [anon_sym_GT_PIPE] = ACTIONS(1288), + [anon_sym_LT_LT_DASH] = ACTIONS(1288), + [anon_sym_LF] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), + [aux_sym_concatenation_token1] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1288), + [sym__special_character] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_raw_string] = ACTIONS(1288), + [sym_ansi_c_string] = ACTIONS(1288), + [aux_sym_number_token1] = ACTIONS(1288), + [aux_sym_number_token2] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), + [anon_sym_LT_LPAREN] = ACTIONS(1288), + [anon_sym_GT_LPAREN] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), + [sym_test_operator] = ACTIONS(1288), + [sym_file_descriptor] = ACTIONS(1290), + [sym__concat] = ACTIONS(1290), + [sym__bare_dollar] = ACTIONS(1290), + [sym__brace_start] = ACTIONS(1290), }, - [384] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LF] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), + [370] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_GT_EQ] = ACTIONS(1292), + [anon_sym_AMP_EQ] = ACTIONS(1292), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_SEMI_SEMI] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1292), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1292), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1292), + [anon_sym_LT_LT_DASH] = ACTIONS(1292), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), + [aux_sym_concatenation_token1] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_raw_string] = ACTIONS(1292), + [sym_ansi_c_string] = ACTIONS(1292), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [sym_test_operator] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [385] = { + [371] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [372] = { + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_EQ] = ACTIONS(1316), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1316), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1316), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), + }, + [373] = { + [sym_word] = ACTIONS(1350), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_STAR_STAR] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_SEMI_SEMI] = ACTIONS(1350), + [anon_sym_PIPE_AMP] = ACTIONS(1350), + [anon_sym_EQ_TILDE] = ACTIONS(1350), + [anon_sym_AMP_GT] = ACTIONS(1350), + [anon_sym_AMP_GT_GT] = ACTIONS(1350), + [anon_sym_LT_AMP] = ACTIONS(1350), + [anon_sym_GT_AMP] = ACTIONS(1350), + [anon_sym_GT_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT_DASH] = ACTIONS(1350), + [anon_sym_LF] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), + [aux_sym_concatenation_token1] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [sym__special_character] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_raw_string] = ACTIONS(1350), + [sym_ansi_c_string] = ACTIONS(1350), + [aux_sym_number_token1] = ACTIONS(1350), + [aux_sym_number_token2] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), + [anon_sym_LT_LPAREN] = ACTIONS(1350), + [anon_sym_GT_LPAREN] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1350), + [sym_file_descriptor] = ACTIONS(1352), + [sym__concat] = ACTIONS(1352), + [sym__bare_dollar] = ACTIONS(1352), + [sym__brace_start] = ACTIONS(1352), + }, + [374] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN_RPAREN] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym__special_character] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_raw_string] = ACTIONS(149), + [sym_ansi_c_string] = ACTIONS(149), + [aux_sym_number_token1] = ACTIONS(149), + [aux_sym_number_token2] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(149), + [anon_sym_GT_LPAREN] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(151), + [sym_file_descriptor] = ACTIONS(182), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(182), + }, + [375] = { + [sym_word] = ACTIONS(1346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_EQ] = ACTIONS(1346), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_SEMI_SEMI] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [anon_sym_LF] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), + [aux_sym_concatenation_token1] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [sym_ansi_c_string] = ACTIONS(1346), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1346), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), + }, + [376] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_RPAREN_RPAREN] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym__special_character] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_raw_string] = ACTIONS(149), + [sym_ansi_c_string] = ACTIONS(149), + [aux_sym_number_token1] = ACTIONS(149), + [aux_sym_number_token2] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(149), + [anon_sym_GT_LPAREN] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(151), + [sym_file_descriptor] = ACTIONS(182), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(182), + }, + [377] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [378] = { [sym_word] = ACTIONS(1334), [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1334), @@ -54360,7 +53387,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1336), [sym__brace_start] = ACTIONS(1336), }, + [379] = { + [sym_word] = ACTIONS(1358), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_STAR_STAR] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [aux_sym_concatenation_token1] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_ansi_c_string] = ACTIONS(1358), + [aux_sym_number_token1] = ACTIONS(1358), + [aux_sym_number_token2] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym__bare_dollar] = ACTIONS(1360), + [sym__brace_start] = ACTIONS(1360), + }, + [380] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_EQ] = ACTIONS(1308), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [aux_sym_concatenation_token1] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1308), + [sym_ansi_c_string] = ACTIONS(1308), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1308), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [381] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [aux_sym_concatenation_token1] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_ansi_c_string] = ACTIONS(1296), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), + }, + [382] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_LF] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [383] = { + [sym_word] = ACTIONS(1354), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_STAR_STAR] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_SEMI_SEMI] = ACTIONS(1354), + [anon_sym_PIPE_AMP] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_AMP_GT] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1354), + [anon_sym_LT_AMP] = ACTIONS(1354), + [anon_sym_GT_AMP] = ACTIONS(1354), + [anon_sym_GT_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT_DASH] = ACTIONS(1354), + [anon_sym_LF] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), + [aux_sym_concatenation_token1] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [sym__special_character] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_raw_string] = ACTIONS(1354), + [sym_ansi_c_string] = ACTIONS(1354), + [aux_sym_number_token1] = ACTIONS(1354), + [aux_sym_number_token2] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), + [anon_sym_LT_LPAREN] = ACTIONS(1354), + [anon_sym_GT_LPAREN] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1354), + [sym_file_descriptor] = ACTIONS(1356), + [sym__concat] = ACTIONS(1356), + [sym__bare_dollar] = ACTIONS(1356), + [sym__brace_start] = ACTIONS(1356), + }, + [384] = { + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_EQ] = ACTIONS(1300), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [aux_sym_concatenation_token1] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_ansi_c_string] = ACTIONS(1300), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), + }, + [385] = { + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [aux_sym_concatenation_token1] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1271), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), + }, [386] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_word] = ACTIONS(1364), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1364), + [anon_sym_DASH_EQ] = ACTIONS(1364), + [anon_sym_STAR_EQ] = ACTIONS(1364), + [anon_sym_SLASH_EQ] = ACTIONS(1364), + [anon_sym_PERCENT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1364), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_GT_PIPE] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [sym_ansi_c_string] = ACTIONS(1364), + [aux_sym_number_token1] = ACTIONS(1364), + [aux_sym_number_token2] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1364), + [sym_file_descriptor] = ACTIONS(1369), + [sym__bare_dollar] = ACTIONS(1369), + [sym__brace_start] = ACTIONS(1369), + }, + [387] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_LF] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), + [aux_sym_concatenation_token1] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_raw_string] = ACTIONS(1320), + [sym_ansi_c_string] = ACTIONS(1320), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), + [anon_sym_LT_LPAREN] = ACTIONS(1320), + [anon_sym_GT_LPAREN] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1320), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), + }, + [388] = { [sym_word] = ACTIONS(1338), [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), [anon_sym_SEMI] = ACTIONS(1338), @@ -54431,152 +54097,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1340), [sym__brace_start] = ACTIONS(1340), }, - [387] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), + [389] = { + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [388] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), + [390] = { + [aux_sym__literal_repeat1] = STATE(394), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_GT_EQ] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(149), + [anon_sym_PIPE_AMP] = ACTIONS(149), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(149), + [anon_sym_LT_AMP] = ACTIONS(149), + [anon_sym_GT_AMP] = ACTIONS(149), + [anon_sym_GT_PIPE] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(149), + [anon_sym_LT_LT_LT] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym__special_character] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_raw_string] = ACTIONS(149), + [sym_ansi_c_string] = ACTIONS(149), + [aux_sym_number_token1] = ACTIONS(149), + [aux_sym_number_token2] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(149), + [anon_sym_LT_LPAREN] = ACTIONS(149), + [anon_sym_GT_LPAREN] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_test_operator] = ACTIONS(151), + [sym_file_descriptor] = ACTIONS(182), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(182), }, - [389] = { + [391] = { + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), + }, + [392] = { + [sym_word] = ACTIONS(1262), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_EQ] = ACTIONS(1262), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_PIPE_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_ansi_c_string] = ACTIONS(1262), + [aux_sym_number_token1] = ACTIONS(1262), + [aux_sym_number_token2] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [sym__bare_dollar] = ACTIONS(1264), + [sym__brace_start] = ACTIONS(1264), + }, + [393] = { + [aux_sym_concatenation_repeat1] = STATE(396), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1260), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_PIPE_PIPE] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [anon_sym_GT_PIPE] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1260), + [sym_ansi_c_string] = ACTIONS(1260), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1260), + [anon_sym_LT_LPAREN] = ACTIONS(1260), + [anon_sym_GT_LPAREN] = ACTIONS(1260), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1375), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(359), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), + }, + [394] = { + [aux_sym__literal_repeat1] = STATE(394), + [sym_word] = ACTIONS(1364), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1364), + [anon_sym_DASH_EQ] = ACTIONS(1364), + [anon_sym_STAR_EQ] = ACTIONS(1364), + [anon_sym_SLASH_EQ] = ACTIONS(1364), + [anon_sym_PERCENT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1364), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_GT_PIPE] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [sym_ansi_c_string] = ACTIONS(1364), + [aux_sym_number_token1] = ACTIONS(1364), + [aux_sym_number_token2] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(1364), + [sym_file_descriptor] = ACTIONS(1369), + [sym__bare_dollar] = ACTIONS(1369), + [sym__brace_start] = ACTIONS(1369), + }, + [395] = { + [aux_sym_concatenation_repeat1] = STATE(399), [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), [anon_sym_EQ] = ACTIONS(1276), [anon_sym_PLUS_PLUS] = ACTIONS(1276), [anon_sym_DASH_DASH] = ACTIONS(1276), @@ -54585,17 +54529,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(1276), [anon_sym_SLASH_EQ] = ACTIONS(1276), [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_EQ] = ACTIONS(1278), [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1278), [anon_sym_EQ_EQ] = ACTIONS(1276), [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_AMP] = ACTIONS(1278), + [anon_sym_PIPE_PIPE] = ACTIONS(1278), [anon_sym_LT_LT] = ACTIONS(1276), [anon_sym_GT_GT] = ACTIONS(1276), [anon_sym_PLUS] = ACTIONS(1276), @@ -54606,2193 +54550,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1276), [anon_sym_LT] = ACTIONS(1276), [anon_sym_GT] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1278), [anon_sym_EQ_TILDE] = ACTIONS(1276), [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1278), + [anon_sym_LT_AMP] = ACTIONS(1278), + [anon_sym_GT_AMP] = ACTIONS(1278), + [anon_sym_GT_PIPE] = ACTIONS(1278), + [anon_sym_LT_LT_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), [anon_sym_AMP] = ACTIONS(1276), [anon_sym_CARET] = ACTIONS(1276), [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), + [aux_sym_concatenation_token1] = ACTIONS(359), [anon_sym_DOLLAR] = ACTIONS(1276), [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_raw_string] = ACTIONS(1278), + [sym_ansi_c_string] = ACTIONS(1278), + [aux_sym_number_token1] = ACTIONS(1276), [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1278), + [anon_sym_GT_LPAREN] = ACTIONS(1278), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1278), [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), + [sym__concat] = ACTIONS(1383), [sym__bare_dollar] = ACTIONS(1278), [sym__brace_start] = ACTIONS(1278), }, - [390] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1280), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), + [396] = { + [aux_sym_concatenation_repeat1] = STATE(399), + [sym_word] = ACTIONS(1282), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), + [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1282), + [anon_sym_DASH_EQ] = ACTIONS(1282), + [anon_sym_STAR_EQ] = ACTIONS(1282), + [anon_sym_SLASH_EQ] = ACTIONS(1282), + [anon_sym_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_EQ] = ACTIONS(1284), + [anon_sym_GT_GT_EQ] = ACTIONS(1284), + [anon_sym_AMP_EQ] = ACTIONS(1284), + [anon_sym_CARET_EQ] = ACTIONS(1282), + [anon_sym_PIPE_EQ] = ACTIONS(1284), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT_EQ] = ACTIONS(1284), + [anon_sym_GT_EQ] = ACTIONS(1284), + [anon_sym_AMP_AMP] = ACTIONS(1284), + [anon_sym_PIPE_PIPE] = ACTIONS(1284), + [anon_sym_LT_LT] = ACTIONS(1282), + [anon_sym_GT_GT] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym_PERCENT] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_GT] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_PIPE_AMP] = ACTIONS(1284), + [anon_sym_RBRACK] = ACTIONS(1284), + [anon_sym_EQ_TILDE] = ACTIONS(1282), + [anon_sym_AMP_GT] = ACTIONS(1282), + [anon_sym_AMP_GT_GT] = ACTIONS(1284), + [anon_sym_LT_AMP] = ACTIONS(1284), + [anon_sym_GT_AMP] = ACTIONS(1284), + [anon_sym_GT_PIPE] = ACTIONS(1284), + [anon_sym_LT_LT_DASH] = ACTIONS(1284), + [anon_sym_LT_LT_LT] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_QMARK] = ACTIONS(1282), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1282), + [sym__special_character] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_raw_string] = ACTIONS(1284), + [sym_ansi_c_string] = ACTIONS(1284), + [aux_sym_number_token1] = ACTIONS(1282), + [aux_sym_number_token2] = ACTIONS(1282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), + [anon_sym_LT_LPAREN] = ACTIONS(1284), + [anon_sym_GT_LPAREN] = ACTIONS(1284), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1284), + [sym_file_descriptor] = ACTIONS(1284), + [sym__concat] = ACTIONS(1385), + [sym__bare_dollar] = ACTIONS(1284), + [sym__brace_start] = ACTIONS(1284), }, - [391] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), + [397] = { + [aux_sym_concatenation_repeat1] = STATE(396), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1260), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_PIPE_PIPE] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [anon_sym_GT_PIPE] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1260), + [sym_ansi_c_string] = ACTIONS(1260), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1260), + [anon_sym_LT_LPAREN] = ACTIONS(1260), + [anon_sym_GT_LPAREN] = ACTIONS(1260), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1375), + [sym_file_descriptor] = ACTIONS(1260), + [sym__concat] = ACTIONS(359), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), + }, + [398] = { + [aux_sym_concatenation_repeat1] = STATE(395), + [sym_word] = ACTIONS(1262), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1264), + [anon_sym_GT_GT_EQ] = ACTIONS(1264), + [anon_sym_AMP_EQ] = ACTIONS(1264), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_PIPE_EQ] = ACTIONS(1264), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1264), + [anon_sym_GT_EQ] = ACTIONS(1264), + [anon_sym_AMP_AMP] = ACTIONS(1264), + [anon_sym_PIPE_PIPE] = ACTIONS(1264), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1264), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1264), + [anon_sym_LT_AMP] = ACTIONS(1264), + [anon_sym_GT_AMP] = ACTIONS(1264), + [anon_sym_GT_PIPE] = ACTIONS(1264), + [anon_sym_LT_LT_DASH] = ACTIONS(1264), + [anon_sym_LT_LT_LT] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_raw_string] = ACTIONS(1264), + [sym_ansi_c_string] = ACTIONS(1264), + [aux_sym_number_token1] = ACTIONS(1262), + [aux_sym_number_token2] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), + [anon_sym_LT_LPAREN] = ACTIONS(1264), + [anon_sym_GT_LPAREN] = ACTIONS(1264), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1264), + [sym_file_descriptor] = ACTIONS(1264), + [sym__concat] = ACTIONS(359), + [sym__bare_dollar] = ACTIONS(1264), + [sym__brace_start] = ACTIONS(1264), + }, + [399] = { + [aux_sym_concatenation_repeat1] = STATE(399), + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_EQ] = ACTIONS(1271), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [aux_sym_concatenation_token1] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1271), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1387), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), + }, + [400] = { + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), + [sym_test_operator] = ACTIONS(1255), + [sym_file_descriptor] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1260), + [sym__brace_start] = ACTIONS(1260), }, - [392] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_SEMI_SEMI] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), + [401] = { + [sym_word] = ACTIONS(1262), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_EQ] = ACTIONS(1262), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_PIPE_EQ] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_STAR_STAR] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_PIPE] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_ansi_c_string] = ACTIONS(1262), + [aux_sym_number_token1] = ACTIONS(1262), + [aux_sym_number_token2] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [sym__bare_dollar] = ACTIONS(1264), + [sym__brace_start] = ACTIONS(1264), }, - [393] = { - [sym_word] = ACTIONS(1302), + [402] = { + [sym_word] = ACTIONS(1346), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_GT_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), + [aux_sym_concatenation_token1] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [sym_ansi_c_string] = ACTIONS(1348), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1348), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), + }, + [403] = { + [sym_word] = ACTIONS(1300), [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), [anon_sym_LT_LT_EQ] = ACTIONS(1302), [anon_sym_GT_GT_EQ] = ACTIONS(1302), [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), + [anon_sym_CARET_EQ] = ACTIONS(1300), [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), [anon_sym_LT_EQ] = ACTIONS(1302), [anon_sym_GT_EQ] = ACTIONS(1302), [anon_sym_AMP_AMP] = ACTIONS(1302), [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), [anon_sym_AMP_GT_GT] = ACTIONS(1302), [anon_sym_LT_AMP] = ACTIONS(1302), [anon_sym_GT_AMP] = ACTIONS(1302), [anon_sym_GT_PIPE] = ACTIONS(1302), [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), [aux_sym_concatenation_token1] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), [anon_sym_DQUOTE] = ACTIONS(1302), [sym_raw_string] = ACTIONS(1302), [sym_ansi_c_string] = ACTIONS(1302), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), [anon_sym_LT_LPAREN] = ACTIONS(1302), [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), - }, - [394] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), - }, - [395] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1352), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT_DASH] = ACTIONS(1352), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), - [sym_ansi_c_string] = ACTIONS(1352), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), - [anon_sym_LT_LPAREN] = ACTIONS(1352), - [anon_sym_GT_LPAREN] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1352), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), - }, - [396] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1326), - [anon_sym_GT_AMP] = ACTIONS(1326), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1326), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), - }, - [397] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [398] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1352), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT_DASH] = ACTIONS(1352), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), - [sym_ansi_c_string] = ACTIONS(1352), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), - [anon_sym_LT_LPAREN] = ACTIONS(1352), - [anon_sym_GT_LPAREN] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1352), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), - }, - [399] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [400] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [401] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_GT_PIPE] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_raw_string] = ACTIONS(1234), - [sym_ansi_c_string] = ACTIONS(1234), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), - [anon_sym_LT_LPAREN] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(1234), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [402] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [403] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_GT_PIPE] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_raw_string] = ACTIONS(1234), - [sym_ansi_c_string] = ACTIONS(1234), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), - [anon_sym_LT_LPAREN] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(1234), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), + [sym_test_operator] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), }, [404] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [aux_sym_concatenation_token1] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1263), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1371), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), }, [405] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [406] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1254), - [anon_sym_GT_AMP] = ACTIONS(1254), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1374), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [407] = { - [aux_sym_concatenation_repeat1] = STATE(408), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1244), - [sym_ansi_c_string] = ACTIONS(1244), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), - [anon_sym_LT_LPAREN] = ACTIONS(1244), - [anon_sym_GT_LPAREN] = ACTIONS(1244), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1244), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [408] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1248), - [sym_ansi_c_string] = ACTIONS(1248), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), - [anon_sym_LT_LPAREN] = ACTIONS(1248), - [anon_sym_GT_LPAREN] = ACTIONS(1248), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1248), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1376), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), - }, - [409] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [410] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [aux_sym_concatenation_token1] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_ansi_c_string] = ACTIONS(1296), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), - }, - [411] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), - [aux_sym_concatenation_token1] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_raw_string] = ACTIONS(1320), - [sym_ansi_c_string] = ACTIONS(1320), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), - [anon_sym_LT_LPAREN] = ACTIONS(1320), - [anon_sym_GT_LPAREN] = ACTIONS(1320), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1320), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), - }, - [412] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [413] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_GT_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), - [aux_sym_concatenation_token1] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_ansi_c_string] = ACTIONS(1300), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [414] = { - [sym_word] = ACTIONS(1302), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), - [aux_sym_concatenation_token1] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_ansi_c_string] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), - }, - [415] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1278), - [anon_sym_GT_AMP] = ACTIONS(1278), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1278), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [416] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1344), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_EQ] = ACTIONS(1344), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1344), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1344), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_GT_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT_DASH] = ACTIONS(1344), - [anon_sym_LT_LT_LT] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), - [aux_sym_concatenation_token1] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_raw_string] = ACTIONS(1344), - [sym_ansi_c_string] = ACTIONS(1344), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1344), - [anon_sym_GT_LPAREN] = ACTIONS(1344), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1344), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [417] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), - }, - [418] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1324), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), - [aux_sym_concatenation_token1] = ACTIONS(1324), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_raw_string] = ACTIONS(1324), - [sym_ansi_c_string] = ACTIONS(1324), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), - [anon_sym_LT_LPAREN] = ACTIONS(1324), - [anon_sym_GT_LPAREN] = ACTIONS(1324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1324), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), - }, - [419] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [aux_sym_concatenation_token1] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1316), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), - }, - [420] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_EQ] = ACTIONS(1282), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_GT_PIPE] = ACTIONS(1282), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), - [aux_sym_concatenation_token1] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [sym_ansi_c_string] = ACTIONS(1282), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), + [sym_word] = ACTIONS(1338), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), + [anon_sym_EQ] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_EQ] = ACTIONS(1338), + [anon_sym_DASH_EQ] = ACTIONS(1338), + [anon_sym_STAR_EQ] = ACTIONS(1338), + [anon_sym_SLASH_EQ] = ACTIONS(1338), + [anon_sym_PERCENT_EQ] = ACTIONS(1338), + [anon_sym_LT_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_GT_EQ] = ACTIONS(1340), + [anon_sym_AMP_EQ] = ACTIONS(1340), + [anon_sym_CARET_EQ] = ACTIONS(1338), + [anon_sym_PIPE_EQ] = ACTIONS(1340), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_EQ] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [anon_sym_STAR_STAR] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1340), + [anon_sym_EQ_TILDE] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_GT_PIPE] = ACTIONS(1340), + [anon_sym_LT_LT_DASH] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1340), + [aux_sym_concatenation_token1] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1338), + [sym__special_character] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [sym_ansi_c_string] = ACTIONS(1340), + [aux_sym_number_token1] = ACTIONS(1338), + [aux_sym_number_token2] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1282), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), + [sym_test_operator] = ACTIONS(1340), + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [sym__bare_dollar] = ACTIONS(1340), + [sym__brace_start] = ACTIONS(1340), }, - [421] = { + [406] = { [sym_word] = ACTIONS(1330), [anon_sym_LPAREN_LPAREN] = ACTIONS(1332), [anon_sym_EQ] = ACTIONS(1330), @@ -56860,7 +55340,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1332), [sym__brace_start] = ACTIONS(1332), }, - [422] = { + [407] = { + [sym_word] = ACTIONS(1358), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_STAR_STAR] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1360), + [anon_sym_LT_AMP] = ACTIONS(1360), + [anon_sym_GT_AMP] = ACTIONS(1360), + [anon_sym_GT_PIPE] = ACTIONS(1360), + [anon_sym_LT_LT_DASH] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [aux_sym_concatenation_token1] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1360), + [sym_ansi_c_string] = ACTIONS(1360), + [aux_sym_number_token1] = ACTIONS(1358), + [aux_sym_number_token2] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1360), + [sym_file_descriptor] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym__bare_dollar] = ACTIONS(1360), + [sym__brace_start] = ACTIONS(1360), + }, + [408] = { + [sym_word] = ACTIONS(1354), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_GT_EQ] = ACTIONS(1356), + [anon_sym_AMP_EQ] = ACTIONS(1356), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_STAR_STAR] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_AMP_GT] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_GT_PIPE] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [aux_sym_concatenation_token1] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1354), + [sym__special_character] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_ansi_c_string] = ACTIONS(1356), + [aux_sym_number_token1] = ACTIONS(1354), + [aux_sym_number_token2] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1356), + [sym__concat] = ACTIONS(1356), + [sym__bare_dollar] = ACTIONS(1356), + [sym__brace_start] = ACTIONS(1356), + }, + [409] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [410] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_EQ] = ACTIONS(1306), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_GT_PIPE] = ACTIONS(1306), + [anon_sym_LT_LT_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [aux_sym_concatenation_token1] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1306), + [sym_ansi_c_string] = ACTIONS(1306), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [411] = { [sym_word] = ACTIONS(1334), [anon_sym_LPAREN_LPAREN] = ACTIONS(1336), [anon_sym_EQ] = ACTIONS(1334), @@ -56928,762 +55680,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1336), [sym__brace_start] = ACTIONS(1336), }, - [423] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [aux_sym_concatenation_token1] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), + [412] = { + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_EQ] = ACTIONS(1271), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [aux_sym_concatenation_token1] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1263), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1271), + [sym_file_descriptor] = ACTIONS(1271), + [sym__concat] = ACTIONS(1271), + [sym__bare_dollar] = ACTIONS(1271), + [sym__brace_start] = ACTIONS(1271), }, - [424] = { - [sym_word] = ACTIONS(1338), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1338), - [anon_sym_DASH_EQ] = ACTIONS(1338), - [anon_sym_STAR_EQ] = ACTIONS(1338), - [anon_sym_SLASH_EQ] = ACTIONS(1338), - [anon_sym_PERCENT_EQ] = ACTIONS(1338), - [anon_sym_LT_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_GT_EQ] = ACTIONS(1340), - [anon_sym_AMP_EQ] = ACTIONS(1340), - [anon_sym_CARET_EQ] = ACTIONS(1338), - [anon_sym_PIPE_EQ] = ACTIONS(1340), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1340), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_GT_PIPE] = ACTIONS(1340), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [anon_sym_LT_LT_LT] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1340), - [aux_sym_concatenation_token1] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1338), - [sym__special_character] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [sym_ansi_c_string] = ACTIONS(1340), - [aux_sym_number_token1] = ACTIONS(1338), - [aux_sym_number_token2] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), + [413] = { + [sym_word] = ACTIONS(1350), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_EQ] = ACTIONS(1352), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_STAR_STAR] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_PIPE_AMP] = ACTIONS(1352), + [anon_sym_RBRACK] = ACTIONS(1352), + [anon_sym_EQ_TILDE] = ACTIONS(1350), + [anon_sym_AMP_GT] = ACTIONS(1350), + [anon_sym_AMP_GT_GT] = ACTIONS(1352), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1352), + [anon_sym_LT_LT_DASH] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), + [aux_sym_concatenation_token1] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1350), + [sym__special_character] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_raw_string] = ACTIONS(1352), + [sym_ansi_c_string] = ACTIONS(1352), + [aux_sym_number_token1] = ACTIONS(1350), + [aux_sym_number_token2] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), + [anon_sym_LT_LPAREN] = ACTIONS(1352), + [anon_sym_GT_LPAREN] = ACTIONS(1352), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1340), - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym__bare_dollar] = ACTIONS(1340), - [sym__brace_start] = ACTIONS(1340), + [sym_test_operator] = ACTIONS(1352), + [sym_file_descriptor] = ACTIONS(1352), + [sym__concat] = ACTIONS(1352), + [sym__bare_dollar] = ACTIONS(1352), + [sym__brace_start] = ACTIONS(1352), }, - [425] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [414] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [426] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [sym_test_operator] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), + }, + [415] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [427] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1328), - [anon_sym_RBRACK] = ACTIONS(1328), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1328), - [anon_sym_LT_AMP] = ACTIONS(1328), - [anon_sym_GT_AMP] = ACTIONS(1328), - [anon_sym_GT_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT_DASH] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), - [aux_sym_concatenation_token1] = ACTIONS(1328), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_raw_string] = ACTIONS(1328), - [sym_ansi_c_string] = ACTIONS(1328), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), + [sym_test_operator] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [416] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1328), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), + [sym_test_operator] = ACTIONS(1322), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), }, - [428] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_EQ] = ACTIONS(1348), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_GT_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT_DASH] = ACTIONS(1348), - [anon_sym_LT_LT_LT] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), - [aux_sym_concatenation_token1] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [sym_ansi_c_string] = ACTIONS(1348), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), + [417] = { + [sym_word] = ACTIONS(1312), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1348), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [418] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1298), + [anon_sym_GT_AMP] = ACTIONS(1298), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_comment] = ACTIONS(63), + [sym_test_operator] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), }, - [429] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), + [419] = { + [sym_word] = ACTIONS(1288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_EQ] = ACTIONS(1288), + [anon_sym_DASH_EQ] = ACTIONS(1288), + [anon_sym_STAR_EQ] = ACTIONS(1288), + [anon_sym_SLASH_EQ] = ACTIONS(1288), + [anon_sym_PERCENT_EQ] = ACTIONS(1288), + [anon_sym_LT_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_GT_EQ] = ACTIONS(1290), + [anon_sym_AMP_EQ] = ACTIONS(1290), + [anon_sym_CARET_EQ] = ACTIONS(1288), + [anon_sym_PIPE_EQ] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_EQ] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1288), + [anon_sym_AMP_GT] = ACTIONS(1288), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_GT_PIPE] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), + [aux_sym_concatenation_token1] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1288), + [sym__special_character] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_ansi_c_string] = ACTIONS(1290), + [aux_sym_number_token1] = ACTIONS(1288), + [aux_sym_number_token2] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1286), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [430] = { - [sym_arithmetic_expansion] = STATE(2173), - [sym_brace_expression] = STATE(2173), - [sym_concatenation] = STATE(783), - [sym_string] = STATE(2173), - [sym_translated_string] = STATE(2173), - [sym_array] = STATE(783), - [sym_number] = STATE(2173), - [sym_simple_expansion] = STATE(2173), - [sym_expansion] = STATE(2173), - [sym_command_substitution] = STATE(2173), - [sym_process_substitution] = STATE(2173), - [aux_sym__literal_repeat1] = STATE(2262), - [aux_sym__expansion_body_repeat2] = STATE(783), - [sym_word] = ACTIONS(1378), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1380), - [anon_sym_DOLLAR] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_raw_string] = ACTIONS(1406), - [sym_ansi_c_string] = ACTIONS(1406), - [aux_sym_number_token1] = ACTIONS(1408), - [aux_sym_number_token2] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE3] = ACTIONS(1414), - [anon_sym_COLON_EQ] = ACTIONS(1388), - [anon_sym_COLON_DASH] = ACTIONS(1386), - [anon_sym_COLON_PLUS] = ACTIONS(1388), - [anon_sym_COLON_QMARK] = ACTIONS(1386), - [anon_sym_POUND_POUND] = ACTIONS(1416), - [anon_sym_PERCENT_PERCENT] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1390), - [anon_sym_SLASH_POUND] = ACTIONS(1390), - [anon_sym_SLASH_PERCENT] = ACTIONS(1390), - [anon_sym_COMMA_COMMA] = ACTIONS(1384), - [anon_sym_CARET_CARET] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_COMMA2] = ACTIONS(1422), - [anon_sym_COMMA_COMMA2] = ACTIONS(1424), - [anon_sym_CARET2] = ACTIONS(1422), - [anon_sym_CARET_CARET2] = ACTIONS(1424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1430), - [anon_sym_LT_LPAREN] = ACTIONS(1432), - [anon_sym_GT_LPAREN] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1434), - [sym__brace_start] = ACTIONS(1436), - }, - [431] = { - [aux_sym__literal_repeat1] = STATE(432), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_PIPE_AMP] = ACTIONS(178), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(178), - [anon_sym_LT_AMP] = ACTIONS(178), - [anon_sym_GT_AMP] = ACTIONS(178), - [anon_sym_GT_PIPE] = ACTIONS(178), - [anon_sym_LT_LT_DASH] = ACTIONS(178), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(178), - [sym_raw_string] = ACTIONS(178), - [sym_ansi_c_string] = ACTIONS(178), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(178), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(178), - [anon_sym_LT_LPAREN] = ACTIONS(178), - [anon_sym_GT_LPAREN] = ACTIONS(178), + [sym_test_operator] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1290), + [sym__concat] = ACTIONS(1290), + [sym__bare_dollar] = ACTIONS(1290), + [sym__brace_start] = ACTIONS(1290), + }, + [420] = { + [aux_sym__literal_repeat1] = STATE(421), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN_LPAREN] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_PLUS_PLUS] = ACTIONS(147), + [anon_sym_DASH_DASH] = ACTIONS(147), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(147), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(352), + [anon_sym_PIPE_PIPE] = ACTIONS(352), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_PERCENT] = ACTIONS(147), + [anon_sym_STAR_STAR] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PIPE_AMP] = ACTIONS(182), + [anon_sym_RBRACK] = ACTIONS(350), + [anon_sym_EQ_TILDE] = ACTIONS(151), + [anon_sym_AMP_GT] = ACTIONS(149), + [anon_sym_AMP_GT_GT] = ACTIONS(182), + [anon_sym_LT_AMP] = ACTIONS(182), + [anon_sym_GT_AMP] = ACTIONS(182), + [anon_sym_GT_PIPE] = ACTIONS(182), + [anon_sym_LT_LT_DASH] = ACTIONS(182), + [anon_sym_LT_LT_LT] = ACTIONS(182), + [anon_sym_AMP] = ACTIONS(147), + [anon_sym_CARET] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(182), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym__special_character] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(182), + [sym_raw_string] = ACTIONS(182), + [sym_ansi_c_string] = ACTIONS(182), + [aux_sym_number_token1] = ACTIONS(149), + [aux_sym_number_token2] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_BQUOTE] = ACTIONS(182), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(182), + [anon_sym_LT_LPAREN] = ACTIONS(182), + [anon_sym_GT_LPAREN] = ACTIONS(182), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(602), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [432] = { - [aux_sym__literal_repeat1] = STATE(432), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1357), - [anon_sym_PIPE_PIPE] = ACTIONS(1357), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1357), - [anon_sym_LT_AMP] = ACTIONS(1357), - [anon_sym_GT_AMP] = ACTIONS(1357), - [anon_sym_GT_PIPE] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_raw_string] = ACTIONS(1357), - [sym_ansi_c_string] = ACTIONS(1357), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1357), - [anon_sym_LT_LPAREN] = ACTIONS(1357), - [anon_sym_GT_LPAREN] = ACTIONS(1357), + [sym_test_operator] = ACTIONS(352), + [sym_file_descriptor] = ACTIONS(182), + [sym__bare_dollar] = ACTIONS(182), + [sym__brace_start] = ACTIONS(182), + }, + [421] = { + [aux_sym__literal_repeat1] = STATE(421), + [sym_word] = ACTIONS(1364), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1364), + [anon_sym_DASH_EQ] = ACTIONS(1364), + [anon_sym_STAR_EQ] = ACTIONS(1364), + [anon_sym_SLASH_EQ] = ACTIONS(1364), + [anon_sym_PERCENT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1364), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_EQ_TILDE] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1369), + [anon_sym_LT_AMP] = ACTIONS(1369), + [anon_sym_GT_AMP] = ACTIONS(1369), + [anon_sym_GT_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT_DASH] = ACTIONS(1369), + [anon_sym_LT_LT_LT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1369), + [sym_raw_string] = ACTIONS(1369), + [sym_ansi_c_string] = ACTIONS(1369), + [aux_sym_number_token1] = ACTIONS(1364), + [aux_sym_number_token2] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1369), + [anon_sym_LT_LPAREN] = ACTIONS(1369), + [anon_sym_GT_LPAREN] = ACTIONS(1369), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1357), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), + [sym_test_operator] = ACTIONS(1369), + [sym_file_descriptor] = ACTIONS(1369), + [sym__bare_dollar] = ACTIONS(1369), + [sym__brace_start] = ACTIONS(1369), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 30, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1242), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [71] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1366), 3, + ACTIONS(1375), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_test_operator, - ACTIONS(1225), 7, + ACTIONS(1251), 7, anon_sym_AMP_GT, anon_sym_DOLLAR, sym__special_character, @@ -57691,7 +56376,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1229), 7, + ACTIONS(1255), 7, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -57699,7 +56384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_EQ_TILDE, - ACTIONS(1364), 7, + ACTIONS(1373), 7, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -57707,7 +56392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(1227), 19, + ACTIONS(1253), 19, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -57727,7 +56412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_QMARK, - ACTIONS(1234), 20, + ACTIONS(1260), 20, sym_file_descriptor, sym__bare_dollar, sym__brace_start, @@ -57748,93 +56433,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150] = 36, + [79] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(1264), 30, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1262), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [150] = 37, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(296), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(304), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(123), 1, + sym_variable_name, + ACTIONS(200), 1, anon_sym_DOLLAR, - ACTIONS(306), 1, + ACTIONS(202), 1, sym__special_character, - ACTIONS(308), 1, + ACTIONS(204), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(208), 1, aux_sym_number_token1, - ACTIONS(314), 1, + ACTIONS(210), 1, aux_sym_number_token2, - ACTIONS(316), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, + ACTIONS(214), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, + ACTIONS(216), 1, anon_sym_BQUOTE, - ACTIONS(322), 1, + ACTIONS(218), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(326), 1, + ACTIONS(222), 1, sym_test_operator, - ACTIONS(330), 1, - sym_variable_name, - ACTIONS(332), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(607), 1, + ACTIONS(312), 1, anon_sym_BANG, - ACTIONS(1443), 1, + ACTIONS(1395), 1, sym_word, - ACTIONS(1449), 1, + ACTIONS(1401), 1, + anon_sym_LPAREN, + ACTIONS(1403), 1, sym_file_descriptor, - STATE(431), 1, + STATE(390), 1, aux_sym__literal_repeat1, - STATE(434), 1, + STATE(400), 1, sym_concatenation, - STATE(611), 1, + STATE(470), 1, sym_command_name, - STATE(2096), 1, - sym__expression, - STATE(2154), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(3591), 1, + STATE(1992), 1, + sym__expression, + STATE(3060), 1, sym_command, - STATE(4307), 1, + STATE(4164), 1, sym_subscript, - ACTIONS(272), 2, + ACTIONS(190), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 2, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(324), 2, + ACTIONS(220), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(896), 2, + STATE(922), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3592), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(2073), 5, + STATE(1947), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(403), 9, + STATE(351), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57844,93 +56602,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [282] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + [288] = 37, ACTIONS(63), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(95), 1, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(262), 1, + anon_sym_LBRACK, + ACTIONS(266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(276), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(278), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(105), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(107), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(113), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(117), 1, + ACTIONS(298), 1, sym_test_operator, - ACTIONS(121), 1, + ACTIONS(302), 1, sym_variable_name, - ACTIONS(123), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(222), 1, + ACTIONS(357), 1, anon_sym_BANG, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(1451), 1, + ACTIONS(1405), 1, sym_word, - ACTIONS(1453), 1, - anon_sym_LPAREN, - STATE(377), 1, + STATE(420), 1, aux_sym__literal_repeat1, - STATE(402), 1, + STATE(422), 1, sym_concatenation, - STATE(481), 1, + STATE(605), 1, sym_command_name, - STATE(1484), 1, - sym_variable_assignment, - STATE(1990), 1, + STATE(1951), 1, sym__expression, - STATE(3033), 1, + STATE(2031), 1, + sym_variable_assignment, + STATE(3394), 1, sym_command, - STATE(4373), 1, + STATE(4068), 1, sym_subscript, - ACTIONS(75), 2, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(101), 2, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(282), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(115), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(894), 2, + STATE(927), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3392), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1623), 5, + STATE(2018), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(342), 9, + STATE(397), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57940,93 +56703,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [414] = 36, + [426] = 37, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, ACTIONS(97), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(99), 1, + sym__special_character, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, ACTIONS(105), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(111), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(113), 1, + anon_sym_BQUOTE, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(121), 1, - sym_variable_name, ACTIONS(123), 1, + sym_variable_name, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(135), 1, + ACTIONS(139), 1, sym_test_operator, - ACTIONS(152), 1, + ACTIONS(230), 1, anon_sym_BANG, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1407), 1, sym_word, - STATE(379), 1, + ACTIONS(1409), 1, + anon_sym_LPAREN, + STATE(374), 1, aux_sym__literal_repeat1, - STATE(400), 1, + STATE(391), 1, sym_concatenation, - STATE(481), 1, + STATE(470), 1, sym_command_name, - STATE(1484), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(2060), 1, + STATE(1976), 1, sym__expression, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4373), 1, + STATE(4164), 1, sym_subscript, ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(137), 2, sym_raw_string, sym_ansi_c_string, - STATE(894), 2, + STATE(922), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1623), 5, + STATE(1620), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(346), 9, + STATE(339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58036,93 +56804,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [546] = 36, + [564] = 37, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(194), 1, + ACTIONS(97), 1, anon_sym_DOLLAR, - ACTIONS(196), 1, + ACTIONS(99), 1, sym__special_character, - ACTIONS(198), 1, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(204), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(206), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(212), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(216), 1, + ACTIONS(119), 1, sym_test_operator, - ACTIONS(218), 1, + ACTIONS(123), 1, + sym_variable_name, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(236), 1, + ACTIONS(156), 1, anon_sym_BANG, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(1457), 1, - sym_word, - ACTIONS(1459), 1, + ACTIONS(1409), 1, anon_sym_LPAREN, - STATE(399), 1, + ACTIONS(1411), 1, + sym_word, + STATE(376), 1, aux_sym__literal_repeat1, - STATE(405), 1, + STATE(389), 1, sym_concatenation, - STATE(481), 1, + STATE(470), 1, sym_command_name, - STATE(1484), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(2122), 1, + STATE(1936), 1, sym__expression, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4373), 1, + STATE(4164), 1, sym_subscript, - ACTIONS(186), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(200), 2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(103), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(214), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(894), 2, + STATE(922), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(2117), 5, + STATE(1620), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(362), 9, + STATE(338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58132,56 +56905,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [678] = 23, + [702] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, + ACTIONS(1419), 1, anon_sym_DOLLAR, - ACTIONS(1472), 1, + ACTIONS(1421), 1, sym__special_character, - ACTIONS(1475), 1, + ACTIONS(1423), 1, anon_sym_DQUOTE, - ACTIONS(1478), 1, + ACTIONS(1425), 1, aux_sym_number_token1, - ACTIONS(1481), 1, + ACTIONS(1427), 1, aux_sym_number_token2, - ACTIONS(1484), 1, + ACTIONS(1429), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1490), 1, + ACTIONS(1433), 1, anon_sym_BQUOTE, - ACTIONS(1493), 1, + ACTIONS(1435), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1499), 1, + ACTIONS(1439), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1502), 1, + ACTIONS(1441), 1, sym_test_operator, - ACTIONS(1505), 1, + ACTIONS(1443), 1, sym_file_descriptor, - ACTIONS(1507), 1, + ACTIONS(1445), 1, sym_variable_name, - ACTIONS(1510), 1, + ACTIONS(1447), 1, sym__brace_start, - STATE(996), 1, + STATE(869), 1, aux_sym__literal_repeat1, - STATE(4364), 1, + STATE(4116), 1, sym_subscript, - ACTIONS(1464), 2, + ACTIONS(1415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1496), 2, + ACTIONS(1437), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1461), 3, + ACTIONS(1413), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(439), 3, + STATE(429), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(730), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58191,7 +56964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 22, + ACTIONS(1417), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58214,56 +56987,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [783] = 23, + [807] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(1457), 1, anon_sym_DOLLAR, - ACTIONS(1521), 1, + ACTIONS(1460), 1, sym__special_character, - ACTIONS(1523), 1, + ACTIONS(1463), 1, anon_sym_DQUOTE, - ACTIONS(1525), 1, + ACTIONS(1466), 1, aux_sym_number_token1, - ACTIONS(1527), 1, + ACTIONS(1469), 1, aux_sym_number_token2, - ACTIONS(1529), 1, + ACTIONS(1472), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1531), 1, + ACTIONS(1475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1533), 1, + ACTIONS(1478), 1, anon_sym_BQUOTE, - ACTIONS(1535), 1, + ACTIONS(1481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1539), 1, + ACTIONS(1487), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1541), 1, + ACTIONS(1490), 1, sym_test_operator, - ACTIONS(1543), 1, + ACTIONS(1493), 1, sym_file_descriptor, - ACTIONS(1545), 1, + ACTIONS(1495), 1, sym_variable_name, - ACTIONS(1547), 1, + ACTIONS(1498), 1, sym__brace_start, - STATE(996), 1, + STATE(869), 1, aux_sym__literal_repeat1, - STATE(4364), 1, + STATE(4116), 1, sym_subscript, - ACTIONS(1515), 2, + ACTIONS(1452), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1537), 2, + ACTIONS(1484), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1513), 3, + ACTIONS(1449), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(439), 3, + STATE(429), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(730), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58273,7 +57046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 22, + ACTIONS(1455), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58296,56 +57069,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [888] = 23, + [912] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(1419), 1, anon_sym_DOLLAR, - ACTIONS(1521), 1, + ACTIONS(1421), 1, sym__special_character, - ACTIONS(1523), 1, + ACTIONS(1423), 1, anon_sym_DQUOTE, - ACTIONS(1525), 1, + ACTIONS(1425), 1, aux_sym_number_token1, - ACTIONS(1527), 1, + ACTIONS(1427), 1, aux_sym_number_token2, - ACTIONS(1529), 1, + ACTIONS(1429), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1531), 1, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1533), 1, + ACTIONS(1433), 1, anon_sym_BQUOTE, - ACTIONS(1535), 1, + ACTIONS(1435), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1541), 1, + ACTIONS(1441), 1, sym_test_operator, - ACTIONS(1545), 1, + ACTIONS(1445), 1, sym_variable_name, - ACTIONS(1547), 1, + ACTIONS(1447), 1, sym__brace_start, - ACTIONS(1551), 1, + ACTIONS(1503), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1553), 1, + ACTIONS(1505), 1, sym_file_descriptor, - STATE(996), 1, + STATE(869), 1, aux_sym__literal_repeat1, - STATE(4364), 1, + STATE(4116), 1, sym_subscript, - ACTIONS(1515), 2, + ACTIONS(1415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1537), 2, + ACTIONS(1437), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1513), 3, + ACTIONS(1413), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(440), 3, + STATE(428), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(730), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58355,7 +57128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 22, + ACTIONS(1501), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58378,56 +57151,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [993] = 23, + [1017] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1559), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(1561), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(1567), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(1569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1571), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1573), 1, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(1515), 1, + anon_sym_DQUOTE, + ACTIONS(1517), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1519), 1, anon_sym_BQUOTE, - ACTIONS(1575), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1579), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1581), 1, + ACTIONS(1525), 1, sym_test_operator, - ACTIONS(1583), 1, - sym_variable_name, - ACTIONS(1585), 1, - sym__brace_start, - STATE(1193), 1, + ACTIONS(1527), 1, + sym_file_descriptor, + ACTIONS(1529), 1, + sym__bare_dollar, + STATE(432), 1, + aux_sym_command_repeat2, + STATE(757), 1, aux_sym__literal_repeat1, - STATE(4359), 1, - sym_subscript, - ACTIONS(1557), 2, + STATE(851), 1, + sym_concatenation, + ACTIONS(1509), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1577), 2, + ACTIONS(1513), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1555), 3, + ACTIONS(1507), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(445), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(772), 9, + STATE(671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58437,7 +57209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 21, + ACTIONS(1511), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58445,6 +57217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -58459,55 +57232,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1097] = 23, + [1121] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(444), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(450), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(456), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(1595), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1519), 1, anon_sym_BQUOTE, - ACTIONS(1601), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1525), 1, sym_test_operator, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1609), 1, + ACTIONS(1529), 1, sym__bare_dollar, - STATE(447), 1, + ACTIONS(1533), 1, + sym_file_descriptor, + STATE(434), 1, aux_sym_command_repeat2, - STATE(809), 1, + STATE(757), 1, aux_sym__literal_repeat1, - STATE(974), 1, + STATE(851), 1, sym_concatenation, - ACTIONS(1589), 2, + ACTIONS(1509), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, + ACTIONS(1513), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1603), 2, + ACTIONS(1523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1587), 3, + ACTIONS(1507), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(673), 9, + STATE(671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58517,7 +57290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 22, + ACTIONS(1531), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58540,56 +57313,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1201] = 23, + [1225] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(1493), 1, sym_file_descriptor, - ACTIONS(1617), 1, + ACTIONS(1541), 1, anon_sym_DOLLAR, - ACTIONS(1620), 1, + ACTIONS(1544), 1, sym__special_character, - ACTIONS(1623), 1, + ACTIONS(1547), 1, anon_sym_DQUOTE, - ACTIONS(1626), 1, + ACTIONS(1550), 1, aux_sym_number_token1, - ACTIONS(1629), 1, + ACTIONS(1553), 1, aux_sym_number_token2, - ACTIONS(1632), 1, + ACTIONS(1556), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1635), 1, + ACTIONS(1559), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1562), 1, anon_sym_BQUOTE, - ACTIONS(1641), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1647), 1, + ACTIONS(1571), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1650), 1, + ACTIONS(1574), 1, sym_test_operator, - ACTIONS(1653), 1, + ACTIONS(1577), 1, sym_variable_name, - ACTIONS(1656), 1, + ACTIONS(1580), 1, sym__brace_start, - STATE(1193), 1, + STATE(1011), 1, aux_sym__literal_repeat1, - STATE(4359), 1, + STATE(4100), 1, sym_subscript, - ACTIONS(1614), 2, + ACTIONS(1538), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1644), 2, + ACTIONS(1568), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1611), 3, + ACTIONS(1535), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(444), 3, + STATE(433), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(772), 9, + STATE(801), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58599,7 +57372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 21, + ACTIONS(1455), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58621,56 +57394,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1305] = 23, + [1329] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1559), 1, + ACTIONS(1594), 1, anon_sym_DOLLAR, - ACTIONS(1561), 1, + ACTIONS(1597), 1, sym__special_character, - ACTIONS(1563), 1, + ACTIONS(1600), 1, anon_sym_DQUOTE, - ACTIONS(1565), 1, + ACTIONS(1603), 1, aux_sym_number_token1, - ACTIONS(1567), 1, + ACTIONS(1606), 1, aux_sym_number_token2, - ACTIONS(1569), 1, + ACTIONS(1609), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1571), 1, + ACTIONS(1612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1573), 1, + ACTIONS(1615), 1, anon_sym_BQUOTE, - ACTIONS(1575), 1, + ACTIONS(1618), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1581), 1, + ACTIONS(1624), 1, sym_test_operator, - ACTIONS(1583), 1, - sym_variable_name, - ACTIONS(1585), 1, + ACTIONS(1627), 1, + sym_file_descriptor, + ACTIONS(1629), 1, + sym__bare_dollar, + ACTIONS(1632), 1, sym__brace_start, - ACTIONS(1659), 1, - aux_sym__simple_variable_name_token1, - STATE(1193), 1, + STATE(434), 1, + aux_sym_command_repeat2, + STATE(757), 1, aux_sym__literal_repeat1, - STATE(4359), 1, - sym_subscript, - ACTIONS(1557), 2, + STATE(851), 1, + sym_concatenation, + ACTIONS(1586), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1577), 2, + ACTIONS(1591), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1555), 3, + ACTIONS(1583), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(444), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(772), 9, + STATE(671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58680,7 +57452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 21, + ACTIONS(1589), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58688,6 +57460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -58702,55 +57475,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1409] = 23, + [1433] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, + ACTIONS(1505), 1, + sym_file_descriptor, + ACTIONS(1639), 1, anon_sym_DOLLAR, - ACTIONS(444), 1, + ACTIONS(1641), 1, sym__special_character, - ACTIONS(450), 1, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1651), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1653), 1, anon_sym_BQUOTE, - ACTIONS(1601), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1659), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1661), 1, sym_test_operator, - ACTIONS(1609), 1, - sym__bare_dollar, ACTIONS(1663), 1, - sym_file_descriptor, - STATE(449), 1, - aux_sym_command_repeat2, - STATE(809), 1, + sym_variable_name, + ACTIONS(1665), 1, + sym__brace_start, + STATE(1011), 1, aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, + STATE(4100), 1, + sym_subscript, + ACTIONS(1637), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, + ACTIONS(1657), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1587), 3, + ACTIONS(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(673), 9, + STATE(437), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(801), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58760,7 +57534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 22, + ACTIONS(1501), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58768,7 +57542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -58783,55 +57556,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1513] = 23, + [1537] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1676), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(1679), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(1682), 1, - anon_sym_DQUOTE, - ACTIONS(1685), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(1688), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1694), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1697), 1, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(1515), 1, + anon_sym_DQUOTE, + ACTIONS(1517), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1519), 1, anon_sym_BQUOTE, - ACTIONS(1700), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1706), 1, + ACTIONS(1525), 1, sym_test_operator, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(1711), 1, + ACTIONS(1529), 1, sym__bare_dollar, - ACTIONS(1714), 1, - sym__brace_start, - STATE(447), 1, + ACTIONS(1669), 1, + sym_file_descriptor, + STATE(438), 1, aux_sym_command_repeat2, - STATE(809), 1, + STATE(757), 1, aux_sym__literal_repeat1, - STATE(974), 1, + STATE(851), 1, sym_concatenation, - ACTIONS(1668), 2, + ACTIONS(1509), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, + ACTIONS(1513), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1703), 2, + ACTIONS(1523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + ACTIONS(1507), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(673), 9, + STATE(671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58841,7 +57614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 22, + ACTIONS(1667), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58864,55 +57637,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1617] = 23, + [1641] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, + ACTIONS(1443), 1, + sym_file_descriptor, + ACTIONS(1639), 1, anon_sym_DOLLAR, - ACTIONS(444), 1, + ACTIONS(1641), 1, sym__special_character, - ACTIONS(450), 1, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1651), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1653), 1, anon_sym_BQUOTE, - ACTIONS(1601), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1661), 1, sym_test_operator, - ACTIONS(1609), 1, - sym__bare_dollar, - ACTIONS(1719), 1, - sym_file_descriptor, - STATE(443), 1, - aux_sym_command_repeat2, - STATE(809), 1, + ACTIONS(1663), 1, + sym_variable_name, + ACTIONS(1665), 1, + sym__brace_start, + ACTIONS(1671), 1, + aux_sym__simple_variable_name_token1, + STATE(1011), 1, aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, + STATE(4100), 1, + sym_subscript, + ACTIONS(1637), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, + ACTIONS(1657), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1587), 3, + ACTIONS(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(673), 9, + STATE(433), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(801), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58922,7 +57696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 22, + ACTIONS(1417), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58930,7 +57704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -58945,55 +57718,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1721] = 23, + [1745] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(444), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(450), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(456), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(1595), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1519), 1, anon_sym_BQUOTE, - ACTIONS(1601), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1525), 1, sym_test_operator, - ACTIONS(1609), 1, + ACTIONS(1529), 1, sym__bare_dollar, - ACTIONS(1723), 1, + ACTIONS(1675), 1, sym_file_descriptor, - STATE(447), 1, + STATE(434), 1, aux_sym_command_repeat2, - STATE(809), 1, + STATE(757), 1, aux_sym__literal_repeat1, - STATE(974), 1, + STATE(851), 1, sym_concatenation, - ACTIONS(1589), 2, + ACTIONS(1509), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, + ACTIONS(1513), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1603), 2, + ACTIONS(1523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1587), 3, + ACTIONS(1507), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(673), 9, + STATE(671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59003,7 +57776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1721), 22, + ACTIONS(1673), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59026,55 +57799,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1825] = 23, + [1849] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(564), 1, + ACTIONS(1686), 1, sym__special_character, - ACTIONS(570), 1, + ACTIONS(1689), 1, + anon_sym_DQUOTE, + ACTIONS(1692), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(1695), 1, aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, + ACTIONS(1698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, + ACTIONS(1701), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1704), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1707), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1713), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1716), 1, sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(451), 1, - aux_sym_command_repeat2, - STATE(924), 1, + ACTIONS(1719), 1, + sym_variable_name, + ACTIONS(1722), 1, + sym__brace_start, + STATE(1203), 1, aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, + STATE(4134), 1, + sym_subscript, + ACTIONS(1493), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1680), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, + ACTIONS(1710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1725), 3, + ACTIONS(1677), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(758), 9, + STATE(439), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59084,7 +57859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 21, + ACTIONS(1455), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59094,8 +57869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59106,55 +57879,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [1928] = 23, + [1952] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(1515), 1, + anon_sym_DQUOTE, + STATE(683), 1, + sym_string, + ACTIONS(1727), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1725), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(564), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(570), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(572), 1, aux_sym_number_token2, - ACTIONS(576), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1723), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [2023] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 1, sym_file_descriptor, - ACTIONS(1731), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1738), 1, + sym__special_character, + ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1733), 1, + ACTIONS(1744), 1, + aux_sym_number_token1, + ACTIONS(1747), 1, + aux_sym_number_token2, + ACTIONS(1750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, + ACTIONS(1753), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1756), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1765), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1768), 1, sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(455), 1, - aux_sym_command_repeat2, - STATE(924), 1, + ACTIONS(1771), 1, + sym_variable_name, + ACTIONS(1774), 1, + sym__brace_start, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, + STATE(4085), 1, + sym_subscript, + ACTIONS(1732), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, + ACTIONS(1762), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1725), 3, + ACTIONS(1729), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(758), 9, + STATE(441), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(873), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59164,7 +58002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1721), 21, + ACTIONS(1455), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59172,10 +58010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59186,55 +58023,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2031] = 23, + [2126] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(1781), 1, anon_sym_DOLLAR, - ACTIONS(564), 1, + ACTIONS(1783), 1, sym__special_character, - ACTIONS(570), 1, + ACTIONS(1785), 1, + anon_sym_DQUOTE, + ACTIONS(1787), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(1789), 1, aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, + ACTIONS(1793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1795), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1801), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1803), 1, sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(453), 1, - aux_sym_command_repeat2, - STATE(924), 1, + ACTIONS(1805), 1, + sym_variable_name, + ACTIONS(1807), 1, + sym__brace_start, + STATE(1203), 1, aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, + STATE(4134), 1, + sym_subscript, + ACTIONS(1505), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1779), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, + ACTIONS(1799), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1725), 3, + ACTIONS(1777), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(758), 9, + STATE(446), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59244,7 +58083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 21, + ACTIONS(1501), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59254,8 +58093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59266,55 +58103,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2134] = 23, + [2229] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(564), 1, + ACTIONS(613), 1, sym__special_character, - ACTIONS(570), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(576), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, + ACTIONS(639), 1, sym__brace_start, - ACTIONS(1607), 1, + ACTIONS(1669), 1, sym_file_descriptor, - ACTIONS(1731), 1, + ACTIONS(1815), 1, anon_sym_DQUOTE, - ACTIONS(1733), 1, + ACTIONS(1817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, + ACTIONS(1819), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, + ACTIONS(1825), 1, sym_test_operator, - ACTIONS(1743), 1, + ACTIONS(1827), 1, sym__bare_dollar, - STATE(455), 1, + STATE(451), 1, aux_sym_command_repeat2, - STATE(924), 1, + STATE(937), 1, aux_sym__literal_repeat1, - STATE(1183), 1, + STATE(1050), 1, sym_concatenation, - ACTIONS(1727), 2, + ACTIONS(1811), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, + ACTIONS(1813), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1739), 2, + ACTIONS(1823), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1725), 3, + ACTIONS(1809), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(758), 9, + STATE(728), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59324,7 +58161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 21, + ACTIONS(1667), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59346,57 +58183,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2237] = 23, + [2332] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(1754), 1, + ACTIONS(613), 1, sym__special_character, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(1763), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(1766), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1769), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1772), 1, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(1527), 1, + sym_file_descriptor, + ACTIONS(1815), 1, + anon_sym_DQUOTE, + ACTIONS(1817), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1819), 1, anon_sym_BQUOTE, - ACTIONS(1775), 1, + ACTIONS(1821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1781), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1784), 1, + ACTIONS(1825), 1, sym_test_operator, - ACTIONS(1787), 1, - sym_variable_name, - ACTIONS(1790), 1, - sym__brace_start, - STATE(1336), 1, + ACTIONS(1827), 1, + sym__bare_dollar, + STATE(448), 1, + aux_sym_command_repeat2, + STATE(937), 1, aux_sym__literal_repeat1, - STATE(4386), 1, - sym_subscript, - ACTIONS(1505), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1748), 2, + STATE(1050), 1, + sym_concatenation, + ACTIONS(1811), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1778), 2, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1823), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1745), 3, + ACTIONS(1809), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(999), 9, + STATE(728), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59406,7 +58241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 19, + ACTIONS(1511), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59416,6 +58251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59426,55 +58263,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2340] = 23, + [2435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, + ACTIONS(1515), 1, + anon_sym_DQUOTE, + STATE(683), 1, + sym_string, + ACTIONS(1727), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, sym_file_descriptor, - ACTIONS(1802), 1, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1725), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1805), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [2506] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + anon_sym_DOLLAR, + ACTIONS(1783), 1, sym__special_character, - ACTIONS(1808), 1, + ACTIONS(1785), 1, anon_sym_DQUOTE, - ACTIONS(1811), 1, + ACTIONS(1787), 1, aux_sym_number_token1, - ACTIONS(1814), 1, + ACTIONS(1789), 1, aux_sym_number_token2, - ACTIONS(1817), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1820), 1, + ACTIONS(1793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1823), 1, + ACTIONS(1795), 1, anon_sym_BQUOTE, - ACTIONS(1826), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1832), 1, + ACTIONS(1803), 1, sym_test_operator, - ACTIONS(1835), 1, - sym__bare_dollar, - ACTIONS(1838), 1, + ACTIONS(1805), 1, + sym_variable_name, + ACTIONS(1807), 1, sym__brace_start, - STATE(455), 1, - aux_sym_command_repeat2, - STATE(924), 1, + ACTIONS(1829), 1, + aux_sym__simple_variable_name_token1, + STATE(1203), 1, aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1796), 2, + STATE(4134), 1, + sym_subscript, + ACTIONS(1443), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1779), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1799), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1793), 3, + ACTIONS(1777), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(758), 9, + STATE(439), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59484,7 +58387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 21, + ACTIONS(1417), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59494,8 +58397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59506,56 +58407,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2443] = 23, + [2609] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(1627), 1, sym_file_descriptor, - ACTIONS(1847), 1, + ACTIONS(1840), 1, anon_sym_DOLLAR, - ACTIONS(1850), 1, + ACTIONS(1843), 1, sym__special_character, - ACTIONS(1853), 1, + ACTIONS(1846), 1, anon_sym_DQUOTE, - ACTIONS(1856), 1, + ACTIONS(1849), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(1852), 1, aux_sym_number_token2, - ACTIONS(1862), 1, + ACTIONS(1855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, + ACTIONS(1858), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, + ACTIONS(1861), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1877), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1880), 1, + ACTIONS(1870), 1, sym_test_operator, - ACTIONS(1883), 1, - sym_variable_name, - ACTIONS(1886), 1, + ACTIONS(1873), 1, + sym__bare_dollar, + ACTIONS(1876), 1, sym__brace_start, - STATE(1289), 1, + STATE(447), 1, + aux_sym_command_repeat2, + STATE(937), 1, aux_sym__literal_repeat1, - STATE(4394), 1, - sym_subscript, - ACTIONS(1844), 2, + STATE(1050), 1, + sym_concatenation, + ACTIONS(1834), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1867), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1841), 3, + ACTIONS(1831), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(456), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(895), 9, + STATE(728), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59565,7 +58465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 20, + ACTIONS(1589), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59573,9 +58473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59586,57 +58487,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2546] = 23, + [2712] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(1895), 1, + ACTIONS(613), 1, sym__special_character, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - ACTIONS(1899), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(1901), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(1903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1905), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1907), 1, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(1533), 1, + sym_file_descriptor, + ACTIONS(1815), 1, + anon_sym_DQUOTE, + ACTIONS(1817), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1819), 1, anon_sym_BQUOTE, - ACTIONS(1909), 1, + ACTIONS(1821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1913), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1915), 1, + ACTIONS(1825), 1, sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(1919), 1, - sym__brace_start, - STATE(1336), 1, + ACTIONS(1827), 1, + sym__bare_dollar, + STATE(447), 1, + aux_sym_command_repeat2, + STATE(937), 1, aux_sym__literal_repeat1, - STATE(4386), 1, - sym_subscript, - ACTIONS(1553), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1891), 2, + STATE(1050), 1, + sym_concatenation, + ACTIONS(1811), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1911), 2, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1823), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1889), 3, + ACTIONS(1809), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(459), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(999), 9, + STATE(728), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59646,7 +58545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 19, + ACTIONS(1531), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59656,6 +58555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59666,56 +58567,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2649] = 23, + [2815] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(1505), 1, sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(1927), 1, + ACTIONS(1885), 1, sym__special_character, - ACTIONS(1929), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1935), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, + ACTIONS(1897), 1, anon_sym_BQUOTE, - ACTIONS(1941), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1945), 1, + ACTIONS(1903), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1947), 1, + ACTIONS(1905), 1, sym_test_operator, - ACTIONS(1949), 1, + ACTIONS(1907), 1, sym_variable_name, - ACTIONS(1951), 1, + ACTIONS(1909), 1, sym__brace_start, - STATE(1289), 1, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(4394), 1, + STATE(4085), 1, sym_subscript, - ACTIONS(1923), 2, + ACTIONS(1881), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1921), 3, + ACTIONS(1879), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(460), 3, + STATE(450), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(895), 9, + STATE(873), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59725,7 +58626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 20, + ACTIONS(1501), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59746,57 +58647,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2752] = 23, + [2918] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1443), 1, + sym_file_descriptor, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(1895), 1, + ACTIONS(1885), 1, sym__special_character, - ACTIONS(1897), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(1899), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1901), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1903), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1905), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1897), 1, anon_sym_BQUOTE, - ACTIONS(1909), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1915), 1, + ACTIONS(1905), 1, sym_test_operator, - ACTIONS(1917), 1, + ACTIONS(1907), 1, sym_variable_name, - ACTIONS(1919), 1, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(1953), 1, + ACTIONS(1911), 1, aux_sym__simple_variable_name_token1, - STATE(1336), 1, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(4386), 1, + STATE(4085), 1, sym_subscript, - ACTIONS(1543), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1891), 2, + ACTIONS(1881), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1911), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1889), 3, + ACTIONS(1879), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, + STATE(441), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(999), 9, + STATE(873), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59806,7 +58706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 19, + ACTIONS(1417), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59814,6 +58714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -59826,56 +58727,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2855] = 23, + [3021] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(1927), 1, + ACTIONS(613), 1, sym__special_character, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(1675), 1, + sym_file_descriptor, + ACTIONS(1815), 1, + anon_sym_DQUOTE, + ACTIONS(1817), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1819), 1, anon_sym_BQUOTE, - ACTIONS(1941), 1, + ACTIONS(1821), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, + ACTIONS(1825), 1, sym_test_operator, - ACTIONS(1949), 1, - sym_variable_name, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(1955), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, + ACTIONS(1827), 1, + sym__bare_dollar, + STATE(447), 1, + aux_sym_command_repeat2, + STATE(937), 1, aux_sym__literal_repeat1, - STATE(4394), 1, - sym_subscript, - ACTIONS(1923), 2, + STATE(1050), 1, + sym_concatenation, + ACTIONS(1811), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(1813), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1823), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1921), 3, + ACTIONS(1809), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(456), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(895), 9, + STATE(728), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59885,7 +58785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 20, + ACTIONS(1673), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59893,9 +58793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59906,34 +58807,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [2958] = 7, + [3124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - STATE(691), 1, - sym_string, - ACTIONS(1959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + STATE(1093), 1, + aux_sym__literal_repeat1, + STATE(472), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1915), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1957), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 39, + STATE(778), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1913), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -59946,7 +58844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -59957,7 +58854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -59970,31 +58869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3029] = 7, + [3192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(1815), 1, anon_sym_DQUOTE, - STATE(691), 1, + STATE(823), 1, sym_string, - ACTIONS(1959), 2, + ACTIONS(1919), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1957), 9, + ACTIONS(1917), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 39, + ACTIONS(1235), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -60004,7 +58903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -60034,34 +58932,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3100] = 7, + [3262] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(49), 1, + aux_sym_number_token1, + ACTIONS(51), 1, + aux_sym_number_token2, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1927), 1, anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, + ACTIONS(1929), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1931), 1, + anon_sym_BQUOTE, + ACTIONS(1933), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1937), 1, + sym_test_operator, + ACTIONS(1939), 1, sym__bare_dollar, - sym__brace_start, - ACTIONS(1961), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 38, + STATE(468), 1, + aux_sym_command_repeat2, + STATE(1134), 1, + aux_sym__literal_repeat1, + STATE(1172), 1, + sym_concatenation, + ACTIONS(1527), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1923), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1925), 2, anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1935), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1921), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(762), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1511), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -60070,10 +59001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -60083,69 +59011,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3170] = 23, + [3364] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, + ACTIONS(781), 1, sym__special_character, - ACTIONS(1719), 1, + ACTIONS(1533), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, + ACTIONS(1957), 1, sym_test_operator, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - STATE(472), 1, + STATE(463), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, + ACTIONS(1945), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1965), 3, + ACTIONS(1941), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60155,7 +59069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 20, + ACTIONS(1531), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60176,51 +59090,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3272] = 21, + [3466] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 1, + ACTIONS(1970), 1, anon_sym_DOLLAR, - ACTIONS(1993), 1, + ACTIONS(1973), 1, sym__special_character, - ACTIONS(1995), 1, + ACTIONS(1976), 1, anon_sym_DQUOTE, - ACTIONS(1997), 1, + ACTIONS(1979), 1, aux_sym_number_token1, - ACTIONS(1999), 1, + ACTIONS(1982), 1, aux_sym_number_token2, - ACTIONS(2001), 1, + ACTIONS(1985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2003), 1, + ACTIONS(1988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2005), 1, + ACTIONS(1991), 1, anon_sym_BQUOTE, - ACTIONS(2007), 1, + ACTIONS(1994), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2011), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2013), 1, + ACTIONS(2000), 1, sym_test_operator, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2017), 1, + ACTIONS(2003), 1, + sym__bare_dollar, + ACTIONS(2006), 1, sym__brace_start, - STATE(1103), 1, + STATE(456), 1, + aux_sym_command_repeat2, + STATE(1134), 1, aux_sym__literal_repeat1, - ACTIONS(1987), 2, + STATE(1172), 1, + sym_concatenation, + ACTIONS(1627), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1964), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2009), 2, + ACTIONS(1967), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1997), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(485), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1985), 3, + ACTIONS(1961), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(818), 9, + STATE(762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60230,7 +59149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 22, + ACTIONS(1589), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60238,11 +59157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60253,51 +59169,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3370] = 21, + [3568] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(1993), 1, + ACTIONS(43), 1, sym__special_character, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - ACTIONS(1997), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(1999), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(2001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2003), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2005), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1927), 1, + anon_sym_DQUOTE, + ACTIONS(1929), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(2007), 1, + ACTIONS(1933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2013), 1, + ACTIONS(1937), 1, sym_test_operator, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(2021), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2023), 1, - sym_file_descriptor, - STATE(1103), 1, + ACTIONS(1939), 1, + sym__bare_dollar, + STATE(465), 1, + aux_sym_command_repeat2, + STATE(1134), 1, aux_sym__literal_repeat1, - ACTIONS(1987), 2, + STATE(1172), 1, + sym_concatenation, + ACTIONS(1669), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1923), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2009), 2, + ACTIONS(1925), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(465), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1985), 3, + ACTIONS(1921), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(818), 9, + STATE(762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60307,7 +59228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 22, + ACTIONS(1667), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60315,11 +59236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60330,56 +59248,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3468] = 23, + [3670] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1505), 1, + sym_file_descriptor, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, + ACTIONS(1887), 1, + anon_sym_DQUOTE, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(55), 1, + ACTIONS(1893), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, + ACTIONS(1899), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(2031), 1, + ACTIONS(2011), 1, + sym__special_character, + ACTIONS(2013), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2015), 1, + sym_test_operator, + ACTIONS(2017), 1, + sym_variable_name, + STATE(1359), 1, + aux_sym__literal_repeat1, + STATE(4069), 1, + sym_subscript, + ACTIONS(1881), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1901), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2009), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(464), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1501), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [3770] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym_DOLLAR, + ACTIONS(2027), 1, + sym__special_character, + ACTIONS(2029), 1, anon_sym_DQUOTE, + ACTIONS(2031), 1, + aux_sym_number_token1, ACTIONS(2033), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(2035), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, ACTIONS(2037), 1, - anon_sym_DOLLAR_BQUOTE, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2039), 1, + anon_sym_BQUOTE, ACTIONS(2041), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2045), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2047), 1, sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(484), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1723), 2, + ACTIONS(2049), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, + ACTIONS(2051), 1, + sym__brace_start, + STATE(1135), 1, + aux_sym__literal_repeat1, + ACTIONS(2021), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, + ACTIONS(2043), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2025), 3, + STATE(461), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2019), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(769), 9, + STATE(760), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60389,7 +59380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1721), 19, + ACTIONS(2023), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60397,8 +59388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60409,19 +59403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3570] = 6, + [3868] = 6, ACTIONS(3), 1, sym_comment, - STATE(1140), 1, + STATE(1093), 1, aux_sym__literal_repeat1, - STATE(471), 2, + STATE(472), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, + ACTIONS(2055), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(784), 9, + STATE(778), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60431,7 +59425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 39, + ACTIONS(2053), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -60471,19 +59465,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [3638] = 6, + [3936] = 21, ACTIONS(3), 1, sym_comment, - STATE(1140), 1, - aux_sym__literal_repeat1, - STATE(471), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, + ACTIONS(2065), 1, + anon_sym_DOLLAR, + ACTIONS(2068), 1, + sym__special_character, + ACTIONS(2071), 1, + anon_sym_DQUOTE, + ACTIONS(2074), 1, + aux_sym_number_token1, + ACTIONS(2077), 1, + aux_sym_number_token2, + ACTIONS(2080), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2086), 1, + anon_sym_BQUOTE, + ACTIONS(2089), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2095), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2098), 1, + sym_test_operator, + ACTIONS(2101), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(2103), 1, sym__brace_start, - STATE(784), 9, + STATE(1135), 1, + aux_sym__literal_repeat1, + ACTIONS(2060), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2092), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(461), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2057), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(760), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60493,8 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2063), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60517,72 +59542,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + [4034] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 1, + sym_file_descriptor, + ACTIONS(1883), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1887), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1889), 1, aux_sym_number_token1, + ACTIONS(1891), 1, aux_sym_number_token2, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1897), 1, anon_sym_BQUOTE, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(2011), 1, + sym__special_character, + ACTIONS(2015), 1, + sym_test_operator, + ACTIONS(2017), 1, + sym_variable_name, + ACTIONS(2106), 1, + aux_sym__simple_variable_name_token1, + STATE(1359), 1, + aux_sym__literal_repeat1, + STATE(4069), 1, + sym_subscript, + ACTIONS(1881), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2009), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [3706] = 23, + STATE(471), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1501), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4136] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1627), 1, + sym_file_descriptor, + ACTIONS(2117), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, + ACTIONS(2120), 1, sym__special_character, - ACTIONS(49), 1, + ACTIONS(2123), 1, + anon_sym_DQUOTE, + ACTIONS(2126), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(2129), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - ACTIONS(2033), 1, + ACTIONS(2132), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, + ACTIONS(2135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2138), 1, anon_sym_BQUOTE, - ACTIONS(2037), 1, + ACTIONS(2141), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, + ACTIONS(2147), 1, sym_test_operator, - ACTIONS(2043), 1, + ACTIONS(2150), 1, sym__bare_dollar, - STATE(474), 1, + ACTIONS(2153), 1, + sym__brace_start, + STATE(463), 1, aux_sym_command_repeat2, - STATE(1059), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1358), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1719), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, + ACTIONS(2111), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, + ACTIONS(2114), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2039), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2025), 3, + ACTIONS(2108), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(769), 9, + STATE(770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60592,7 +59679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 19, + ACTIONS(1589), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60600,6 +59687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60612,50 +59700,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3808] = 20, + [4238] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(1443), 1, + sym_file_descriptor, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(2064), 1, - sym__special_character, - ACTIONS(2067), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(2070), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(2073), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(2076), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2082), 1, - anon_sym_BQUOTE, - ACTIONS(2085), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2091), 1, - sym_test_operator, - ACTIONS(2096), 1, + ACTIONS(1909), 1, sym__brace_start, - STATE(1140), 1, + ACTIONS(2011), 1, + sym__special_character, + ACTIONS(2015), 1, + sym_test_operator, + ACTIONS(2017), 1, + sym_variable_name, + ACTIONS(2156), 1, + aux_sym__simple_variable_name_token1, + STATE(1359), 1, aux_sym__literal_repeat1, - ACTIONS(2056), 2, + STATE(4069), 1, + sym_subscript, + ACTIONS(1881), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2088), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - STATE(471), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2053), 3, + ACTIONS(2009), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(784), 9, + STATE(467), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60665,7 +59757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 22, + ACTIONS(1417), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60673,11 +59765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60688,55 +59777,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [3904] = 23, + anon_sym_BQUOTE, + [4338] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1927), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, + ACTIONS(1937), 1, sym_test_operator, - ACTIONS(1983), 1, + ACTIONS(1939), 1, sym__bare_dollar, - STATE(476), 1, + STATE(456), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1134), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1172), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1675), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1923), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, + ACTIONS(1925), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1979), 2, + ACTIONS(1935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1965), 3, + ACTIONS(1921), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60746,7 +59837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 20, + ACTIONS(1673), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60754,7 +59845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60767,56 +59857,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4006] = 23, + [4440] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1815), 1, + anon_sym_DQUOTE, + STATE(823), 1, + sym_string, + ACTIONS(1919), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1917), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(43), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(49), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(55), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4510] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 1, + sym_file_descriptor, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(2033), 1, + ACTIONS(1744), 1, + aux_sym_number_token1, + ACTIONS(1747), 1, + aux_sym_number_token2, + ACTIONS(1750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, + ACTIONS(1753), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1756), 1, anon_sym_BQUOTE, - ACTIONS(2037), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, + ACTIONS(1774), 1, + sym__brace_start, + ACTIONS(2161), 1, + sym__special_character, + ACTIONS(2164), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2167), 1, sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(467), 1, - aux_sym_command_repeat2, - STATE(1059), 1, + ACTIONS(2170), 1, + sym_variable_name, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1663), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, + STATE(4069), 1, + sym_subscript, + ACTIONS(1732), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, + ACTIONS(1762), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2025), 3, + ACTIONS(2158), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(769), 9, + STATE(467), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60826,7 +59979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 19, + ACTIONS(1455), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60846,7 +59999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4108] = 23, + [4612] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -60861,41 +60014,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(71), 1, sym__brace_start, - ACTIONS(2031), 1, + ACTIONS(1927), 1, anon_sym_DQUOTE, - ACTIONS(2033), 1, + ACTIONS(1929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, + ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(2037), 1, + ACTIONS(1933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, + ACTIONS(1937), 1, sym_test_operator, - ACTIONS(2043), 1, + ACTIONS(1939), 1, sym__bare_dollar, - STATE(484), 1, + STATE(456), 1, aux_sym_command_repeat2, - STATE(1059), 1, + STATE(1134), 1, aux_sym__literal_repeat1, - STATE(1358), 1, + STATE(1172), 1, sym_concatenation, - ACTIONS(1607), 2, + ACTIONS(1533), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(2027), 2, + ACTIONS(1923), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, + ACTIONS(1925), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2039), 2, + ACTIONS(1935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2025), 3, + ACTIONS(1921), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(769), 9, + STATE(762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60905,7 +60058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 19, + ACTIONS(1531), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60925,55 +60078,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4210] = 23, + [4714] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, + ACTIONS(781), 1, sym__special_character, - ACTIONS(1723), 1, + ACTIONS(1527), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, + ACTIONS(1957), 1, sym_test_operator, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - STATE(476), 1, + STATE(455), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, + ACTIONS(1945), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1965), 3, + ACTIONS(1941), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60983,7 +60136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1721), 20, + ACTIONS(1511), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61004,55 +60157,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4312] = 23, + [4816] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2111), 1, - sym__special_character, - ACTIONS(2114), 1, - anon_sym_DQUOTE, - ACTIONS(2117), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2120), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(781), 1, + sym__special_character, + ACTIONS(1669), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(2132), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(1957), 1, sym_test_operator, - ACTIONS(2141), 1, + ACTIONS(1959), 1, sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - STATE(476), 1, + STATE(474), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(2102), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2105), 2, + ACTIONS(1945), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2135), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2099), 3, + ACTIONS(1941), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61062,7 +60215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 20, + ACTIONS(1667), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61083,56 +60236,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4414] = 23, + [4918] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(1443), 1, sym_file_descriptor, - ACTIONS(1847), 1, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(1853), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(1856), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, + ACTIONS(1897), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1886), 1, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(2150), 1, + ACTIONS(2011), 1, sym__special_character, - ACTIONS(2153), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2156), 1, + ACTIONS(2015), 1, sym_test_operator, - ACTIONS(2159), 1, + ACTIONS(2017), 1, sym_variable_name, - STATE(1289), 1, + ACTIONS(2156), 1, + aux_sym__simple_variable_name_token1, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(4387), 1, + STATE(4069), 1, sym_subscript, - ACTIONS(1844), 2, + ACTIONS(1881), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2147), 3, + ACTIONS(2009), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(477), 3, + STATE(467), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1174), 9, + STATE(1130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61142,7 +60295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 19, + ACTIONS(1417), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61162,46 +60315,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4516] = 7, + [5020] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(2181), 1, + anon_sym_DOLLAR, + ACTIONS(2184), 1, + sym__special_character, + ACTIONS(2187), 1, anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(2190), 1, + aux_sym_number_token1, + ACTIONS(2193), 1, + aux_sym_number_token2, + ACTIONS(2196), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2199), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2202), 1, + anon_sym_BQUOTE, + ACTIONS(2205), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2211), 1, + sym_test_operator, + ACTIONS(2216), 1, sym__brace_start, - ACTIONS(1961), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 38, + STATE(1093), 1, + aux_sym__literal_repeat1, + ACTIONS(2176), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2208), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2214), 2, + sym_file_descriptor, + sym_variable_name, + STATE(472), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(778), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2179), 22, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -61211,70 +60391,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [4586] = 23, + [5116] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(2025), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(2027), 1, + sym__special_character, + ACTIONS(2029), 1, anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(2031), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2033), 1, aux_sym_number_token2, - ACTIONS(1935), 1, + ACTIONS(2035), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, + ACTIONS(2039), 1, anon_sym_BQUOTE, - ACTIONS(1941), 1, + ACTIONS(2041), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, + ACTIONS(2047), 1, + sym_test_operator, + ACTIONS(2051), 1, sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2166), 1, + ACTIONS(2221), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - STATE(1289), 1, + ACTIONS(2223), 1, + sym_file_descriptor, + STATE(1135), 1, aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, + ACTIONS(2021), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(2043), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2162), 3, + STATE(459), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2019), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(480), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, + STATE(760), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61284,7 +60445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 19, + ACTIONS(2219), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61292,8 +60453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61304,56 +60468,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4688] = 23, + [5214] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(2164), 1, + ACTIONS(781), 1, sym__special_character, - ACTIONS(2168), 1, + ACTIONS(1675), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1957), 1, sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2172), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, + ACTIONS(1959), 1, + sym__bare_dollar, + STATE(463), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(1945), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2162), 3, + ACTIONS(1941), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(477), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, + STATE(770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61363,7 +60526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 19, + ACTIONS(1673), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61371,6 +60534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -61383,55 +60547,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4790] = 23, + [5316] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1663), 1, + ACTIONS(1669), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, - sym_test_operator, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - STATE(475), 1, + ACTIONS(2229), 1, + sym_test_operator, + STATE(500), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1965), 3, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(774), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61441,7 +60605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 20, + ACTIONS(1667), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61449,7 +60613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -61462,54 +60625,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [4892] = 22, + [5417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(2214), 1, sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(2237), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(2240), 1, + sym__special_character, + ACTIONS(2243), 1, anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(2246), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2249), 1, aux_sym_number_token2, - ACTIONS(1935), 1, + ACTIONS(2252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(2255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1941), 1, + ACTIONS(2258), 1, + anon_sym_BQUOTE, + ACTIONS(2261), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2168), 1, + ACTIONS(2267), 1, sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2172), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, + ACTIONS(2270), 1, + sym__brace_start, + STATE(1189), 1, aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, + ACTIONS(2234), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(2264), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2162), 3, + STATE(476), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2231), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(477), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61519,7 +60677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1517), 20, + ACTIONS(2179), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61527,8 +60685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61539,55 +60700,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [4992] = 22, + [5512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(2049), 1, sym_file_descriptor, - ACTIONS(1925), 1, + ACTIONS(2277), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(2279), 1, + sym__special_character, + ACTIONS(2281), 1, anon_sym_DQUOTE, - ACTIONS(1931), 1, + ACTIONS(2283), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2285), 1, aux_sym_number_token2, - ACTIONS(1935), 1, + ACTIONS(2287), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1941), 1, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(2293), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2174), 1, + ACTIONS(2297), 1, aux_sym__simple_variable_name_token1, - STATE(1289), 1, + ACTIONS(2299), 1, + sym_test_operator, + ACTIONS(2301), 1, + sym__brace_start, + STATE(1256), 1, aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, + ACTIONS(2275), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, + ACTIONS(2295), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2162), 3, + STATE(489), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2273), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(482), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, + STATE(977), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61597,7 +60754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1549), 20, + ACTIONS(2023), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61607,6 +60764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61617,57 +60776,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [5092] = 23, + [5609] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, + ACTIONS(2055), 1, + sym_file_descriptor, + ACTIONS(2307), 1, anon_sym_DOLLAR, - ACTIONS(2188), 1, + ACTIONS(2309), 1, sym__special_character, - ACTIONS(2191), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - ACTIONS(2194), 1, + ACTIONS(2313), 1, aux_sym_number_token1, - ACTIONS(2197), 1, + ACTIONS(2315), 1, aux_sym_number_token2, - ACTIONS(2200), 1, + ACTIONS(2317), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2203), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2206), 1, + ACTIONS(2321), 1, anon_sym_BQUOTE, - ACTIONS(2209), 1, + ACTIONS(2323), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2215), 1, + ACTIONS(2327), 1, sym_test_operator, - ACTIONS(2218), 1, - sym__bare_dollar, - ACTIONS(2221), 1, + ACTIONS(2329), 1, sym__brace_start, - STATE(484), 1, - aux_sym_command_repeat2, - STATE(1059), 1, + STATE(1189), 1, aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1709), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2179), 2, + ACTIONS(2305), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2182), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2212), 2, + ACTIONS(2325), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2176), 3, + STATE(476), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2303), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(769), 9, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61677,7 +60828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 19, + ACTIONS(2053), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61685,8 +60836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61697,51 +60851,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5194] = 21, + [5704] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(1915), 1, + sym_file_descriptor, + ACTIONS(2307), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2309), 1, sym__special_character, - ACTIONS(2238), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, aux_sym_number_token1, - ACTIONS(2244), 1, + ACTIONS(2315), 1, aux_sym_number_token2, - ACTIONS(2247), 1, + ACTIONS(2317), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2250), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2253), 1, + ACTIONS(2321), 1, anon_sym_BQUOTE, - ACTIONS(2256), 1, + ACTIONS(2323), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2262), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2265), 1, + ACTIONS(2327), 1, sym_test_operator, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2270), 1, + ACTIONS(2329), 1, sym__brace_start, - STATE(1103), 1, + STATE(1189), 1, aux_sym__literal_repeat1, - ACTIONS(2227), 2, + ACTIONS(2305), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2259), 2, + ACTIONS(2325), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(485), 2, + STATE(476), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2224), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2303), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(818), 9, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61751,7 +60903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2230), 22, + ACTIONS(1913), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61774,49 +60926,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5292] = 20, + [5799] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2279), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2282), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(2285), 1, - anon_sym_DQUOTE, - ACTIONS(2288), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2291), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2294), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2297), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2300), 1, - anon_sym_BQUOTE, - ACTIONS(2303), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1533), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(2229), 1, sym_test_operator, - ACTIONS(2312), 1, - sym__brace_start, - STATE(1254), 1, + STATE(495), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - ACTIONS(2276), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2306), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2273), 3, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(913), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61826,7 +60982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 22, + ACTIONS(1531), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61834,11 +60990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61849,45 +61002,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5387] = 7, + anon_sym_BQUOTE, + [5898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(2333), 1, anon_sym_DQUOTE, - STATE(1008), 1, + STATE(904), 1, sym_string, - ACTIONS(2317), 2, + ACTIONS(2335), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, + ACTIONS(1237), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2315), 9, + ACTIONS(2331), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -61911,75 +61065,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5456] = 23, + [5967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + STATE(957), 1, + sym_string, + ACTIONS(2339), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(491), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, + sym__brace_start, + ACTIONS(2337), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 19, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -61989,50 +61113,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5557] = 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [6036] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 1, + ACTIONS(2223), 1, + sym_file_descriptor, + ACTIONS(2277), 1, anon_sym_DOLLAR, - ACTIONS(2334), 1, + ACTIONS(2279), 1, sym__special_character, - ACTIONS(2337), 1, + ACTIONS(2281), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2283), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(2285), 1, aux_sym_number_token2, - ACTIONS(2346), 1, + ACTIONS(2287), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2352), 1, + ACTIONS(2291), 1, anon_sym_BQUOTE, - ACTIONS(2355), 1, + ACTIONS(2293), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2361), 1, + ACTIONS(2299), 1, sym_test_operator, - ACTIONS(2364), 1, + ACTIONS(2301), 1, sym__brace_start, - STATE(1204), 1, + ACTIONS(2341), 1, + aux_sym__simple_variable_name_token1, + STATE(1256), 1, aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2328), 2, + ACTIONS(2275), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2358), 2, + ACTIONS(2295), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(489), 2, + STATE(477), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2325), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2273), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(942), 9, + STATE(977), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62042,7 +61181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 21, + ACTIONS(2219), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62064,31 +61203,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5652] = 7, + [6133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - STATE(926), 1, + STATE(957), 1, sym_string, - ACTIONS(2369), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(2367), 9, + ACTIONS(2337), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 37, + ACTIONS(1225), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -62126,66 +61265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5721] = 23, + [6202] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1927), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + STATE(905), 1, + sym_string, + ACTIONS(2345), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 4, + sym_file_descriptor, sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2343), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 19, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -62195,6 +61303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -62204,63 +61313,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [5822] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(368), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_test_operator, + [6271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 1, + anon_sym_DQUOTE, + STATE(827), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 20, + ACTIONS(2349), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2347), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62268,8 +61360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62280,32 +61375,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [5921] = 7, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [6340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + STATE(1206), 1, + aux_sym__literal_repeat1, + STATE(492), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2055), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2371), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, + STATE(956), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -62314,7 +61420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62330,7 +61435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -62343,55 +61450,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [5990] = 23, + [6407] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1719), 1, + ACTIONS(1533), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - ACTIONS(2323), 1, + ACTIONS(2229), 1, sym_test_operator, - STATE(505), 1, + STATE(495), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2321), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2319), 3, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(945), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62401,7 +61508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 19, + ACTIONS(1531), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62421,53 +61528,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6091] = 22, + [6508] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(2101), 1, + sym_file_descriptor, + ACTIONS(2357), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, + ACTIONS(2360), 1, sym__special_character, - ACTIONS(368), 1, + ACTIONS(2363), 1, + anon_sym_DQUOTE, + ACTIONS(2366), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2369), 1, aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(2372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, + ACTIONS(2375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2378), 1, + anon_sym_BQUOTE, + ACTIONS(2381), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, + ACTIONS(2387), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2390), 1, sym_test_operator, - STATE(506), 1, - aux_sym_command_repeat2, - STATE(1154), 1, + ACTIONS(2393), 1, + sym__brace_start, + STATE(1256), 1, aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(2354), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(2384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, + STATE(489), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2351), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(945), 9, + STATE(977), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62477,7 +61582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 20, + ACTIONS(2063), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62487,6 +61592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62497,52 +61604,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [6190] = 21, + [6605] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2379), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2381), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - ACTIONS(2385), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2387), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2389), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2391), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2393), 1, - anon_sym_BQUOTE, - ACTIONS(2395), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1669), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2399), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2401), 1, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(2229), 1, sym_test_operator, - ACTIONS(2403), 1, - sym__brace_start, - STATE(1226), 1, + STATE(496), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - ACTIONS(2377), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2397), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(504), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2375), 3, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(936), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62552,7 +61660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 21, + ACTIONS(1667), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62562,8 +61670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62574,19 +61680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6287] = 6, + anon_sym_BQUOTE, + [6704] = 6, ACTIONS(3), 1, sym_comment, - STATE(1204), 1, + STATE(1206), 1, aux_sym__literal_repeat1, - STATE(489), 2, + STATE(492), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, + ACTIONS(1915), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(942), 9, + STATE(956), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62596,7 +61703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 38, + ACTIONS(1913), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -62635,32 +61742,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [6354] = 7, + [6771] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(2402), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + sym__special_character, + ACTIONS(2408), 1, anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(2411), 1, + aux_sym_number_token1, + ACTIONS(2414), 1, + aux_sym_number_token2, + ACTIONS(2417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2420), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2423), 1, + anon_sym_BQUOTE, + ACTIONS(2426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2432), 1, + sym_test_operator, + ACTIONS(2435), 1, + sym__brace_start, + STATE(1206), 1, + aux_sym__literal_repeat1, + ACTIONS(2214), 2, sym_file_descriptor, sym_variable_name, - sym__brace_start, - ACTIONS(2371), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, + ACTIONS(2399), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(492), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2396), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(956), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2179), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62668,7 +61803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62683,105 +61817,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6423] = 7, + [6866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2333), 1, anon_sym_DQUOTE, - STATE(926), 1, + STATE(904), 1, sym_string, - ACTIONS(2369), 2, + ACTIONS(2335), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(2367), 9, + ACTIONS(2331), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6492] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1204), 1, - aux_sym__literal_repeat1, - STATE(489), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 38, + ACTIONS(1225), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -62790,6 +61850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -62805,9 +61866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -62820,45 +61879,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [6559] = 7, + [6935] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(1927), 1, anon_sym_DQUOTE, - STATE(873), 1, + STATE(905), 1, sym_string, - ACTIONS(2409), 2, + ACTIONS(2345), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(2405), 9, + ts_builtin_sym_end, + ACTIONS(2343), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 37, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -62882,51 +61941,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [6628] = 21, + [7004] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(1627), 1, sym_file_descriptor, - ACTIONS(2379), 1, + ACTIONS(2117), 1, anon_sym_DOLLAR, - ACTIONS(2381), 1, - sym__special_character, - ACTIONS(2383), 1, + ACTIONS(2123), 1, anon_sym_DQUOTE, - ACTIONS(2385), 1, + ACTIONS(2126), 1, aux_sym_number_token1, - ACTIONS(2387), 1, + ACTIONS(2129), 1, aux_sym_number_token2, - ACTIONS(2389), 1, + ACTIONS(2132), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2391), 1, + ACTIONS(2135), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2138), 1, anon_sym_BQUOTE, - ACTIONS(2395), 1, + ACTIONS(2141), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2401), 1, - sym_test_operator, - ACTIONS(2403), 1, + ACTIONS(2150), 1, + sym__bare_dollar, + ACTIONS(2153), 1, sym__brace_start, - ACTIONS(2411), 1, - aux_sym__simple_variable_name_token1, - STATE(1226), 1, + ACTIONS(2444), 1, + sym__special_character, + ACTIONS(2447), 1, + sym_test_operator, + STATE(495), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - ACTIONS(2377), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(2111), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2397), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(496), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2375), 3, + ACTIONS(2441), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2438), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(936), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62936,7 +61999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 21, + ACTIONS(1589), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62946,8 +62009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62958,55 +62019,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6725] = 23, + [7105] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2114), 1, - anon_sym_DQUOTE, - ACTIONS(2117), 1, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2120), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, - anon_sym_BQUOTE, - ACTIONS(2132), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1675), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2141), 1, + ACTIONS(1959), 1, sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - ACTIONS(2419), 1, - sym__special_character, - ACTIONS(2422), 1, + ACTIONS(2229), 1, sym_test_operator, - STATE(503), 1, + STATE(495), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(2102), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2135), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2416), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2413), 3, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(945), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63016,7 +62075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 19, + ACTIONS(1673), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63036,51 +62095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6826] = 21, + anon_sym_BQUOTE, + [7204] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2431), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2434), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(2437), 1, - anon_sym_DQUOTE, - ACTIONS(2440), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2443), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2449), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2452), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1527), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(2455), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2461), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2464), 1, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(2229), 1, sym_test_operator, - ACTIONS(2467), 1, - sym__brace_start, - STATE(1226), 1, + STATE(488), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - ACTIONS(2428), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2458), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(504), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(936), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63090,7 +62154,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2230), 21, + ACTIONS(1511), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7305] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 1, + anon_sym_DQUOTE, + STATE(827), 1, + sym_string, + ACTIONS(2349), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2347), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63098,6 +62207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -63112,55 +62222,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [6923] = 23, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [7374] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1607), 1, + ACTIONS(1527), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - ACTIONS(2323), 1, + ACTIONS(2229), 1, sym_test_operator, - STATE(503), 1, + STATE(480), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2321), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2319), 3, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(945), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63170,7 +62292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 19, + ACTIONS(1511), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63190,53 +62312,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7024] = 22, + anon_sym_BQUOTE, + [7473] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1723), 1, + ACTIONS(1675), 1, sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1949), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(1959), 1, sym__bare_dollar, - ACTIONS(2323), 1, + ACTIONS(2229), 1, sym_test_operator, - STATE(503), 1, + STATE(495), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2321), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2319), 3, + ACTIONS(2225), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(945), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63246,7 +62371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1721), 20, + ACTIONS(1673), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63266,50 +62391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [7123] = 20, + [7574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2474), 1, + ACTIONS(2456), 1, anon_sym_DOLLAR, - ACTIONS(2476), 1, + ACTIONS(2459), 1, sym__special_character, - ACTIONS(2478), 1, + ACTIONS(2462), 1, anon_sym_DQUOTE, - ACTIONS(2480), 1, + ACTIONS(2465), 1, aux_sym_number_token1, - ACTIONS(2482), 1, + ACTIONS(2468), 1, aux_sym_number_token2, - ACTIONS(2484), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2486), 1, + ACTIONS(2474), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(2490), 1, + ACTIONS(2480), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, + ACTIONS(2486), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2489), 1, sym_test_operator, - ACTIONS(2496), 1, + ACTIONS(2492), 1, sym__brace_start, - STATE(1254), 1, + STATE(1427), 1, aux_sym__literal_repeat1, - ACTIONS(2472), 2, + ACTIONS(2101), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2453), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2492), 2, + ACTIONS(2483), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(486), 2, + STATE(501), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2470), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2450), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(913), 9, + STATE(1042), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63319,7 +62446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 22, + ACTIONS(2063), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63327,11 +62454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63342,45 +62466,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7218] = 7, + [7670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - STATE(873), 1, + STATE(957), 1, sym_string, - ACTIONS(2409), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(2405), 9, + ACTIONS(2337), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 37, + ACTIONS(1225), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -63404,63 +62527,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7287] = 22, + [7738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(492), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(845), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 20, + ACTIONS(2497), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2495), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63470,6 +62562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63480,60 +62574,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [7386] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2476), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - ACTIONS(2480), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2482), 1, aux_sym_number_token2, - ACTIONS(2484), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2486), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, anon_sym_BQUOTE, - ACTIONS(2490), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, - sym_test_operator, - ACTIONS(2496), 1, - sym__brace_start, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(2472), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2492), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2470), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_test_operator, + [7806] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + STATE(845), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 22, + ACTIONS(2497), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2495), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63541,7 +62621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -63556,45 +62635,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7481] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [7874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(2029), 1, anon_sym_DQUOTE, - STATE(1008), 1, + STATE(871), 1, sym_string, - ACTIONS(2317), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, + ACTIONS(1233), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2315), 9, + ACTIONS(2501), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2499), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 36, + ACTIONS(1225), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -63618,51 +62710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7550] = 21, + [7942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2504), 1, - sym__special_character, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2522), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2524), 1, - sym_test_operator, - ACTIONS(2526), 1, - sym__brace_start, - STATE(1390), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(514), 2, + STATE(516), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2498), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2055), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + STATE(1108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63672,7 +62733,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 20, + ACTIONS(2053), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63680,7 +62742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -63693,52 +62754,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7646] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [8008] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR, - ACTIONS(2534), 1, + ACTIONS(2509), 1, sym__special_character, - ACTIONS(2536), 1, + ACTIONS(2511), 1, anon_sym_DQUOTE, - ACTIONS(2538), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(2540), 1, + ACTIONS(2515), 1, aux_sym_number_token2, - ACTIONS(2542), 1, + ACTIONS(2517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2544), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2521), 1, anon_sym_BQUOTE, - ACTIONS(2548), 1, + ACTIONS(2523), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2552), 1, + ACTIONS(2527), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2554), 1, + ACTIONS(2529), 1, sym_test_operator, - ACTIONS(2556), 1, + ACTIONS(2531), 1, sym__brace_start, - STATE(1421), 1, + STATE(1427), 1, aux_sym__literal_repeat1, - ACTIONS(2023), 2, + ACTIONS(2223), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(2530), 2, + ACTIONS(2505), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2550), 2, + ACTIONS(2525), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(527), 2, + STATE(515), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2528), 3, + ACTIONS(2503), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1091), 9, + STATE(1042), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63748,7 +62825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 19, + ACTIONS(2219), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63768,51 +62845,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7742] = 21, + [8104] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 1, + ACTIONS(2049), 1, sym_file_descriptor, - ACTIONS(2564), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2539), 1, sym__special_character, - ACTIONS(2570), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(2573), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2576), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2579), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, + ACTIONS(2551), 1, anon_sym_BQUOTE, - ACTIONS(2588), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2594), 1, + ACTIONS(2557), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2597), 1, + ACTIONS(2559), 1, sym_test_operator, - ACTIONS(2600), 1, + ACTIONS(2561), 1, sym__brace_start, - STATE(1390), 1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2561), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(514), 2, + STATE(509), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2558), 3, + ACTIONS(2533), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1135), 9, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63822,7 +62899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2230), 20, + ACTIONS(2023), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63843,32 +62920,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [7838] = 7, + [8200] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 1, + ACTIONS(2101), 1, + sym_file_descriptor, + ACTIONS(2569), 1, + anon_sym_DOLLAR, + ACTIONS(2572), 1, + sym__special_character, + ACTIONS(2575), 1, anon_sym_DQUOTE, - STATE(960), 1, - sym_string, - ACTIONS(2605), 2, + ACTIONS(2578), 1, + aux_sym_number_token1, + ACTIONS(2581), 1, + aux_sym_number_token2, + ACTIONS(2584), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2590), 1, + anon_sym_BQUOTE, + ACTIONS(2593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2599), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2602), 1, + sym_test_operator, + ACTIONS(2605), 1, sym__brace_start, - ACTIONS(2603), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(2566), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2596), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(509), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2563), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1082), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2063), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63876,10 +62982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63890,45 +62995,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [7906] = 7, + [8296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2610), 1, anon_sym_DQUOTE, - STATE(1190), 1, + STATE(1029), 1, sym_string, - ACTIONS(2611), 2, + ACTIONS(2612), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2607), 9, + ACTIONS(2608), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -63965,111 +63056,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [7974] = 6, + [8364] = 21, ACTIONS(3), 1, sym_comment, - STATE(1438), 1, - aux_sym__literal_repeat1, - STATE(518), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 4, + ACTIONS(2223), 1, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2537), 1, anon_sym_DOLLAR, + ACTIONS(2539), 1, sym__special_character, + ACTIONS(2541), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2543), 1, aux_sym_number_token1, + ACTIONS(2545), 1, aux_sym_number_token2, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2551), 1, anon_sym_BQUOTE, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(2559), 1, sym_test_operator, - [8040] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2619), 1, - anon_sym_DOLLAR, - ACTIONS(2622), 1, - sym__special_character, - ACTIONS(2625), 1, - anon_sym_DQUOTE, - ACTIONS(2628), 1, - aux_sym_number_token1, - ACTIONS(2631), 1, - aux_sym_number_token2, - ACTIONS(2634), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2640), 1, - anon_sym_BQUOTE, - ACTIONS(2643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2649), 1, - sym_test_operator, - ACTIONS(2652), 1, + ACTIONS(2561), 1, sym__brace_start, - STATE(1438), 1, + ACTIONS(2614), 1, + aux_sym__simple_variable_name_token1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2616), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2646), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(518), 2, + STATE(508), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2094), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(2613), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2533), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1129), 9, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64079,7 +63110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 19, + ACTIONS(2219), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64087,6 +63118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -64099,19 +63131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8134] = 6, + [8460] = 6, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - STATE(523), 2, + STATE(517), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, + ACTIONS(1915), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(1122), 9, + STATE(1125), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64121,7 +63153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 37, + ACTIONS(1913), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -64159,20 +63191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8200] = 6, + [8526] = 6, ACTIONS(3), 1, sym_comment, - STATE(1438), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(518), 2, + STATE(516), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2047), 4, + ACTIONS(1915), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - STATE(1129), 9, + STATE(1108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64182,7 +63214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 36, + ACTIONS(1913), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -64219,49 +63251,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8266] = 20, + [8592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2214), 1, sym_file_descriptor, - ACTIONS(2661), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(2664), 1, + ACTIONS(2625), 1, sym__special_character, - ACTIONS(2667), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2670), 1, + ACTIONS(2631), 1, aux_sym_number_token1, - ACTIONS(2673), 1, + ACTIONS(2634), 1, aux_sym_number_token2, - ACTIONS(2676), 1, + ACTIONS(2637), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2679), 1, + ACTIONS(2640), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2682), 1, + ACTIONS(2643), 1, anon_sym_BQUOTE, - ACTIONS(2685), 1, + ACTIONS(2646), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2691), 1, + ACTIONS(2652), 1, sym_test_operator, - ACTIONS(2694), 1, + ACTIONS(2655), 1, sym__brace_start, - STATE(1386), 1, + STATE(1374), 1, aux_sym__literal_repeat1, - ACTIONS(2658), 2, + ACTIONS(2619), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2688), 2, + ACTIONS(2649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(521), 2, + STATE(514), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2655), 3, + ACTIONS(2616), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1179), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64271,7 +63303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 21, + ACTIONS(2179), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64293,49 +63325,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8360] = 20, + [8686] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2701), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR, - ACTIONS(2703), 1, + ACTIONS(2509), 1, sym__special_character, - ACTIONS(2705), 1, + ACTIONS(2511), 1, anon_sym_DQUOTE, - ACTIONS(2707), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(2709), 1, + ACTIONS(2515), 1, aux_sym_number_token2, - ACTIONS(2711), 1, + ACTIONS(2517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, + ACTIONS(2521), 1, anon_sym_BQUOTE, - ACTIONS(2717), 1, + ACTIONS(2523), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2721), 1, + ACTIONS(2529), 1, sym_test_operator, - ACTIONS(2723), 1, + ACTIONS(2531), 1, sym__brace_start, - STATE(1386), 1, + ACTIONS(2658), 1, + aux_sym__simple_variable_name_token1, + STATE(1427), 1, aux_sym__literal_repeat1, - ACTIONS(2699), 2, + ACTIONS(2049), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2505), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2719), 2, + ACTIONS(2525), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(521), 2, + STATE(501), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2697), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2503), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1179), 9, + STATE(1042), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64345,7 +63380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 21, + ACTIONS(2023), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64355,8 +63390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64367,50 +63400,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8454] = 20, + [8782] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 1, + ACTIONS(2666), 1, anon_sym_DOLLAR, - ACTIONS(2734), 1, + ACTIONS(2669), 1, sym__special_character, - ACTIONS(2737), 1, + ACTIONS(2672), 1, anon_sym_DQUOTE, - ACTIONS(2740), 1, + ACTIONS(2675), 1, aux_sym_number_token1, - ACTIONS(2743), 1, + ACTIONS(2678), 1, aux_sym_number_token2, - ACTIONS(2746), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, + ACTIONS(2684), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, + ACTIONS(2687), 1, anon_sym_BQUOTE, - ACTIONS(2755), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2761), 1, + ACTIONS(2696), 1, sym_test_operator, - ACTIONS(2764), 1, + ACTIONS(2699), 1, sym__brace_start, - STATE(1443), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, + ACTIONS(2663), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, + ACTIONS(2693), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(523), 2, + STATE(516), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2725), 3, + ACTIONS(2214), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(2660), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1122), 9, + STATE(1108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64420,7 +63454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 20, + ACTIONS(2179), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64428,7 +63462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -64441,92 +63474,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8548] = 7, + [8876] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - STATE(878), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2769), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2708), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2711), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2714), 1, + anon_sym_DQUOTE, + ACTIONS(2717), 1, aux_sym_number_token1, + ACTIONS(2720), 1, aux_sym_number_token2, + ACTIONS(2723), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2726), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2729), 1, anon_sym_BQUOTE, + ACTIONS(2732), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2738), 1, + sym_test_operator, + ACTIONS(2741), 1, + sym__brace_start, + STATE(1435), 1, + aux_sym__literal_repeat1, + ACTIONS(2214), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(517), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2702), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [8616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - STATE(878), 1, + STATE(1125), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2769), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2179), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64534,11 +63535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64549,63 +63548,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8684] = 20, + [8970] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(1915), 1, sym_file_descriptor, - ACTIONS(2701), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR, - ACTIONS(2703), 1, + ACTIONS(2750), 1, sym__special_character, - ACTIONS(2705), 1, + ACTIONS(2752), 1, anon_sym_DQUOTE, - ACTIONS(2707), 1, + ACTIONS(2754), 1, aux_sym_number_token1, - ACTIONS(2709), 1, + ACTIONS(2756), 1, aux_sym_number_token2, - ACTIONS(2711), 1, + ACTIONS(2758), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, + ACTIONS(2762), 1, anon_sym_BQUOTE, - ACTIONS(2717), 1, + ACTIONS(2764), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2721), 1, + ACTIONS(2768), 1, sym_test_operator, - ACTIONS(2723), 1, + ACTIONS(2770), 1, sym__brace_start, - STATE(1386), 1, + STATE(1374), 1, aux_sym__literal_repeat1, - ACTIONS(2699), 2, + ACTIONS(2746), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2719), 2, + ACTIONS(2766), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(521), 2, + STATE(514), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2697), 3, + ACTIONS(2744), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1179), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64615,7 +63600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 21, + ACTIONS(1913), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64637,62 +63622,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8778] = 21, + [9064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_DOLLAR, - ACTIONS(2534), 1, - sym__special_character, - ACTIONS(2536), 1, + ACTIONS(2610), 1, anon_sym_DQUOTE, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2546), 1, - anon_sym_BQUOTE, - ACTIONS(2548), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2554), 1, - sym_test_operator, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(2771), 1, + STATE(1029), 1, + sym_string, + ACTIONS(2612), 2, aux_sym__simple_variable_name_token1, - STATE(1421), 1, - aux_sym__literal_repeat1, - ACTIONS(2015), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2530), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(2608), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(536), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2528), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64702,6 +63657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64712,31 +63669,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [8874] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [9132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2029), 1, anon_sym_DQUOTE, - STATE(1190), 1, + STATE(871), 1, sym_string, - ACTIONS(2611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1237), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(2607), 9, + ACTIONS(2501), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2499), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 36, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -64745,6 +63715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -64773,44 +63744,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [8942] = 7, + [9200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - STATE(926), 1, + STATE(995), 1, sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(2367), 9, + ACTIONS(2774), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2772), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1225), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -64834,41 +63805,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9010] = 6, + [9268] = 7, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(523), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + STATE(957), 1, + sym_string, + ACTIONS(2339), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 37, + ACTIONS(2337), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -64879,9 +63853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -64894,30 +63866,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9076] = 7, + [9336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - STATE(1047), 1, + STATE(995), 1, sym_string, - ACTIONS(1213), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(2775), 2, + ACTIONS(2774), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, + ACTIONS(2772), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 37, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -64955,51 +63927,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9144] = 21, + [9404] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2055), 1, sym_file_descriptor, - ACTIONS(2502), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR, - ACTIONS(2504), 1, + ACTIONS(2750), 1, sym__special_character, - ACTIONS(2506), 1, + ACTIONS(2752), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2754), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2756), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2758), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, + ACTIONS(2762), 1, anon_sym_BQUOTE, - ACTIONS(2518), 1, + ACTIONS(2764), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2524), 1, + ACTIONS(2768), 1, sym_test_operator, - ACTIONS(2526), 1, + ACTIONS(2770), 1, sym__brace_start, - ACTIONS(2777), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, + STATE(1374), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, + ACTIONS(2746), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2766), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(512), 2, + STATE(514), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2498), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2744), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1135), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65009,7 +63979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 20, + ACTIONS(2053), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65017,9 +63987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65030,44 +64001,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9240] = 7, + [9498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(517), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2055), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, + STATE(1125), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -65078,7 +64046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65091,92 +64061,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9308] = 7, - ACTIONS(3), 1, + [9564] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - STATE(1047), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(2780), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2778), 21, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(2775), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(2776), 26, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [9627] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2780), 1, anon_sym_SEMI_SEMI, + ACTIONS(2782), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + ACTIONS(2778), 21, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [9376] = 7, + ACTIONS(2776), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [9690] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 1, + ACTIONS(1785), 1, anon_sym_DQUOTE, - STATE(960), 1, + STATE(1076), 1, sym_string, - ACTIONS(2605), 2, + ACTIONS(2786), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(2603), 9, + ts_builtin_sym_end, + ACTIONS(2784), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -65187,8 +64213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65213,52 +64237,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [9444] = 21, + [9757] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2708), 1, anon_sym_DOLLAR, - ACTIONS(2788), 1, - sym__special_character, - ACTIONS(2791), 1, + ACTIONS(2714), 1, anon_sym_DQUOTE, - ACTIONS(2794), 1, + ACTIONS(2717), 1, aux_sym_number_token1, - ACTIONS(2797), 1, + ACTIONS(2720), 1, aux_sym_number_token2, - ACTIONS(2800), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2803), 1, + ACTIONS(2726), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2806), 1, + ACTIONS(2729), 1, anon_sym_BQUOTE, - ACTIONS(2809), 1, + ACTIONS(2732), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2815), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2818), 1, - sym_test_operator, - ACTIONS(2821), 1, + ACTIONS(2741), 1, sym__brace_start, - STATE(1421), 1, + ACTIONS(2791), 1, + sym__special_character, + ACTIONS(2794), 1, + sym_test_operator, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(2268), 2, + ACTIONS(2214), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2782), 2, + sym_variable_name, + ACTIONS(2705), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2812), 2, + ACTIONS(2735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(536), 2, + STATE(529), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2779), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2788), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1091), 9, + STATE(1288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65268,51 +64290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2230), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9540] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - STATE(1105), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2826), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, + ACTIONS(2179), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65322,8 +64300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65334,70 +64310,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9607] = 23, + [9850] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(1443), 1, sym_file_descriptor, - ACTIONS(1847), 1, + ACTIONS(1883), 1, anon_sym_DOLLAR, - ACTIONS(1853), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(1856), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, + ACTIONS(1897), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1886), 1, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(2831), 1, + ACTIONS(2799), 1, sym__special_character, - ACTIONS(2834), 1, + ACTIONS(2801), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2837), 1, + ACTIONS(2803), 1, sym_test_operator, - ACTIONS(2840), 1, + ACTIONS(2805), 1, sym_variable_name, - STATE(1289), 1, + STATE(1359), 1, aux_sym__literal_repeat1, - STATE(4369), 1, + STATE(4165), 1, sym_subscript, - ACTIONS(1844), 2, + ACTIONS(1881), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, + ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2828), 3, + ACTIONS(2797), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(538), 3, + STATE(558), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1533), 9, + STATE(1538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65407,7 +64369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1467), 16, + ACTIONS(1417), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -65424,49 +64386,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [9706] = 20, + [9949] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2101), 1, sym_file_descriptor, - ACTIONS(2502), 1, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(2506), 1, + ACTIONS(2575), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2578), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2581), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2587), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2590), 1, + anon_sym_BQUOTE, + ACTIONS(2593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, + ACTIONS(2605), 1, sym__brace_start, - ACTIONS(2845), 1, + ACTIONS(2810), 1, sym__special_character, - ACTIONS(2847), 1, + ACTIONS(2813), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2849), 1, + ACTIONS(2816), 1, sym_test_operator, - STATE(1390), 1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, + ACTIONS(2566), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2596), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(549), 2, + STATE(531), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, + ACTIONS(2807), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1242), 9, + STATE(1317), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65476,7 +64440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 20, + ACTIONS(2063), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65496,109 +64460,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [9799] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2855), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [9862] = 20, + [10044] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(2049), 1, + sym_file_descriptor, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(2868), 1, - sym__special_character, - ACTIONS(2871), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(2874), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2877), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2880), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2883), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2886), 1, - anon_sym_BQUOTE, - ACTIONS(2889), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2895), 1, - sym_test_operator, - ACTIONS(2898), 1, + ACTIONS(2561), 1, sym__brace_start, - STATE(1555), 1, + ACTIONS(2821), 1, + sym__special_character, + ACTIONS(2823), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2825), 1, + sym_test_operator, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2862), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2892), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(541), 2, + STATE(531), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2859), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2819), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1212), 9, + STATE(1317), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65608,7 +64512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 19, + ACTIONS(2023), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65628,29 +64532,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [9955] = 6, + anon_sym_BQUOTE, + [10137] = 7, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(553), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, + ACTIONS(2281), 1, + anon_sym_DQUOTE, + STATE(1153), 1, + sym_string, + ACTIONS(1237), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 36, + ACTIONS(2829), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2827), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -65661,6 +64567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65672,9 +64580,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [10204] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, anon_sym_DQUOTE, + STATE(1257), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(2833), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2831), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65687,51 +64653,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10020] = 21, + [10271] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(2049), 1, sym_file_descriptor, - ACTIONS(2502), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(2506), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, + ACTIONS(2551), 1, anon_sym_BQUOTE, - ACTIONS(2518), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(2845), 1, + ACTIONS(2821), 1, sym__special_character, - ACTIONS(2849), 1, - sym_test_operator, - ACTIONS(2901), 1, + ACTIONS(2823), 1, aux_sym__simple_variable_name_token1, - STATE(1390), 1, + ACTIONS(2825), 1, + sym_test_operator, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(547), 2, + STATE(531), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, + ACTIONS(2819), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1242), 9, + STATE(1317), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65741,7 +64707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 19, + ACTIONS(2023), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65761,32 +64727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [10115] = 7, + [10366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_DQUOTE, - STATE(1276), 1, - sym_string, - ACTIONS(2907), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(529), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1915), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2903), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, + STATE(1288), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1913), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -65808,7 +64771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65821,49 +64786,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10182] = 20, + [10431] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2837), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2835), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2778), 21, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(2776), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [10494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(2915), 1, + ACTIONS(2845), 1, sym__special_character, - ACTIONS(2917), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, + ACTIONS(2857), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2933), 1, + ACTIONS(2863), 1, sym_test_operator, - ACTIONS(2935), 1, + ACTIONS(2865), 1, sym__brace_start, - STATE(1519), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(555), 2, + STATE(545), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2909), 3, + ACTIONS(2839), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1339), 9, + STATE(1293), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -65873,7 +64896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 20, + ACTIONS(2053), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -65894,32 +64917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [10275] = 7, + [10587] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(1785), 1, anon_sym_DQUOTE, - STATE(1276), 1, + STATE(1076), 1, sym_string, - ACTIONS(2907), 2, + ACTIONS(2786), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, + ACTIONS(1237), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2903), 9, + ACTIONS(2784), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -65954,84 +64977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10342] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2564), 1, - anon_sym_DOLLAR, - ACTIONS(2570), 1, - anon_sym_DQUOTE, - ACTIONS(2573), 1, - aux_sym_number_token1, - ACTIONS(2576), 1, - aux_sym_number_token2, - ACTIONS(2579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, - anon_sym_BQUOTE, - ACTIONS(2588), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2600), 1, - sym__brace_start, - ACTIONS(2940), 1, - sym__special_character, - ACTIONS(2943), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2946), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2561), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(547), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2937), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10437] = 3, + [10654] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(931), 21, + ACTIONS(937), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -66053,7 +65002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(663), 30, + ACTIONS(679), 30, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -66084,49 +65033,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10496] = 20, + [10713] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(1915), 1, sym_file_descriptor, - ACTIONS(2502), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(2506), 1, + ACTIONS(2845), 1, + sym__special_character, + ACTIONS(2847), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2518), 1, + ACTIONS(2857), 1, + anon_sym_BQUOTE, + ACTIONS(2859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2849), 1, + ACTIONS(2863), 1, sym_test_operator, - ACTIONS(2901), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, + ACTIONS(2865), 1, + sym__brace_start, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(547), 2, + STATE(545), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2839), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1242), 9, + STATE(1293), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66136,7 +65085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 20, + ACTIONS(1913), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66144,6 +65093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66156,20 +65106,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [10589] = 6, + [10806] = 23, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(553), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, + ACTIONS(1505), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(1883), 1, + anon_sym_DOLLAR, + ACTIONS(1887), 1, + anon_sym_DQUOTE, + ACTIONS(1889), 1, + aux_sym_number_token1, + ACTIONS(1891), 1, + aux_sym_number_token2, + ACTIONS(1893), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1895), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1897), 1, + anon_sym_BQUOTE, + ACTIONS(1899), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1909), 1, sym__brace_start, - STATE(1287), 9, + ACTIONS(2799), 1, + sym__special_character, + ACTIONS(2803), 1, + sym_test_operator, + ACTIONS(2805), 1, + sym_variable_name, + ACTIONS(2867), 1, + aux_sym__simple_variable_name_token1, + STATE(1359), 1, + aux_sym__literal_repeat1, + STATE(4165), 1, + sym_subscript, + ACTIONS(1881), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1901), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2797), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(530), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66179,9 +65165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(1501), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -66189,7 +65173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66199,33 +65182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10654] = 5, + [10905] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2855), 2, + ACTIONS(2835), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2857), 2, + ACTIONS(2837), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2853), 21, + ACTIONS(2778), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -66247,7 +65213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2851), 26, + ACTIONS(2776), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -66274,30 +65240,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10717] = 7, + [10968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - STATE(1105), 1, + STATE(1092), 1, sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2826), 2, + ACTIONS(2871), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, + ACTIONS(1237), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2869), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1235), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -66306,10 +65273,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66334,50 +65300,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [10784] = 20, + [11035] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 1, + ACTIONS(2214), 1, + sym_file_descriptor, + ACTIONS(2879), 1, anon_sym_DOLLAR, - ACTIONS(2737), 1, + ACTIONS(2882), 1, + sym__special_character, + ACTIONS(2885), 1, anon_sym_DQUOTE, - ACTIONS(2740), 1, + ACTIONS(2888), 1, aux_sym_number_token1, - ACTIONS(2743), 1, + ACTIONS(2891), 1, aux_sym_number_token2, - ACTIONS(2746), 1, + ACTIONS(2894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, + ACTIONS(2900), 1, anon_sym_BQUOTE, - ACTIONS(2755), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2764), 1, - sym__brace_start, - ACTIONS(2952), 1, - sym__special_character, - ACTIONS(2955), 1, + ACTIONS(2909), 1, sym_test_operator, - STATE(1443), 1, + ACTIONS(2912), 1, + sym__brace_start, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, + ACTIONS(2876), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, + ACTIONS(2906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(553), 2, + STATE(545), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2949), 3, + ACTIONS(2873), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1287), 9, + STATE(1293), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66387,53 +65352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10877] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2960), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2958), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(2179), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66441,6 +65360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66453,63 +65373,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10944] = 20, + [11128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2968), 1, + ACTIONS(2919), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + ACTIONS(2921), 1, sym__special_character, - ACTIONS(2974), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, - ACTIONS(2977), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(2980), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(2983), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, + ACTIONS(2933), 1, anon_sym_BQUOTE, - ACTIONS(2992), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2998), 1, + ACTIONS(2939), 1, sym_test_operator, - ACTIONS(3001), 1, + ACTIONS(2941), 1, sym__brace_start, - STATE(1519), 1, + STATE(1458), 1, aux_sym__literal_repeat1, - ACTIONS(2965), 2, + ACTIONS(1915), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, + ACTIONS(2937), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(555), 2, + STATE(549), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2962), 3, + ACTIONS(2915), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1339), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66519,7 +65426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 20, + ACTIONS(1913), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66527,7 +65434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -66540,32 +65446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11037] = 7, + [11221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - STATE(1051), 1, + STATE(1309), 1, sym_string, - ACTIONS(2960), 2, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2958), 9, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -66600,73 +65506,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11104] = 23, + [11288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(3006), 1, - sym__special_character, - ACTIONS(3008), 1, + STATE(1092), 1, + sym_string, + ACTIONS(2871), 2, aux_sym__simple_variable_name_token1, - ACTIONS(3010), 1, - sym_test_operator, - ACTIONS(3012), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, sym_variable_name, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4369), 1, - sym_subscript, - ACTIONS(1923), 2, + sym__brace_start, + ACTIONS(2869), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3004), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(538), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1533), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 16, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66676,120 +65551,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [11203] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3020), 1, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3024), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3026), 1, aux_sym_number_token2, - ACTIONS(3028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, anon_sym_BQUOTE, - ACTIONS(3034), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3038), 1, - sym_test_operator, - ACTIONS(3040), 1, - sym__brace_start, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(2047), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3016), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3036), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(541), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3014), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [11296] = 21, + sym_test_operator, + [11355] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2502), 1, + ACTIONS(2955), 1, anon_sym_DOLLAR, - ACTIONS(2506), 1, + ACTIONS(2958), 1, + sym__special_character, + ACTIONS(2961), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2964), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(2967), 1, aux_sym_number_token2, - ACTIONS(2512), 1, + ACTIONS(2970), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, + ACTIONS(2973), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, + ACTIONS(2976), 1, anon_sym_BQUOTE, - ACTIONS(2518), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2849), 1, + ACTIONS(2985), 1, sym_test_operator, - ACTIONS(3042), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, + ACTIONS(2988), 1, + sym__brace_start, + STATE(1458), 1, aux_sym__literal_repeat1, - ACTIONS(2500), 2, + ACTIONS(2214), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(2952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + ACTIONS(2982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(543), 2, + STATE(549), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2949), 3, sym_raw_string, sym_ansi_c_string, sym_word, @@ -66803,7 +65619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2019), 19, + ACTIONS(2179), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66823,164 +65639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11391] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3044), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(3046), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [11454] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(3006), 1, - sym__special_character, - ACTIONS(3010), 1, - sym_test_operator, - ACTIONS(3012), 1, - sym_variable_name, - ACTIONS(3048), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4369), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3004), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(557), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1533), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [11553] = 7, + [11448] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - STATE(1351), 1, + STATE(1309), 1, sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3052), 2, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, + ACTIONS(1237), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 36, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -66991,8 +65675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67017,31 +65699,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11620] = 7, + [11515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - STATE(1302), 1, + STATE(1200), 1, sym_string, - ACTIONS(3058), 2, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3054), 9, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 35, + ACTIONS(1235), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67077,30 +65759,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11687] = 7, + [11582] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - STATE(1351), 1, + STATE(1200), 1, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3052), 2, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 36, + ACTIONS(1225), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67109,10 +65792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67137,31 +65819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11754] = 7, + [11649] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(2752), 1, anon_sym_DQUOTE, - STATE(1144), 1, + STATE(1257), 1, sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3060), 9, + ACTIONS(2833), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2831), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 35, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67170,9 +65851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67197,107 +65879,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [11821] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3044), 1, - anon_sym_SEMI_SEMI, - ACTIONS(3046), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [11884] = 20, + [11716] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2223), 1, sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(2915), 1, - sym__special_character, - ACTIONS(2917), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, + ACTIONS(2551), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2933), 1, - sym_test_operator, - ACTIONS(2935), 1, + ACTIONS(2561), 1, sym__brace_start, - STATE(1519), 1, + ACTIONS(2821), 1, + sym__special_character, + ACTIONS(2825), 1, + sym_test_operator, + ACTIONS(2997), 1, + aux_sym__simple_variable_name_token1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(555), 2, + STATE(535), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2909), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2819), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1339), 9, + STATE(1317), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67307,7 +65933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 20, + ACTIONS(2219), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67315,7 +65941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -67328,50 +65953,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [11977] = 20, + [11811] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 1, + ACTIONS(2919), 1, anon_sym_DOLLAR, - ACTIONS(3020), 1, + ACTIONS(2921), 1, sym__special_character, - ACTIONS(3022), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, - ACTIONS(3024), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(3028), 1, + ACTIONS(2929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2933), 1, anon_sym_BQUOTE, - ACTIONS(3034), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3038), 1, + ACTIONS(2939), 1, sym_test_operator, - ACTIONS(3040), 1, + ACTIONS(2941), 1, sym__brace_start, - STATE(1555), 1, + STATE(1458), 1, aux_sym__literal_repeat1, - ACTIONS(2051), 2, + ACTIONS(2055), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(3016), 2, + ACTIONS(2917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3036), 2, + ACTIONS(2937), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(541), 2, + STATE(549), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3014), 3, + ACTIONS(2915), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1212), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67381,7 +66006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 19, + ACTIONS(2053), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67401,31 +66026,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [12070] = 7, + [11904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(529), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2055), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, + STATE(1288), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67434,7 +66057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -67448,7 +66070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -67461,151 +66085,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12137] = 7, + [11969] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(2223), 1, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2537), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2541), 1, + anon_sym_DQUOTE, + ACTIONS(2543), 1, aux_sym_number_token1, + ACTIONS(2545), 1, aux_sym_number_token2, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12204] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(3066), 2, + ACTIONS(2821), 1, + sym__special_character, + ACTIONS(2825), 1, + sym_test_operator, + ACTIONS(2999), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(532), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2819), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [12270] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, + STATE(1317), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2219), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67625,61 +66157,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12336] = 19, + [12062] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1493), 1, sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(2917), 1, + ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(1744), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(1747), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(1750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(1753), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2929), 1, + ACTIONS(1756), 1, + anon_sym_BQUOTE, + ACTIONS(1759), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, + ACTIONS(1774), 1, sym__brace_start, - ACTIONS(3070), 1, + ACTIONS(3004), 1, sym__special_character, - ACTIONS(3072), 1, + ACTIONS(3007), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3010), 1, sym_test_operator, - STATE(1519), 1, + ACTIONS(3013), 1, + sym_variable_name, + STATE(1359), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + STATE(4165), 1, + sym_subscript, + ACTIONS(1732), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, + ACTIONS(1762), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, + ACTIONS(3001), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1375), 9, + STATE(558), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67689,8 +66217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 20, - anon_sym_SEMI, + ACTIONS(1455), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -67698,7 +66225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67708,33 +66234,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [12426] = 7, + [12161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2281), 1, anon_sym_DQUOTE, - STATE(1333), 1, + STATE(1153), 1, sym_string, - ACTIONS(3076), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3074), 9, + ACTIONS(2829), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2827), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1225), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67745,6 +66268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -67769,31 +66294,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12492] = 7, + [12228] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2511), 1, anon_sym_DQUOTE, - STATE(1333), 1, + STATE(1279), 1, sym_string, - ACTIONS(3076), 2, + ACTIONS(3018), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 3, sym_file_descriptor, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3074), 9, + ACTIONS(3016), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -67828,81 +66353,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [12558] = 32, - ACTIONS(63), 1, + [12294] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(562), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1053), 1, + sym__special_character, + ACTIONS(1527), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, anon_sym_BQUOTE, - ACTIONS(580), 1, + ACTIONS(1953), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(584), 1, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(3024), 1, sym_test_operator, - ACTIONS(588), 1, - sym_variable_name, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3078), 1, - sym_word, - STATE(450), 1, - sym_command_name, - STATE(940), 1, + STATE(563), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1200), 1, + STATE(1360), 1, sym_concatenation, - STATE(1408), 1, - sym_variable_assignment, - STATE(3072), 1, - sym_command, - STATE(4360), 1, - sym_subscript, - ACTIONS(546), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(568), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(582), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(941), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3067), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(734), 9, + ACTIONS(3022), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3020), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67912,81 +66411,148 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [12674] = 32, + ACTIONS(1511), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [12392] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(442), 1, + ACTIONS(3026), 1, + sym_word, + ACTIONS(3032), 1, anon_sym_DOLLAR, - ACTIONS(444), 1, + ACTIONS(3035), 1, sym__special_character, - ACTIONS(446), 1, + ACTIONS(3038), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(3044), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(3047), 1, aux_sym_number_token2, - ACTIONS(454), 1, + ACTIONS(3050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, + ACTIONS(3053), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, + ACTIONS(3056), 1, anon_sym_BQUOTE, - ACTIONS(460), 1, + ACTIONS(3059), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(464), 1, + ACTIONS(3065), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3068), 1, sym_test_operator, - ACTIONS(468), 1, + ACTIONS(3071), 1, sym_variable_name, - ACTIONS(470), 1, + ACTIONS(3074), 1, sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3080), 1, - sym_word, - STATE(446), 1, - sym_command_name, - STATE(831), 1, + STATE(1793), 1, aux_sym__literal_repeat1, - STATE(1003), 1, - sym_concatenation, - STATE(1216), 1, - sym_variable_assignment, - STATE(3072), 1, - sym_command, - STATE(4372), 1, + STATE(4125), 1, sym_subscript, - ACTIONS(406), 2, + ACTIONS(3029), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(448), 2, + ACTIONS(3041), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(462), 2, + ACTIONS(3062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1002), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3067), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, + STATE(562), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1455), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1445), 5, + STATE(1603), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1493), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(665), 9, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [12492] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1053), 1, + sym__special_character, + ACTIONS(1533), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(3024), 1, + sym_test_operator, + STATE(589), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym__literal_repeat1, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1955), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3022), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3020), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67996,81 +66562,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [12790] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, + ACTIONS(1531), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [12590] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(360), 1, + ACTIONS(2055), 1, + sym_file_descriptor, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(2857), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(773), 1, + ACTIONS(3079), 1, sym__special_character, - ACTIONS(777), 1, + ACTIONS(3081), 1, sym_test_operator, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3082), 1, - sym_word, - STATE(481), 1, - sym_command_name, - STATE(1096), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(1484), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4373), 1, - sym_subscript, - ACTIONS(340), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(775), 2, + STATE(569), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3077), 3, sym_raw_string, sym_ansi_c_string, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(778), 9, + sym_word, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68080,7 +66631,27 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [12906] = 32, + ACTIONS(2053), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [12682] = 32, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, @@ -68089,72 +66660,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(364), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, + ACTIONS(431), 1, sym_test_operator, - ACTIONS(386), 1, + ACTIONS(435), 1, sym_variable_name, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3084), 1, + ACTIONS(3083), 1, sym_word, - STATE(488), 1, + STATE(475), 1, sym_command_name, - STATE(1096), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1341), 1, + STATE(1352), 1, sym_concatenation, - STATE(1484), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4321), 1, + STATE(4070), 1, sym_subscript, - ACTIONS(340), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, + ACTIONS(415), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(380), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(957), 2, + STATE(913), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(959), 9, + STATE(898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68164,81 +66735,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13022] = 32, - ACTIONS(63), 1, + [12798] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(330), 1, - sym_variable_name, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, + ACTIONS(1915), 1, + sym_file_descriptor, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(1045), 1, - sym__special_character, - ACTIONS(1047), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(2857), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1065), 1, - sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3086), 1, - sym_word, - STATE(611), 1, - sym_command_name, - STATE(1731), 1, + ACTIONS(3079), 1, + sym__special_character, + ACTIONS(3081), 1, + sym_test_operator, + STATE(1449), 1, aux_sym__literal_repeat1, - STATE(1970), 1, - sym_concatenation, - STATE(2154), 1, - sym_variable_assignment, - STATE(3591), 1, - sym_command, - STATE(4307), 1, - sym_subscript, - ACTIONS(1033), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1049), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1063), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(896), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3592), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1544), 9, + STATE(569), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3077), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68248,61 +66787,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13138] = 24, + ACTIONS(1913), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [12890] = 32, ACTIONS(63), 1, sym_comment, - ACTIONS(3088), 1, - sym_word, - ACTIONS(3092), 1, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(3094), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(3096), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(3100), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(3102), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(3104), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(3110), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3114), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3116), 1, + ACTIONS(513), 1, sym_test_operator, - ACTIONS(3118), 1, + ACTIONS(517), 1, sym_variable_name, - ACTIONS(3120), 1, + ACTIONS(519), 1, sym__brace_start, - STATE(1986), 1, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3085), 1, + sym_word, + STATE(436), 1, + sym_command_name, + STATE(768), 1, aux_sym__literal_repeat1, - STATE(4382), 1, + STATE(878), 1, + sym_concatenation, + STATE(1246), 1, + sym_variable_assignment, + STATE(3025), 1, + sym_command, + STATE(4147), 1, sym_subscript, - ACTIONS(3090), 2, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3098), 2, + ACTIONS(497), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3112), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1517), 5, - anon_sym_LT_LT, + STATE(877), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3022), 2, + sym_subshell, + sym_test_command, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1588), 9, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(665), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68312,93 +66891,81 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1543), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13238] = 32, + [13006] = 32, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(123), 1, + sym_variable_name, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(45), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(69), 1, - sym_variable_name, - ACTIONS(71), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(781), 1, + sym__special_character, + ACTIONS(785), 1, + sym_test_operator, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3122), 1, + ACTIONS(3087), 1, sym_word, - STATE(473), 1, + STATE(470), 1, sym_command_name, - STATE(1104), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1275), 1, + STATE(1352), 1, sym_concatenation, - STATE(1461), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4317), 1, + STATE(4164), 1, sym_subscript, - ACTIONS(13), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(908), 2, + ACTIONS(783), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(922), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(794), 9, + STATE(803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68408,61 +66975,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [13354] = 24, - ACTIONS(63), 1, + [13122] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - sym_word, - ACTIONS(3092), 1, + ACTIONS(2214), 1, + sym_file_descriptor, + ACTIONS(2879), 1, anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym__special_character, - ACTIONS(3096), 1, + ACTIONS(2885), 1, anon_sym_DQUOTE, - ACTIONS(3100), 1, + ACTIONS(2888), 1, aux_sym_number_token1, - ACTIONS(3102), 1, + ACTIONS(2891), 1, aux_sym_number_token2, - ACTIONS(3104), 1, + ACTIONS(2894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, + ACTIONS(2900), 1, anon_sym_BQUOTE, - ACTIONS(3110), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3116), 1, - sym_test_operator, - ACTIONS(3118), 1, - sym_variable_name, - ACTIONS(3120), 1, + ACTIONS(2912), 1, sym__brace_start, - ACTIONS(3124), 1, - aux_sym__simple_variable_name_token1, - STATE(1986), 1, + ACTIONS(3092), 1, + sym__special_character, + ACTIONS(3095), 1, + sym_test_operator, + STATE(1449), 1, aux_sym__literal_repeat1, - STATE(4382), 1, - sym_subscript, - ACTIONS(3090), 2, + ACTIONS(2876), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3112), 2, + ACTIONS(2906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(581), 3, - sym_variable_assignment, + STATE(569), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1549), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1588), 9, + aux_sym_for_statement_repeat1, + ACTIONS(3089), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68472,43 +67027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1553), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, - anon_sym_LPAREN_LPAREN, + ACTIONS(2179), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -68516,7 +67035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -68529,44 +67047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [13520] = 7, + [13214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(1253), 1, + STATE(1440), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1233), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3128), 2, + ACTIONS(3100), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, + ACTIONS(3098), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 35, + ACTIONS(1225), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -68602,31 +67106,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13586] = 7, + [13280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1381), 1, sym_string, - ACTIONS(3132), 2, + ACTIONS(3104), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 3, sym_file_descriptor, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3130), 9, + ACTIONS(3102), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -68661,139 +67165,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13652] = 32, + [13346] = 32, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(43), 1, + sym__special_character, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1089), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(65), 1, sym_test_operator, - ACTIONS(1093), 1, + ACTIONS(69), 1, sym_variable_name, - ACTIONS(1449), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3134), 1, + ACTIONS(3106), 1, sym_word, - STATE(597), 1, + STATE(457), 1, sym_command_name, - STATE(1096), 1, + STATE(1038), 1, aux_sym__literal_repeat1, - STATE(1341), 1, + STATE(1267), 1, sym_concatenation, - STATE(1484), 1, + STATE(1451), 1, sym_variable_assignment, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4311), 1, + STATE(4136), 1, sym_subscript, - ACTIONS(340), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1087), 2, + ACTIONS(47), 2, sym_raw_string, sym_ansi_c_string, - STATE(899), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, + ACTIONS(61), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(953), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [13768] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, + STATE(836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -68803,48 +67249,31 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1591), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [13866] = 7, + [13462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1092), 1, sym_string, - ACTIONS(3132), 2, + ACTIONS(2871), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3130), 9, + ACTIONS(2869), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -68879,105 +67308,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [13932] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [14030] = 7, + [13528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - STATE(1431), 1, + STATE(1092), 1, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, + ACTIONS(2871), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, + ACTIONS(1237), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(2869), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 35, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -68986,7 +67341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -69013,31 +67367,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14096] = 7, + [13594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, - STATE(1144), 1, + STATE(1381), 1, sym_string, - ACTIONS(3062), 2, + ACTIONS(3104), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3060), 9, + ts_builtin_sym_end, + ACTIONS(3102), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -69072,31 +67426,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14162] = 7, + [13660] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3108), 1, + sym_word, + ACTIONS(3112), 1, + anon_sym_DOLLAR, + ACTIONS(3114), 1, + sym__special_character, + ACTIONS(3116), 1, + anon_sym_DQUOTE, + ACTIONS(3120), 1, + aux_sym_number_token1, + ACTIONS(3122), 1, + aux_sym_number_token2, + ACTIONS(3124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3128), 1, + anon_sym_BQUOTE, + ACTIONS(3130), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3134), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3136), 1, + sym_test_operator, + ACTIONS(3138), 1, + sym_variable_name, + ACTIONS(3140), 1, + sym__brace_start, + STATE(1793), 1, + aux_sym__literal_repeat1, + STATE(4125), 1, + sym_subscript, + ACTIONS(3110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3118), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3132), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(577), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1501), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1603), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1505), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [13760] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3108), 1, + sym_word, + ACTIONS(3112), 1, + anon_sym_DOLLAR, + ACTIONS(3114), 1, + sym__special_character, + ACTIONS(3116), 1, + anon_sym_DQUOTE, + ACTIONS(3120), 1, + aux_sym_number_token1, + ACTIONS(3122), 1, + aux_sym_number_token2, + ACTIONS(3124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3128), 1, + anon_sym_BQUOTE, + ACTIONS(3130), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3136), 1, + sym_test_operator, + ACTIONS(3138), 1, + sym_variable_name, + ACTIONS(3140), 1, + sym__brace_start, + ACTIONS(3142), 1, + aux_sym__simple_variable_name_token1, + STATE(1793), 1, + aux_sym__literal_repeat1, + STATE(4125), 1, + sym_subscript, + ACTIONS(3110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3118), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3132), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(562), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1417), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1603), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1443), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [13860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - STATE(1144), 1, + STATE(1200), 1, sym_string, - ACTIONS(3062), 2, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3060), 9, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -69131,47 +67637,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14228] = 19, + [13926] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2055), 1, sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(2917), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2929), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(3070), 1, + ACTIONS(3079), 1, sym__special_character, - ACTIONS(3072), 1, + ACTIONS(3081), 1, sym_test_operator, - STATE(1519), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, + STATE(569), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, + ACTIONS(3077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1375), 9, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69181,7 +67687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 20, + ACTIONS(2053), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -69202,31 +67708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [14318] = 7, + [14016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - STATE(1302), 1, + STATE(1200), 1, sym_string, - ACTIONS(3058), 2, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3054), 9, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -69261,55 +67767,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [14384] = 23, - ACTIONS(3), 1, + [14082] = 32, + ACTIONS(63), 1, sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(2114), 1, + ACTIONS(613), 1, + sym__special_character, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(2117), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(2120), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(2123), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, + ACTIONS(627), 1, anon_sym_BQUOTE, - ACTIONS(2132), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2141), 1, - sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - ACTIONS(3148), 1, - sym__special_character, - ACTIONS(3151), 1, + ACTIONS(633), 1, sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, + ACTIONS(637), 1, + sym_variable_name, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3144), 1, + sym_word, + STATE(443), 1, + sym_command_name, + STATE(993), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1008), 1, sym_concatenation, - ACTIONS(2102), 2, + STATE(1362), 1, + sym_variable_assignment, + STATE(3025), 1, + sym_command, + STATE(4071), 1, + sym_subscript, + ACTIONS(595), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3145), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3142), 3, + ACTIONS(617), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1382), 9, + ACTIONS(631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(992), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3022), 2, + sym_subshell, + sym_test_command, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(720), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69319,14 +67851,41 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1671), 16, + [14198] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_DQUOTE, + STATE(1191), 1, + sym_string, + ACTIONS(1237), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3148), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3146), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69336,55 +67895,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [14482] = 23, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [14264] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(1915), 1, + sym_file_descriptor, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(2847), 1, + anon_sym_DQUOTE, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(374), 1, + ACTIONS(2853), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, + ACTIONS(2859), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(1085), 1, + ACTIONS(3079), 1, sym__special_character, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, + ACTIONS(3081), 1, sym_test_operator, - STATE(590), 1, - aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(2841), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(2861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, + STATE(569), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1382), 9, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69394,7 +67960,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1661), 16, + ACTIONS(1913), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -69402,6 +67969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69411,49 +67979,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [14580] = 20, + anon_sym_AMP, + anon_sym_BQUOTE, + [14354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2541), 1, + anon_sym_DQUOTE, + STATE(1191), 1, + sym_string, + ACTIONS(1233), 2, sym_file_descriptor, - ACTIONS(2968), 1, + sym__brace_start, + ACTIONS(3148), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3146), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2974), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2980), 1, aux_sym_number_token2, - ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, anon_sym_BQUOTE, - ACTIONS(2992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [14420] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(3157), 1, + ACTIONS(1053), 1, sym__special_character, - ACTIONS(3160), 1, + ACTIONS(1669), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1959), 1, + sym__bare_dollar, + ACTIONS(3024), 1, sym_test_operator, - STATE(1519), 1, + STATE(591), 1, + aux_sym_command_repeat2, + STATE(1113), 1, aux_sym__literal_repeat1, - ACTIONS(2965), 2, + STATE(1360), 1, + sym_concatenation, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3154), 3, + ACTIONS(3022), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3020), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1375), 9, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69463,8 +68098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, + ACTIONS(1667), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -69472,7 +68106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69482,8 +68115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [14672] = 32, + [14518] = 32, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, @@ -69492,72 +68124,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(364), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1053), 1, + sym__special_character, + ACTIONS(1057), 1, sym_test_operator, - ACTIONS(386), 1, + ACTIONS(1061), 1, sym_variable_name, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3084), 1, + ACTIONS(3150), 1, sym_word, - STATE(495), 1, + STATE(585), 1, sym_command_name, - STATE(1096), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1341), 1, + STATE(1352), 1, sym_concatenation, - STATE(1665), 1, + STATE(1459), 1, sym_variable_assignment, - STATE(3033), 1, + STATE(3060), 1, sym_command, - STATE(4321), 1, + STATE(4131), 1, sym_subscript, - ACTIONS(340), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(949), 2, + ACTIONS(1055), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(882), 2, sym_file_redirect, aux_sym_command_repeat1, - STATE(3027), 2, + STATE(3059), 2, sym_subshell, sym_test_command, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(959), 9, + STATE(1394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69567,49 +68199,81 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [14788] = 20, - ACTIONS(3), 1, + [14634] = 32, + ACTIONS(63), 1, sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(262), 1, + anon_sym_LBRACK, + ACTIONS(266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(302), 1, + sym_variable_name, + ACTIONS(1071), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(2917), 1, + ACTIONS(1077), 1, + sym__special_character, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, + ACTIONS(1097), 1, sym_test_operator, - STATE(1519), 1, + ACTIONS(1101), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3152), 1, + sym_word, + STATE(605), 1, + sym_command_name, + STATE(1741), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + STATE(1802), 1, + sym_concatenation, + STATE(2031), 1, + sym_variable_assignment, + STATE(3394), 1, + sym_command, + STATE(4068), 1, + sym_subscript, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, + ACTIONS(1081), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1375), 9, + ACTIONS(1095), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(927), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3392), 2, + sym_subshell, + sym_test_command, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1506), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69619,7 +68283,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 19, + [14750] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 1, + anon_sym_DQUOTE, + STATE(1279), 1, + sym_string, + ACTIONS(3018), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3016), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -69639,127 +68328,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [14880] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2921), 1, aux_sym_number_token2, - ACTIONS(2923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [14972] = 23, + sym_test_operator, + [14816] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(1627), 1, + sym_file_descriptor, + ACTIONS(2117), 1, anon_sym_DOLLAR, - ACTIONS(368), 1, + ACTIONS(2123), 1, + anon_sym_DQUOTE, + ACTIONS(2126), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2129), 1, aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(2132), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, + ACTIONS(2135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2138), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(2141), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(2150), 1, sym__bare_dollar, - ACTIONS(3140), 1, + ACTIONS(2153), 1, + sym__brace_start, + ACTIONS(3160), 1, + sym__special_character, + ACTIONS(3163), 1, sym_test_operator, - STATE(588), 1, + STATE(589), 1, aux_sym_command_repeat2, - STATE(1154), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1265), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1967), 2, + ACTIONS(2111), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3138), 2, + ACTIONS(3157), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3136), 3, + ACTIONS(3154), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1382), 9, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69769,7 +68400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1717), 16, + ACTIONS(1589), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -69786,61 +68417,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [15070] = 24, + [14914] = 32, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(3163), 1, - sym_word, - ACTIONS(3169), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(3172), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(3175), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(3181), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(3184), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(3187), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3190), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3193), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(3196), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3202), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3205), 1, + ACTIONS(431), 1, sym_test_operator, - ACTIONS(3208), 1, + ACTIONS(435), 1, sym_variable_name, - ACTIONS(3211), 1, + ACTIONS(437), 1, sym__brace_start, - STATE(1986), 1, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3083), 1, + sym_word, + STATE(490), 1, + sym_command_name, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(4382), 1, + STATE(1352), 1, + sym_concatenation, + STATE(1580), 1, + sym_variable_assignment, + STATE(3060), 1, + sym_command, + STATE(4070), 1, sym_subscript, - ACTIONS(3166), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3178), 2, + ACTIONS(415), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3199), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1467), 5, - anon_sym_LT_LT, + STATE(932), 2, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(3059), 2, + sym_subshell, + sym_test_command, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1588), 9, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69850,72 +68501,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1505), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15170] = 24, - ACTIONS(63), 1, + [15030] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(3214), 1, - sym_word, - ACTIONS(3218), 1, + ACTIONS(1053), 1, sym__special_character, - ACTIONS(3222), 1, - sym_test_operator, - ACTIONS(3224), 1, + ACTIONS(1675), 1, + sym_file_descriptor, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + ACTIONS(1949), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1951), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1959), 1, sym__bare_dollar, - STATE(609), 1, + ACTIONS(3024), 1, + sym_test_operator, + STATE(589), 1, aux_sym_command_repeat2, - STATE(1765), 1, + STATE(1113), 1, aux_sym__literal_repeat1, - STATE(1991), 1, + STATE(1360), 1, sym_concatenation, - ACTIONS(1033), 2, + ACTIONS(1943), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3216), 2, + ACTIONS(3022), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3220), 2, + ACTIONS(3020), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(1721), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, + sym_word, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -69925,120 +68559,169 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1723), 11, - sym_file_descriptor, + ACTIONS(1673), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [15269] = 25, + [15128] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + ACTIONS(2847), 1, + anon_sym_DQUOTE, + STATE(1440), 1, + sym_string, + ACTIONS(1237), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3098), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1402), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1436), 1, + [15194] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + sym_variable_name, + STATE(4097), 1, + sym_subscript, + ACTIONS(3170), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3172), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(3230), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + STATE(2579), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2592), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1432), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_COMMA2, - anon_sym_CARET2, - ACTIONS(3234), 2, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - STATE(824), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3226), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3228), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [15370] = 7, + sym_word, + sym_test_operator, + [15263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - STATE(1253), 1, + STATE(957), 1, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, + ACTIONS(1233), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2337), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 34, + ACTIONS(1225), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70046,8 +68729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70056,7 +68739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, sym_raw_string, @@ -70071,30 +68753,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15435] = 7, + [15328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - STATE(1253), 1, + STATE(1191), 1, sym_string, - ACTIONS(1213), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3128), 2, + ACTIONS(3148), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, + ACTIONS(3146), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -70129,45 +68811,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15500] = 13, + [15393] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(3250), 1, + ACTIONS(3174), 1, sym_variable_name, - STATE(4363), 1, + ACTIONS(3185), 1, + anon_sym_LT_LT_LT, + STATE(4097), 1, sym_subscript, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, + ACTIONS(3170), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - STATE(2722), 2, + ACTIONS(3179), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2579), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3238), 3, + ACTIONS(3177), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_AMP, - ACTIONS(2857), 4, + ACTIONS(3183), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, + STATE(2592), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -70193,60 +68875,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [15577] = 24, + [15470] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3187), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3196), 1, anon_sym_DOLLAR, - ACTIONS(3265), 1, + ACTIONS(3199), 1, sym__special_character, - ACTIONS(3268), 1, + ACTIONS(3202), 1, anon_sym_DQUOTE, - ACTIONS(3274), 1, + ACTIONS(3208), 1, aux_sym_number_token1, - ACTIONS(3277), 1, + ACTIONS(3211), 1, aux_sym_number_token2, - ACTIONS(3280), 1, + ACTIONS(3214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3283), 1, + ACTIONS(3217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3286), 1, + ACTIONS(3220), 1, anon_sym_BQUOTE, - ACTIONS(3289), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3295), 1, + ACTIONS(3229), 1, sym_test_operator, - ACTIONS(3298), 1, + ACTIONS(3232), 1, sym__bare_dollar, - ACTIONS(3301), 1, + ACTIONS(3235), 1, sym__brace_start, - STATE(609), 1, + STATE(597), 1, aux_sym_command_repeat2, - STATE(1765), 1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(1991), 1, + STATE(1790), 1, sym_concatenation, - ACTIONS(3256), 2, + ACTIONS(3190), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3259), 2, + ACTIONS(3193), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3271), 2, + ACTIONS(3205), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3292), 2, + ACTIONS(3226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1671), 5, + ACTIONS(1589), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1475), 9, + STATE(1524), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70256,7 +68938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1709), 11, + ACTIONS(1627), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70268,44 +68950,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15676] = 9, + [15569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3250), 1, - sym_variable_name, - ACTIONS(3306), 1, + ACTIONS(2541), 1, + anon_sym_DQUOTE, + STATE(1191), 1, + sym_string, + ACTIONS(1233), 2, sym_file_descriptor, - STATE(4363), 1, - sym_subscript, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + sym__brace_start, + ACTIONS(3148), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3146), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 22, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 34, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70313,11 +68982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70328,60 +68994,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [15745] = 24, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [15634] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(3214), 1, + ACTIONS(3238), 1, sym_word, - ACTIONS(3218), 1, + ACTIONS(3242), 1, sym__special_character, - ACTIONS(3222), 1, + ACTIONS(3246), 1, sym_test_operator, - ACTIONS(3224), 1, + ACTIONS(3248), 1, sym__bare_dollar, - STATE(604), 1, + STATE(603), 1, aux_sym_command_repeat2, - STATE(1765), 1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(1991), 1, + STATE(1790), 1, sym_concatenation, - ACTIONS(1033), 2, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3216), 2, + ACTIONS(3240), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3220), 2, + ACTIONS(3244), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1661), 5, + ACTIONS(1511), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1475), 9, + STATE(1524), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70391,7 +69071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1663), 11, + ACTIONS(1527), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70403,60 +69083,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15844] = 24, + [15733] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1947), 1, + anon_sym_DQUOTE, + STATE(957), 1, + sym_string, + ACTIONS(2339), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2337), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [15798] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(3214), 1, + ACTIONS(3238), 1, sym_word, - ACTIONS(3218), 1, + ACTIONS(3242), 1, sym__special_character, - ACTIONS(3222), 1, + ACTIONS(3246), 1, sym_test_operator, - ACTIONS(3224), 1, + ACTIONS(3248), 1, sym__bare_dollar, - STATE(609), 1, + STATE(597), 1, aux_sym_command_repeat2, - STATE(1765), 1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(1991), 1, + STATE(1790), 1, sym_concatenation, - ACTIONS(1033), 2, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3216), 2, + ACTIONS(3240), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3220), 2, + ACTIONS(3244), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1591), 5, + ACTIONS(1673), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1475), 9, + STATE(1524), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70466,7 +69204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1607), 11, + ACTIONS(1675), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70478,45 +69216,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15943] = 13, + [15897] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(3250), 1, + ACTIONS(3174), 1, sym_variable_name, - STATE(4363), 1, + ACTIONS(3185), 1, + anon_sym_LT_LT_LT, + STATE(4097), 1, sym_subscript, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, + ACTIONS(3170), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - STATE(2722), 2, + ACTIONS(3179), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2579), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3308), 3, + ACTIONS(3250), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_AMP, - ACTIONS(3310), 4, + ACTIONS(2780), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, + STATE(2592), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -70542,30 +69280,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16020] = 7, + [15974] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1075), 1, + anon_sym_DOLLAR, + ACTIONS(1079), 1, + anon_sym_DQUOTE, + ACTIONS(1083), 1, + aux_sym_number_token1, + ACTIONS(1085), 1, + aux_sym_number_token2, + ACTIONS(1087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1091), 1, + anon_sym_BQUOTE, + ACTIONS(1093), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1101), 1, + sym__brace_start, + ACTIONS(3238), 1, + sym_word, + ACTIONS(3242), 1, + sym__special_character, + ACTIONS(3246), 1, + sym_test_operator, + ACTIONS(3248), 1, + sym__bare_dollar, + STATE(597), 1, + aux_sym_command_repeat2, + STATE(1743), 1, + aux_sym__literal_repeat1, + STATE(1790), 1, + sym_concatenation, + ACTIONS(1065), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1095), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3240), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3244), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1531), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1524), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1533), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [16073] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(1431), 1, + STATE(1440), 1, sym_string, - ACTIONS(1213), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3066), 2, + ACTIONS(3100), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, + ACTIONS(3098), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 34, + ACTIONS(1235), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -70600,60 +69413,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16085] = 24, + [16138] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(3214), 1, + ACTIONS(3238), 1, sym_word, - ACTIONS(3218), 1, + ACTIONS(3242), 1, sym__special_character, - ACTIONS(3222), 1, + ACTIONS(3246), 1, sym_test_operator, - ACTIONS(3224), 1, + ACTIONS(3248), 1, sym__bare_dollar, - STATE(612), 1, + STATE(601), 1, aux_sym_command_repeat2, - STATE(1765), 1, + STATE(1743), 1, aux_sym__literal_repeat1, - STATE(1991), 1, + STATE(1790), 1, sym_concatenation, - ACTIONS(1033), 2, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3216), 2, + ACTIONS(3240), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(3220), 2, + ACTIONS(3244), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1717), 5, + ACTIONS(1667), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1475), 9, + STATE(1524), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -70663,7 +69476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1719), 11, + ACTIONS(1669), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70675,93 +69488,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [16184] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16253] = 7, + [16237] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(926), 1, + STATE(1440), 1, sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(2367), 9, + ACTIONS(3100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3098), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 33, + ACTIONS(1225), 34, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70769,8 +69521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70779,6 +69531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, sym_raw_string, @@ -70793,52 +69546,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16318] = 7, + [16302] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3172), 1, sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, + ACTIONS(3174), 1, + sym_variable_name, + ACTIONS(3254), 1, + sym_file_descriptor, + STATE(4097), 1, + sym_subscript, + STATE(2579), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2592), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70851,31 +69583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16383] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(3252), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70883,8 +69591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -70895,66 +69606,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16448] = 6, + [16371] = 3, ACTIONS(63), 1, sym_comment, - STATE(1968), 1, - aux_sym__literal_repeat1, - STATE(642), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2047), 25, + ACTIONS(3258), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, sym_raw_string, @@ -70965,18 +69631,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [16510] = 4, + ACTIONS(3256), 27, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_do, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [16427] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_RBRACE, - ACTIONS(931), 21, + ACTIONS(937), 22, sym_file_descriptor, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70992,7 +69685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(663), 26, + ACTIONS(679), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71019,19 +69712,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [16568] = 6, + [16483] = 20, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, + ACTIONS(2708), 1, + anon_sym_DOLLAR, + ACTIONS(2714), 1, + anon_sym_DQUOTE, + ACTIONS(2717), 1, + aux_sym_number_token1, + ACTIONS(2720), 1, + aux_sym_number_token2, + ACTIONS(2723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2726), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2729), 1, + anon_sym_BQUOTE, + ACTIONS(2732), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2741), 1, + sym__brace_start, + ACTIONS(3263), 1, + sym__special_character, + ACTIONS(3266), 1, + sym_test_operator, + STATE(1435), 1, aux_sym__literal_repeat1, - STATE(639), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, + ACTIONS(2214), 2, sym_file_descriptor, sym_variable_name, - sym__brace_start, - STATE(1580), 9, + ACTIONS(2705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(610), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3260), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71041,8 +69765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 33, - anon_sym_LPAREN_LPAREN, + ACTIONS(2179), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71059,28 +69782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16630] = 4, + [16573] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(2853), 21, + ACTIONS(3269), 1, + anon_sym_RBRACE, + ACTIONS(937), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -71102,7 +69809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2851), 26, + ACTIONS(679), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71129,103 +69836,186 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [16688] = 13, + [16631] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3248), 2, + ACTIONS(2049), 1, sym_file_descriptor, + ACTIONS(2537), 1, + anon_sym_DOLLAR, + ACTIONS(2541), 1, + anon_sym_DQUOTE, + ACTIONS(2543), 1, + aux_sym_number_token1, + ACTIONS(2545), 1, + aux_sym_number_token2, + ACTIONS(2547), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2549), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2551), 1, + anon_sym_BQUOTE, + ACTIONS(2553), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(3319), 2, + ACTIONS(3274), 1, + sym__special_character, + ACTIONS(3276), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3278), 1, + sym_test_operator, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(2535), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2555), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(613), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3272), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1681), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2023), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3310), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3317), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [16723] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, + sym_file_descriptor, + ACTIONS(2569), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2575), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2578), 1, aux_sym_number_token1, + ACTIONS(2581), 1, aux_sym_number_token2, + ACTIONS(2584), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2587), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2590), 1, anon_sym_BQUOTE, + ACTIONS(2593), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2605), 1, + sym__brace_start, + ACTIONS(3283), 1, + sym__special_character, + ACTIONS(3286), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3289), 1, + sym_test_operator, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(2566), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2596), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(613), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3280), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [16764] = 9, + STATE(1681), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2063), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [16815] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3298), 1, + anon_sym_LT_LT_LT, + ACTIONS(3300), 1, sym_variable_name, - STATE(4358), 1, + STATE(4113), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3321), 2, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3294), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3296), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2749), 2, + STATE(2600), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(2780), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, + ACTIONS(3292), 3, + anon_sym_SEMI, anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 25, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -71251,19 +70041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16832] = 6, + [16891] = 6, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - STATE(639), 2, + STATE(610), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, + ACTIONS(2055), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - STATE(1580), 9, + STATE(1610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71273,7 +70063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 33, + ACTIONS(2053), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -71307,15 +70097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [16894] = 6, + [16953] = 6, ACTIONS(63), 1, sym_comment, - STATE(1968), 1, + STATE(1930), 1, aux_sym__literal_repeat1, - STATE(642), 2, + STATE(620), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1620), 9, + STATE(1583), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71325,7 +70115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2049), 11, + ACTIONS(1913), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -71337,7 +70127,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2051), 25, + ACTIONS(1915), 25, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -71363,17 +70153,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [16956] = 3, + [17015] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(931), 22, + ACTIONS(3303), 1, + anon_sym_RBRACE, + ACTIONS(937), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -71389,7 +70180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(663), 26, + ACTIONS(679), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71416,83 +70207,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17012] = 21, + [17073] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(3300), 1, + sym_variable_name, + STATE(4113), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, sym__brace_start, - ACTIONS(3330), 1, - sym__special_character, - ACTIONS(3332), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3334), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(634), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3328), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 16, + ACTIONS(3296), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2600), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 11, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [17104] = 4, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [17141] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3336), 1, + ACTIONS(3306), 1, anon_sym_RBRACE, - ACTIONS(931), 21, + ACTIONS(937), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -71514,7 +70293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(663), 26, + ACTIONS(679), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71541,112 +70320,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17162] = 9, - ACTIONS(3), 1, + [17199] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3309), 1, + sym_word, + ACTIONS(3315), 1, anon_sym_DOLLAR, + ACTIONS(3318), 1, sym__special_character, + ACTIONS(3321), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3327), 1, aux_sym_number_token1, + ACTIONS(3330), 1, aux_sym_number_token2, + ACTIONS(3333), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3336), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3339), 1, anon_sym_BQUOTE, + ACTIONS(3342), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3348), 1, + sym_test_operator, + ACTIONS(3351), 1, + sym__brace_start, + STATE(1930), 1, + aux_sym__literal_repeat1, + ACTIONS(3312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3324), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3345), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(620), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2179), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [17230] = 13, + [17291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3248), 2, + ACTIONS(3354), 1, + anon_sym_LPAREN, + ACTIONS(3356), 1, + aux_sym_concatenation_token1, + ACTIONS(3358), 1, + sym__concat, + STATE(674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3319), 2, + ACTIONS(1251), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2857), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(3339), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -71663,12 +70448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17306] = 4, + [17355] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3341), 1, - anon_sym_RBRACE, - ACTIONS(931), 21, + ACTIONS(2782), 1, + ts_builtin_sym_end, + ACTIONS(2778), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -71690,7 +70475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(663), 26, + ACTIONS(2776), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71717,51 +70502,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17364] = 21, - ACTIONS(3), 1, + [17413] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, + STATE(1930), 1, + aux_sym__literal_repeat1, + STATE(620), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2510), 1, aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, + sym_word, + ACTIONS(2055), 25, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3330), 1, - sym__special_character, - ACTIONS(3334), 1, - sym_test_operator, - ACTIONS(3344), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, + sym_test_operator, + [17475] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(610), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3328), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1573), 9, + aux_sym_for_statement_repeat1, + ACTIONS(1915), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + STATE(1610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71771,7 +70580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1989), 16, + ACTIONS(1913), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71788,105 +70598,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [17456] = 4, - ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [17537] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, - ts_builtin_sym_end, - ACTIONS(2853), 21, - sym_file_descriptor, + ACTIONS(3298), 1, + anon_sym_LT_LT_LT, + ACTIONS(3300), 1, sym_variable_name, + STATE(4113), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3294), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3296), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2600), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3183), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3360), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, + [17613] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + STATE(1660), 1, + sym_string, + ACTIONS(3366), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3362), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_DOLLAR, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [17514] = 21, + sym_test_operator, + [17677] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 1, + ACTIONS(2223), 1, sym_file_descriptor, - ACTIONS(2564), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(2570), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(2573), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2576), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2579), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, + ACTIONS(2551), 1, anon_sym_BQUOTE, - ACTIONS(2588), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2600), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(3349), 1, + ACTIONS(3274), 1, sym__special_character, - ACTIONS(3352), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3355), 1, + ACTIONS(3278), 1, sym_test_operator, - STATE(1390), 1, + ACTIONS(3368), 1, + aux_sym__simple_variable_name_token1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(2561), 2, + ACTIONS(2535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, + ACTIONS(2555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, + STATE(612), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3346), 3, + ACTIONS(3272), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1573), 9, + STATE(1681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -71896,7 +70788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2230), 16, + ACTIONS(2219), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71913,10 +70805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [17606] = 3, + [17769] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3360), 21, + ACTIONS(2835), 1, + ts_builtin_sym_end, + ACTIONS(2778), 21, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -71938,7 +70832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(3358), 27, + ACTIONS(2776), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -71946,7 +70840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, - anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_function, @@ -71966,47 +70859,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [17662] = 7, + [17827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, - anon_sym_LPAREN, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3172), 1, sym__brace_start, - ACTIONS(1225), 41, + ACTIONS(3254), 1, + sym_file_descriptor, + ACTIONS(3300), 1, + sym_variable_name, + STATE(4113), 1, + sym_subscript, + STATE(2600), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -72023,60 +70896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17726] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - anon_sym_DOLLAR, - ACTIONS(2737), 1, - anon_sym_DQUOTE, - ACTIONS(2740), 1, - aux_sym_number_token1, - ACTIONS(2743), 1, - aux_sym_number_token2, - ACTIONS(2746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, - anon_sym_BQUOTE, - ACTIONS(2755), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2764), 1, - sym__brace_start, - ACTIONS(3371), 1, - sym__special_character, - ACTIONS(3374), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(639), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3368), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 16, + ACTIONS(3252), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72084,6 +70905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72093,31 +70917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [17816] = 7, + anon_sym_AMP, + [17895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3364), 1, anon_sym_DQUOTE, - STATE(1681), 1, + STATE(1660), 1, sym_string, - ACTIONS(3381), 2, + ACTIONS(3366), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3377), 9, + ACTIONS(3362), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 32, + ACTIONS(1235), 32, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -72150,32 +70975,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17880] = 7, - ACTIONS(3), 1, + [17959] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(3379), 1, - anon_sym_DQUOTE, - STATE(1681), 1, + STATE(1967), 1, + aux_sym__literal_repeat1, + STATE(662), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1687), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3381), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2055), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [18020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + aux_sym_concatenation_token1, + ACTIONS(3373), 1, + sym__concat, + STATE(632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3377), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 32, + ACTIONS(1266), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -72183,7 +71053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -72192,9 +71066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -72207,54 +71085,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [17944] = 21, + [18081] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3376), 1, sym_word, - ACTIONS(3389), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR, - ACTIONS(3392), 1, + ACTIONS(3382), 1, sym__special_character, - ACTIONS(3395), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(3401), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(3404), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3410), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3413), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(3416), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3422), 1, + ACTIONS(3402), 1, sym_test_operator, - ACTIONS(3425), 1, + ACTIONS(3404), 1, sym__brace_start, - STATE(1968), 1, + STATE(1974), 1, aux_sym__literal_repeat1, - ACTIONS(3386), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3398), 2, + ACTIONS(3386), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3419), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(642), 2, + STATE(648), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, + ACTIONS(2053), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1620), 9, + STATE(1694), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72264,9 +71142,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 13, + ACTIONS(2055), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -72278,32 +71155,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18036] = 7, + [18172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3172), 1, sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, + ACTIONS(3406), 1, + sym_variable_name, + STATE(4158), 1, + sym_subscript, + ACTIONS(3254), 2, + sym_file_descriptor, + ts_builtin_sym_end, + STATE(2770), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(3252), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72311,6 +71202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72320,57 +71212,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18099] = 13, + anon_sym_AMP, + [18239] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(3436), 1, + ACTIONS(3406), 1, sym_variable_name, - STATE(4391), 1, + ACTIONS(3409), 1, + ts_builtin_sym_end, + STATE(4158), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, + ACTIONS(3411), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2892), 2, + STATE(2770), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3317), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2854), 4, + STATE(2769), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3168), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -72396,56 +71272,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18174] = 22, + [18308] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3376), 1, sym_word, - ACTIONS(3443), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(3382), 1, sym__special_character, - ACTIONS(3447), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(3451), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(3453), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(3455), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(3461), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3467), 1, + ACTIONS(3402), 1, sym_test_operator, - ACTIONS(3469), 1, + ACTIONS(3404), 1, sym__brace_start, - STATE(2118), 1, + STATE(1974), 1, aux_sym__literal_repeat1, - ACTIONS(3441), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3449), 2, + ACTIONS(3386), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3463), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(650), 2, + STATE(648), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2019), 5, + aux_sym_for_statement_repeat1, + ACTIONS(1913), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1756), 9, + STATE(1694), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72455,113 +71329,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2023), 11, + ACTIONS(1915), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18267] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18322] = 20, + [18399] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(2214), 1, sym_file_descriptor, - ACTIONS(2913), 1, + ACTIONS(2879), 1, anon_sym_DOLLAR, - ACTIONS(2917), 1, + ACTIONS(2885), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, + ACTIONS(2888), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2891), 1, aux_sym_number_token2, - ACTIONS(2923), 1, + ACTIONS(2894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, + ACTIONS(2900), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, + ACTIONS(2912), 1, sym__brace_start, - ACTIONS(3473), 1, + ACTIONS(3416), 1, sym__special_character, - ACTIONS(3475), 1, + ACTIONS(3419), 1, sym_test_operator, - STATE(1519), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(2911), 2, + ACTIONS(2876), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, + ACTIONS(2906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(672), 2, + STATE(637), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3471), 3, + ACTIONS(3413), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1878), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72571,7 +71394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2045), 16, + ACTIONS(2179), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72588,184 +71411,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [18411] = 10, + [18488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - ts_builtin_sym_end, - ACTIONS(3481), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, - anon_sym_SEMI, + ACTIONS(164), 1, + anon_sym_DQUOTE, + STATE(1682), 1, + sym_string, + ACTIONS(3424), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 34, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [18480] = 20, + [18549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, + ACTIONS(164), 1, anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3473), 1, - sym__special_character, - ACTIONS(3475), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3471), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1682), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 16, + ACTIONS(3424), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 34, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [18569] = 22, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [18610] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3426), 1, sym_word, - ACTIONS(3443), 1, + ACTIONS(3430), 1, anon_sym_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(3432), 1, sym__special_character, - ACTIONS(3447), 1, + ACTIONS(3434), 1, anon_sym_DQUOTE, - ACTIONS(3451), 1, + ACTIONS(3438), 1, aux_sym_number_token1, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(3455), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, + ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(3461), 1, + ACTIONS(3448), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3467), 1, + ACTIONS(3452), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3454), 1, sym_test_operator, - ACTIONS(3469), 1, + ACTIONS(3456), 1, sym__brace_start, - ACTIONS(3484), 1, - aux_sym__simple_variable_name_token1, - STATE(2118), 1, + STATE(2028), 1, aux_sym__literal_repeat1, - ACTIONS(3441), 2, + ACTIONS(3428), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3449), 2, + ACTIONS(3436), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3463), 2, + ACTIONS(3450), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(659), 2, + STATE(654), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1989), 5, + ACTIONS(2219), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1756), 9, + STATE(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -72775,7 +71580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2015), 11, + ACTIONS(2223), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -72787,32 +71592,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18662] = 7, + [18703] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3488), 1, - anon_sym_DQUOTE, - STATE(1792), 1, - sym_string, - ACTIONS(3490), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(3172), 1, + sym__brace_start, + ACTIONS(3254), 1, sym_file_descriptor, + ACTIONS(3458), 1, sym_variable_name, - sym__brace_start, - ACTIONS(3486), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + STATE(4078), 1, + sym_subscript, + STATE(2809), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2772), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(3252), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [18770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3465), 1, + sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72820,17 +71676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -72843,96 +71706,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18725] = 4, - ACTIONS(63), 1, + [18833] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - anon_sym_BQUOTE, - ACTIONS(2853), 20, + ACTIONS(3356), 1, + aux_sym_concatenation_token1, + ACTIONS(3358), 1, + sym__concat, + STATE(672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, + ACTIONS(1262), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, + [18894] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 1, + anon_sym_RPAREN, + ACTIONS(3458), 1, + sym_variable_name, + ACTIONS(3473), 1, + anon_sym_LT_LT_LT, + STATE(4078), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3467), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3471), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2809), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2772), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [18782] = 13, + sym_test_operator, + [18969] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(3183), 1, anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(3436), 1, + ACTIONS(3458), 1, sym_variable_name, - STATE(4391), 1, + ACTIONS(3473), 1, + anon_sym_LT_LT_LT, + STATE(4078), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3428), 2, + ACTIONS(3467), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, + ACTIONS(3471), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2892), 2, + STATE(2809), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3339), 4, + ACTIONS(3360), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - STATE(2854), 4, + STATE(2772), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -72958,87 +71885,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18857] = 7, - ACTIONS(3), 1, + [19044] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, + STATE(1967), 1, + aux_sym__literal_repeat1, + STATE(662), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1687), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1913), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1915), 25, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [19105] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2778), 21, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(2776), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [19160] = 21, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3475), 1, + sym_word, + ACTIONS(3481), 1, + anon_sym_DOLLAR, + ACTIONS(3484), 1, + sym__special_character, + ACTIONS(3487), 1, + anon_sym_DQUOTE, + ACTIONS(3493), 1, aux_sym_number_token1, + ACTIONS(3496), 1, aux_sym_number_token2, + ACTIONS(3499), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3505), 1, anon_sym_BQUOTE, + ACTIONS(3508), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3514), 1, + sym_test_operator, + ACTIONS(3517), 1, + sym__brace_start, + STATE(1974), 1, + aux_sym__literal_repeat1, + ACTIONS(3478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3490), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, + STATE(648), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2179), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1694), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [19251] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + sym__concat, + ACTIONS(3522), 1, + anon_sym_DQUOTE, + STATE(1771), 1, + sym_string, + ACTIONS(3524), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3520), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [18920] = 7, + [19314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3488), 1, + ACTIONS(3528), 1, anon_sym_DQUOTE, - STATE(1792), 1, + STATE(1710), 1, sym_string, - ACTIONS(3490), 2, + ACTIONS(3530), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3486), 9, + ACTIONS(3526), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 31, + ACTIONS(1235), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -73070,83 +72174,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [18983] = 9, + [19377] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3481), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - ACTIONS(3306), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2993), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [19050] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, - anon_sym_LPAREN, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + STATE(1200), 1, + sym_string, + ACTIONS(2995), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1225), 40, + ACTIONS(2991), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -73154,11 +72207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -73167,11 +72216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -73184,31 +72230,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19113] = 7, + [19440] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(3528), 1, anon_sym_DQUOTE, - STATE(1144), 1, + STATE(1710), 1, sym_string, - ACTIONS(3062), 2, + ACTIONS(3530), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1233), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3060), 9, + ACTIONS(3526), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 31, + ACTIONS(1225), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -73218,13 +72264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, @@ -73240,56 +72286,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19176] = 22, + [19503] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, + sym_file_descriptor, + ACTIONS(2843), 1, + anon_sym_DOLLAR, + ACTIONS(2847), 1, + anon_sym_DQUOTE, + ACTIONS(2849), 1, + aux_sym_number_token1, + ACTIONS(2851), 1, + aux_sym_number_token2, + ACTIONS(2853), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2855), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2857), 1, + anon_sym_BQUOTE, + ACTIONS(2859), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(3534), 1, + sym__special_character, + ACTIONS(3536), 1, + sym_test_operator, + STATE(1449), 1, + aux_sym__literal_repeat1, + ACTIONS(2841), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2861), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(637), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3532), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1688), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2053), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [19592] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(3498), 1, + ACTIONS(3426), 1, sym_word, - ACTIONS(3504), 1, + ACTIONS(3430), 1, anon_sym_DOLLAR, - ACTIONS(3507), 1, + ACTIONS(3432), 1, sym__special_character, - ACTIONS(3510), 1, + ACTIONS(3434), 1, anon_sym_DQUOTE, - ACTIONS(3516), 1, + ACTIONS(3438), 1, aux_sym_number_token1, - ACTIONS(3519), 1, + ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(3522), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3525), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3528), 1, + ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(3531), 1, + ACTIONS(3448), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3537), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3540), 1, + ACTIONS(3454), 1, sym_test_operator, - ACTIONS(3543), 1, + ACTIONS(3456), 1, sym__brace_start, - STATE(2118), 1, + ACTIONS(3538), 1, + aux_sym__simple_variable_name_token1, + STATE(2028), 1, aux_sym__literal_repeat1, - ACTIONS(3501), 2, + ACTIONS(3428), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3513), 2, + ACTIONS(3436), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3534), 2, + ACTIONS(3450), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(659), 2, + STATE(661), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2230), 5, + ACTIONS(2023), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1756), 9, + STATE(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73299,24 +72414,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2268), 11, + ACTIONS(2049), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [19685] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, sym_file_descriptor, + ACTIONS(2843), 1, + anon_sym_DOLLAR, + ACTIONS(2847), 1, + anon_sym_DQUOTE, + ACTIONS(2849), 1, + aux_sym_number_token1, + ACTIONS(2851), 1, + aux_sym_number_token2, + ACTIONS(2853), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2855), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2857), 1, + anon_sym_BQUOTE, + ACTIONS(2859), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(3534), 1, + sym__special_character, + ACTIONS(3536), 1, + sym_test_operator, + STATE(1449), 1, + aux_sym__literal_repeat1, + ACTIONS(2841), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2861), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(637), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3532), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1688), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1913), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [19269] = 4, + [19774] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(2782), 1, anon_sym_BQUOTE, - ACTIONS(2853), 20, + ACTIONS(2778), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -73337,7 +72521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2851), 26, + ACTIONS(2776), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -73364,31 +72548,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [19326] = 7, + [19831] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - STATE(1302), 1, + STATE(1200), 1, sym_string, - ACTIONS(3058), 2, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3054), 9, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 31, + ACTIONS(1235), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -73420,52 +72604,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19389] = 13, + [19894] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - sym_variable_name, - ACTIONS(3546), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - STATE(4295), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, + ACTIONS(1237), 1, + sym__concat, + ACTIONS(3522), 1, + anon_sym_DQUOTE, + STATE(1771), 1, + sym_string, + ACTIONS(3524), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3520), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3548), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + anon_sym_CARET, + sym_test_operator, + [19957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3356), 1, + aux_sym_concatenation_token1, + ACTIONS(3358), 1, + sym__concat, + STATE(674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3542), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3540), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -73482,48 +72715,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19464] = 9, + [20018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3356), 1, + aux_sym_concatenation_token1, + ACTIONS(3358), 1, + sym__concat, + STATE(672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3546), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 10, + ACTIONS(3544), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -73540,54 +72770,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [19531] = 21, + [20079] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3548), 1, sym_word, - ACTIONS(3560), 1, + ACTIONS(3554), 1, anon_sym_DOLLAR, - ACTIONS(3563), 1, + ACTIONS(3557), 1, sym__special_character, - ACTIONS(3566), 1, + ACTIONS(3560), 1, anon_sym_DQUOTE, - ACTIONS(3572), 1, + ACTIONS(3566), 1, aux_sym_number_token1, - ACTIONS(3575), 1, + ACTIONS(3569), 1, aux_sym_number_token2, - ACTIONS(3578), 1, + ACTIONS(3572), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3581), 1, + ACTIONS(3575), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3578), 1, anon_sym_BQUOTE, - ACTIONS(3587), 1, + ACTIONS(3581), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3593), 1, + ACTIONS(3587), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3590), 1, sym_test_operator, - ACTIONS(3596), 1, + ACTIONS(3593), 1, sym__brace_start, - STATE(2134), 1, + STATE(2028), 1, aux_sym__literal_repeat1, - ACTIONS(3557), 2, + ACTIONS(3551), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3569), 2, + ACTIONS(3563), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3590), 2, + ACTIONS(3584), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(664), 2, + STATE(661), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, + aux_sym_unset_command_repeat1, + ACTIONS(2063), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1891), 9, + STATE(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73597,289 +72829,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19683] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, + ACTIONS(2101), 11, sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19744] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__concat, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19807] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__concat, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19870] = 21, + [20172] = 21, ACTIONS(63), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3596), 1, sym_word, - ACTIONS(3611), 1, + ACTIONS(3602), 1, anon_sym_DOLLAR, - ACTIONS(3614), 1, + ACTIONS(3605), 1, sym__special_character, - ACTIONS(3617), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - ACTIONS(3623), 1, + ACTIONS(3614), 1, aux_sym_number_token1, - ACTIONS(3626), 1, + ACTIONS(3617), 1, aux_sym_number_token2, - ACTIONS(3629), 1, + ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3632), 1, + ACTIONS(3623), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3635), 1, + ACTIONS(3626), 1, anon_sym_BQUOTE, - ACTIONS(3638), 1, + ACTIONS(3629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3644), 1, + ACTIONS(3635), 1, sym_test_operator, - ACTIONS(3647), 1, + ACTIONS(3638), 1, sym__brace_start, - STATE(2094), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(3608), 2, + ACTIONS(3599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3620), 2, + ACTIONS(3611), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3641), 2, + ACTIONS(3632), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(669), 2, + STATE(662), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, + ACTIONS(2179), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1763), 9, + STATE(1687), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -73889,212 +72898,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 12, + ACTIONS(2214), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [19961] = 6, - ACTIONS(63), 1, + [20263] = 7, + ACTIONS(3), 1, sym_comment, - STATE(2134), 1, - aux_sym__literal_repeat1, - STATE(664), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(1887), 1, + anon_sym_DQUOTE, + STATE(1092), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2051), 25, + ACTIONS(2871), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, + ACTIONS(2869), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [20022] = 6, + [20326] = 4, ACTIONS(63), 1, sym_comment, - STATE(2134), 1, - aux_sym__literal_repeat1, - STATE(664), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2047), 25, + ACTIONS(2835), 1, + anon_sym_BQUOTE, + ACTIONS(2778), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [20083] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2968), 1, + ACTIONS(2776), 26, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(2974), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(2980), 1, aux_sym_number_token2, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, - anon_sym_BQUOTE, - ACTIONS(2992), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(3653), 1, - sym__special_character, - ACTIONS(3656), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2965), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [20172] = 6, + [20383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3366), 1, + ACTIONS(3358), 1, sym__concat, - STATE(686), 1, + STATE(674), 1, aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, + ACTIONS(1260), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3659), 41, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74136,54 +73075,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20233] = 9, + [20444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, + ACTIONS(1887), 1, + anon_sym_DQUOTE, + STATE(1092), 1, + sym_string, + ACTIONS(2871), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, sym_file_descriptor, - ACTIONS(3436), 1, sym_variable_name, - STATE(4391), 1, - sym_subscript, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + sym__brace_start, + ACTIONS(2869), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 20, - anon_sym_SEMI, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -74193,21 +73117,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [20300] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [20507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3366), 1, + ACTIONS(3358), 1, sym__concat, - STATE(684), 1, + STATE(672), 1, aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, + ACTIONS(182), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3663), 41, + ACTIONS(149), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74249,43 +73186,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20361] = 13, + [20568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(3481), 1, + ACTIONS(3458), 1, sym_variable_name, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - STATE(4295), 1, + STATE(4078), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, + ACTIONS(3471), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2819), 2, + STATE(2809), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3667), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2800), 4, + STATE(2772), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3168), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -74311,100 +73244,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20497] = 6, + [20635] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, + ACTIONS(3406), 1, + sym_variable_name, + ACTIONS(3641), 1, + ts_builtin_sym_end, + ACTIONS(3647), 1, + anon_sym_LT_LT_LT, + STATE(4158), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(3673), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3411), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3645), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2770), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3643), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -74421,20 +73306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20558] = 6, + [20710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3366), 1, + ACTIONS(3358), 1, sym__concat, - STATE(684), 1, + STATE(672), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(3651), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + ACTIONS(3649), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74476,20 +73361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20619] = 6, + [20771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3680), 1, + ACTIONS(3358), 1, sym__concat, - STATE(680), 1, + STATE(674), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(3655), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 41, + ACTIONS(3653), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74531,20 +73416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20680] = 6, + [20832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3366), 1, + ACTIONS(3657), 1, sym__concat, - STATE(686), 1, + STATE(632), 1, aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3683), 41, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74586,145 +73471,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20741] = 21, - ACTIONS(63), 1, + [20893] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, + ACTIONS(2782), 1, + ts_builtin_sym_end, + ACTIONS(3406), 1, + sym_variable_name, + ACTIONS(3647), 1, + anon_sym_LT_LT_LT, + STATE(4158), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3411), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3645), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2770), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3659), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(3693), 1, sym__special_character, - ACTIONS(3695), 1, anon_sym_DQUOTE, - ACTIONS(3699), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3701), 1, aux_sym_number_token2, - ACTIONS(3703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(669), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20832] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + sym_word, sym_test_operator, - [20893] = 6, + [20968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3356), 1, aux_sym_concatenation_token1, - ACTIONS(3717), 1, + ACTIONS(3661), 1, sym__concat, - STATE(680), 1, + STATE(632), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1284), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 41, + ACTIONS(1282), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74766,106 +73588,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [20954] = 21, - ACTIONS(63), 1, + [21029] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3693), 1, - sym__special_character, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, + ACTIONS(2780), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, + ACTIONS(3669), 1, + anon_sym_LT_LT_LT, + ACTIONS(3671), 1, + sym_variable_name, + STATE(4140), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, sym__brace_start, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(669), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 5, + ACTIONS(3469), 2, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 12, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(3665), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(3667), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + STATE(2728), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3663), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 24, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [21045] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [21103] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3719), 1, - sym__concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(2847), 1, + anon_sym_DQUOTE, + STATE(1440), 1, + sym_string, + ACTIONS(1237), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1252), 41, + ACTIONS(3100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3098), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -74874,11 +73690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -74891,77 +73704,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21106] = 6, + [21165] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, + ACTIONS(3676), 1, anon_sym_DQUOTE, - STATE(1482), 1, + STATE(1785), 1, sym_string, - ACTIONS(3723), 2, + ACTIONS(1237), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, + ACTIONS(3674), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [21166] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3725), 1, - sym__concat, - STATE(731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 40, + ACTIONS(1235), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -74969,24 +73736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -74999,30 +73759,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21226] = 7, + [21227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - STATE(2002), 1, + STATE(1191), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3731), 2, + ACTIONS(3148), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, + ACTIONS(3146), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 31, + ACTIONS(1235), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75032,13 +73792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, @@ -75054,69 +73814,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21288] = 6, + [21289] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - STATE(1482), 1, + STATE(1191), 1, sym_string, - ACTIONS(3723), 2, + ACTIONS(1233), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3148), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, + ACTIONS(3146), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1225), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [21348] = 3, + [21351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(805), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 42, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75126,11 +73894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -75143,7 +73909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75159,36 +73924,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21402] = 7, + [21413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_LPAREN, - ACTIONS(3733), 1, + ACTIONS(3686), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3690), 1, sym__concat, - STATE(855), 1, + STATE(729), 1, aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(3688), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1225), 39, + ACTIONS(3684), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75212,20 +73975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21464] = 3, + [21473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(3686), 1, + aux_sym_concatenation_token1, + ACTIONS(3690), 1, sym__concat, - sym__bare_dollar, + STATE(736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1338), 42, + ACTIONS(1262), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75238,7 +74006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75249,7 +74016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75263,17 +74029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21518] = 3, + [21533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 42, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75316,18 +74083,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21572] = 3, + [21587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(3686), 1, + aux_sym_concatenation_token1, + ACTIONS(3690), 1, sym__concat, - sym__bare_dollar, + STATE(736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3694), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1276), 42, + ACTIONS(3692), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75340,7 +74111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75351,7 +74121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75365,140 +74134,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [21626] = 6, + [21647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3465), 1, + sym__concat, + STATE(746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1262), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [21686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [21746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1280), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -75510,7 +74176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75526,15 +74191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21800] = 3, + [21707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 42, + ACTIONS(1334), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75577,126 +74242,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [21854] = 3, - ACTIONS(3), 1, + [21761] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1310), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(3696), 1, + sym_word, + ACTIONS(3702), 1, anon_sym_DOLLAR, + ACTIONS(3705), 1, sym__special_character, + ACTIONS(3708), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3714), 1, aux_sym_number_token1, + ACTIONS(3717), 1, aux_sym_number_token2, + ACTIONS(3720), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3723), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3726), 1, anon_sym_BQUOTE, + ACTIONS(3729), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(3735), 1, sym_test_operator, - [21908] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, + ACTIONS(3738), 1, sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3737), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 16, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(3699), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3711), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3732), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(687), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2179), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(1841), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2214), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [21974] = 3, + [21851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, + ACTIONS(3686), 1, + aux_sym_concatenation_token1, + ACTIONS(3690), 1, sym__concat, - sym__bare_dollar, + STATE(736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 42, + ACTIONS(3741), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75709,7 +74339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75720,7 +74349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75734,50 +74362,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22028] = 9, + [21911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(1271), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, + ACTIONS(1266), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75793,15 +74416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22094] = 3, + [21965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1302), 42, + ACTIONS(1296), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75844,18 +74467,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22148] = 3, + [22019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, + ACTIONS(3686), 1, + aux_sym_concatenation_token1, + ACTIONS(3690), 1, sym__concat, - sym__bare_dollar, + STATE(729), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1314), 42, + ACTIONS(3745), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75868,7 +74495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -75879,7 +74505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75893,71 +74518,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22202] = 24, - ACTIONS(3), 1, + [22079] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(3749), 1, sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + ACTIONS(3753), 1, anon_sym_DOLLAR, - ACTIONS(1402), 1, + ACTIONS(3755), 1, sym__special_character, - ACTIONS(1404), 1, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(1410), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(1412), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(3746), 1, - anon_sym_RBRACE3, - ACTIONS(3748), 1, - sym_regex, - STATE(2262), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(3759), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1432), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(864), 3, + STATE(687), 2, sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3744), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + aux_sym_for_statement_repeat1, + ACTIONS(1913), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1841), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75967,162 +74578,115 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [22298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3752), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1915), 11, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22358] = 6, + [22169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3754), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(320), 1, + anon_sym_DQUOTE, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_CARET, sym_test_operator, - [22418] = 12, + [22229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3676), 1, + anon_sym_DQUOTE, + STATE(1785), 1, + sym_string, + ACTIONS(1233), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(3678), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3674), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3756), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -76135,22 +74699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22490] = 6, + [22291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - aux_sym_concatenation_token1, - ACTIONS(3770), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1360), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1358), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -76163,6 +74723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -76173,6 +74734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76186,18 +74748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [22550] = 3, + [22345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 42, + ACTIONS(1346), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76240,42 +74801,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22604] = 3, + [22399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3783), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76291,93 +74861,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22658] = 3, - ACTIONS(3), 1, + [22471] = 21, + ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(3749), 1, + sym_word, + ACTIONS(3753), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 1, + sym__special_character, + ACTIONS(3757), 1, + anon_sym_DQUOTE, + ACTIONS(3761), 1, + aux_sym_number_token1, + ACTIONS(3763), 1, + aux_sym_number_token2, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3769), 1, + anon_sym_BQUOTE, + ACTIONS(3771), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(1318), 42, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3759), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3773), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(687), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2053), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + STATE(1841), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2055), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22712] = 3, + [22561] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(3671), 1, + sym_variable_name, + STATE(4140), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(3667), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2728), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 9, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76393,27 +74987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22766] = 6, + [22627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, + ACTIONS(320), 1, anon_sym_DQUOTE, - STATE(1482), 1, + STATE(1479), 1, sym_string, - ACTIONS(3723), 2, + ACTIONS(3781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, + ACTIONS(3779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 33, + ACTIONS(1225), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -76442,20 +75036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, + anon_sym_COLON, sym_test_operator, - [22826] = 3, + [22687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 42, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76498,15 +75092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22880] = 3, + [22741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1326), 42, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76549,31 +75143,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [22934] = 3, + [22795] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(3172), 1, sym__brace_start, - ACTIONS(1272), 42, + ACTIONS(3254), 1, + sym_file_descriptor, + ACTIONS(3671), 1, + sym_variable_name, + STATE(4140), 1, + sym_subscript, + STATE(2728), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 16, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(3252), 20, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -76583,45 +75199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22988] = 6, + [22861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(160), 1, + ACTIONS(320), 1, anon_sym_DQUOTE, - STATE(1605), 1, + STATE(1479), 1, sym_string, - ACTIONS(3671), 2, + ACTIONS(3781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, + ACTIONS(3779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 33, - anon_sym_RPAREN_RPAREN, + ACTIONS(1235), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -76653,46 +75252,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, + anon_sym_COLON, sym_test_operator, - [23048] = 3, + [22921] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(3796), 1, + anon_sym_DQUOTE, + STATE(1800), 1, + sym_string, + ACTIONS(3798), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 42, + ACTIONS(3794), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -76705,42 +75309,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23102] = 3, + [22983] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1330), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3800), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [23055] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3469), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3802), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76756,28 +75429,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23156] = 6, + [23127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(160), 1, + ACTIONS(3522), 1, anon_sym_DQUOTE, - STATE(1605), 1, + STATE(1771), 1, sym_string, - ACTIONS(3671), 2, + ACTIONS(3524), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, + ACTIONS(3520), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 33, - anon_sym_RPAREN_RPAREN, + ACTIONS(1225), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -76806,98 +75478,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [23216] = 3, + [23187] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1322), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(3787), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3804), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 40, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -76912,23 +75541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [23330] = 6, + [23259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3775), 1, - sym__concat, - STATE(731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 40, + ACTIONS(1354), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76938,6 +75561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76954,6 +75578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76969,153 +75594,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23390] = 7, + [23313] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_DQUOTE, - STATE(2002), 1, - sym_string, - ACTIONS(1213), 2, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3731), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3469), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23452] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(3787), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3806), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [23512] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 40, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -77132,23 +75654,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23572] = 6, + [23385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, + ACTIONS(3796), 1, + anon_sym_DQUOTE, + STATE(1800), 1, + sym_string, + ACTIONS(3798), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3683), 40, + ACTIONS(3794), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77156,24 +75687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77186,34 +75709,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23632] = 6, + [23447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3808), 1, + anon_sym_LPAREN, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(3773), 1, + ACTIONS(3812), 1, sym__concat, - STATE(708), 1, + STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, + ACTIONS(1260), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3781), 40, + ts_builtin_sym_end, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77237,23 +75762,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [23692] = 6, + [23509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3814), 1, aux_sym_concatenation_token1, - ACTIONS(3788), 1, + ACTIONS(3817), 1, sym__concat, - STATE(731), 1, + STATE(714), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1271), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77294,41 +75818,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23752] = 12, + [23569] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(3183), 1, + anon_sym_BQUOTE, + ACTIONS(3669), 1, anon_sym_LT_LT_LT, - ACTIONS(3764), 1, + ACTIONS(3671), 1, sym_variable_name, - STATE(4383), 1, + STATE(4140), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(3665), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + ACTIONS(3667), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2977), 2, + STATE(2728), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3791), 4, + ACTIONS(3820), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - STATE(2953), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3166), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -77348,26 +75874,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23824] = 6, + [23643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 40, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77377,6 +75897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77393,6 +75914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77408,20 +75930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23884] = 6, + [23697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(1290), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 40, + ACTIONS(1288), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77431,6 +75948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77447,6 +75965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77462,27 +75981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [23944] = 6, + [23751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, + ACTIONS(164), 1, anon_sym_DQUOTE, - STATE(1482), 1, + STATE(1682), 1, sym_string, - ACTIONS(3723), 2, + ACTIONS(3424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, + ACTIONS(3422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 33, + ACTIONS(1235), 33, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -77510,33 +76030,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [24004] = 6, + [23811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(164), 1, anon_sym_DQUOTE, - STATE(1796), 1, + STATE(1682), 1, sym_string, - ACTIONS(3603), 2, + ACTIONS(3424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, + ACTIONS(3422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 33, + ACTIONS(1225), 33, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -77565,90 +76085,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, sym_test_operator, - [24064] = 6, + [23871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3465), 1, + sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1251), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [24124] = 7, + [23931] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(1757), 1, + STATE(1440), 1, sym_string, - ACTIONS(3797), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1233), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3793), 9, + ACTIONS(3100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3098), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 30, + ACTIONS(1225), 31, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77664,6 +76182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, @@ -77679,20 +76198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24186] = 6, + [23993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(145), 40, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77702,6 +76216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77718,6 +76233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77733,101 +76249,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24246] = 21, - ACTIONS(63), 1, + [24047] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, + ACTIONS(1316), 42, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 5, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - [24336] = 7, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [24101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_DQUOTE, - STATE(1757), 1, - sym_string, - ACTIONS(3797), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3465), 1, + sym__concat, + STATE(746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(182), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3793), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, + ACTIONS(149), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77835,16 +76324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -77857,53 +76354,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24398] = 13, + [24161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 1, - anon_sym_BQUOTE, - ACTIONS(3737), 1, - sym_variable_name, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - STATE(4376), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, + ACTIONS(1292), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3829), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 24, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77913,48 +76399,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24472] = 13, + [24215] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_BQUOTE, - ACTIONS(3737), 1, - sym_variable_name, - ACTIONS(3833), 1, + ACTIONS(3789), 1, anon_sym_LT_LT_LT, - STATE(4376), 1, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2900), 2, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2878), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3835), 4, + ACTIONS(3822), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - STATE(2902), 4, + STATE(2836), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 24, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -77974,43 +76459,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24546] = 7, + [24287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1213), 2, + ACTIONS(3824), 1, + aux_sym_concatenation_token1, + ACTIONS(3827), 1, + sym__concat, + STATE(727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78020,8 +76501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78032,33 +76516,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24608] = 7, + [24347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3465), 1, + sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3655), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, + ACTIONS(3653), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78066,7 +76543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78075,8 +76556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78089,89 +76573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24670] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24760] = 6, + [24407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3686), 1, aux_sym_concatenation_token1, - ACTIONS(3773), 1, + ACTIONS(3830), 1, sym__concat, - STATE(708), 1, + STATE(727), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1284), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3837), 40, + ACTIONS(1282), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78212,34 +76627,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24820] = 6, + [24467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3463), 1, aux_sym_concatenation_token1, - ACTIONS(3773), 1, + ACTIONS(3465), 1, sym__concat, - STATE(707), 1, + STATE(746), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(3651), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3841), 40, + ACTIONS(3649), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78263,52 +76679,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [24880] = 7, + [24527] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, + ACTIONS(3172), 1, sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, + ACTIONS(3254), 1, + sym_file_descriptor, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78321,31 +76718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [24942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(3252), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78353,6 +76727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78362,8 +76737,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + [24593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2878), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3832), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78376,23 +76798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25004] = 7, + [24665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 1, - anon_sym_LPAREN, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 4, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78402,8 +76816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -78416,6 +76833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78431,110 +76849,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25066] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3851), 1, - sym_word, - ACTIONS(3857), 1, - anon_sym_DOLLAR, - ACTIONS(3860), 1, - sym__special_character, - ACTIONS(3863), 1, - anon_sym_DQUOTE, - ACTIONS(3869), 1, - aux_sym_number_token1, - ACTIONS(3872), 1, - aux_sym_number_token2, - ACTIONS(3875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3878), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3881), 1, - anon_sym_BQUOTE, - ACTIONS(3884), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3890), 1, - sym_test_operator, - ACTIONS(3893), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3854), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3866), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3887), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [25156] = 12, + [24719] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, + ACTIONS(3791), 1, sym_variable_name, - STATE(4383), 1, + STATE(4104), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + ACTIONS(3787), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2977), 2, + STATE(2878), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3896), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, + STATE(2836), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3168), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -78560,45 +76906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25228] = 9, + [24785] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, + ACTIONS(3836), 1, + anon_sym_DQUOTE, + STATE(1770), 1, + sym_string, + ACTIONS(3838), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, - ACTIONS(3764), 1, sym_variable_name, - STATE(4383), 1, - sym_subscript, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + sym__brace_start, + ACTIONS(3834), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 19, - anon_sym_SEMI, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78606,7 +76939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78614,57 +76946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [25294] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3898), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -78677,47 +76961,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25366] = 9, + [24847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3686), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym__concat, + STATE(727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -78732,22 +77012,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [25432] = 6, + [24907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, + ACTIONS(3463), 1, aux_sym_concatenation_token1, - ACTIONS(3496), 1, + ACTIONS(3465), 1, sym__concat, - STATE(725), 1, + STATE(743), 1, aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, + ACTIONS(3542), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3663), 40, + ACTIONS(3540), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78788,20 +77069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25492] = 6, + [24967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, + ACTIONS(3463), 1, aux_sym_concatenation_token1, - ACTIONS(3496), 1, + ACTIONS(3465), 1, sym__concat, - STATE(688), 1, + STATE(746), 1, aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, + ACTIONS(3546), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3659), 40, + ACTIONS(3544), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78842,51 +77123,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25552] = 12, + [25027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(1338), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3900), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78902,86 +77174,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25624] = 7, + [25081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(320), 1, anon_sym_DQUOTE, - STATE(2032), 1, + STATE(1479), 1, sym_string, - ACTIONS(3906), 2, + ACTIONS(3781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3902), 9, + ACTIONS(3779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(1235), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [25686] = 7, + [25141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(3836), 1, anon_sym_DQUOTE, - STATE(2032), 1, + STATE(1770), 1, sym_string, - ACTIONS(3906), 2, + ACTIONS(3838), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3902), 9, + ACTIONS(3834), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 30, + ACTIONS(1235), 30, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79012,182 +77283,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25748] = 24, + [25203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, + ACTIONS(320), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3912), 1, - anon_sym_RBRACE3, - ACTIONS(3914), 1, - sym_regex, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(868), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3908), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(3910), 8, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 33, anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [25844] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3916), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, sym_test_operator, - [25916] = 12, + [25263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3463), 1, + aux_sym_concatenation_token1, + ACTIONS(3842), 1, + sym__concat, + STATE(714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(1282), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3918), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -79204,41 +77391,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [25988] = 12, + [25323] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(3789), 1, anon_sym_LT_LT_LT, - ACTIONS(3764), 1, + ACTIONS(3791), 1, sym_variable_name, - STATE(4383), 1, + STATE(4104), 1, sym_subscript, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + ACTIONS(3787), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2977), 2, + STATE(2878), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(3920), 4, + ACTIONS(3844), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - STATE(2953), 4, + STATE(2836), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, + ACTIONS(3166), 25, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -79264,17 +77451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26060] = 3, + [25395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1326), 41, + ACTIONS(1330), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79287,6 +77475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79311,25 +77500,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26113] = 6, + [25449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3463), 1, aux_sym_concatenation_token1, - ACTIONS(3924), 1, + ACTIONS(3846), 1, sym__concat, - STATE(836), 1, + STATE(714), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79341,6 +77530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79364,25 +77554,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26172] = 7, + [25509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - ACTIONS(3926), 1, - anon_sym_LPAREN, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(3522), 1, + anon_sym_DQUOTE, + STATE(1771), 1, + sym_string, + ACTIONS(3524), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3520), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [25569] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_DQUOTE, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [25629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 38, + ACTIONS(1350), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -79392,8 +77682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79406,6 +77699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79421,34 +77715,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26233] = 6, + [25683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 4, + ACTIONS(1322), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3659), 38, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79459,6 +77748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79472,22 +77762,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26292] = 6, + [25736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3777), 39, + ACTIONS(1330), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79496,6 +77782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79511,6 +77798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79527,22 +77815,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26351] = 6, + [25789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3930), 1, - sym__concat, - STATE(836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1360), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1252), 39, + ACTIONS(1358), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79554,6 +77838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79564,6 +77849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79577,23 +77863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26410] = 6, + [25842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(771), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3781), 39, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79602,6 +77882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79617,6 +77898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79633,34 +77915,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26469] = 6, + [25895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, + ACTIONS(1360), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3663), 39, + ACTIONS(1358), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79671,6 +77948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79684,36 +77962,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26528] = 6, + [25948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, + ACTIONS(1271), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3659), 39, + ACTIONS(1266), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79724,6 +77998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79737,17 +78012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26587] = 3, + [26001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 41, + ACTIONS(1334), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79789,21 +78065,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26640] = 6, + [26054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 4, + ACTIONS(3848), 1, + sym__special_character, + STATE(787), 1, + aux_sym__literal_repeat1, + ACTIONS(3651), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3663), 38, + ACTIONS(3649), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -79813,8 +78086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79828,7 +78104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79842,34 +78117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26699] = 6, + [26111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, + ACTIONS(1348), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(145), 39, + ACTIONS(1346), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79880,6 +78150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79893,36 +78164,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26758] = 6, + [26164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3852), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3856), 1, sym__concat, - STATE(855), 1, + STATE(791), 1, aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(3854), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 39, + ACTIONS(3850), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79946,22 +78217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26817] = 6, + [26223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3852), 1, aux_sym_concatenation_token1, - ACTIONS(3934), 1, + ACTIONS(3856), 1, sym__concat, - STATE(798), 1, + STATE(796), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(3860), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3837), 39, + ACTIONS(3858), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79999,36 +78270,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [26876] = 6, + [26282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(3934), 1, + ACTIONS(3812), 1, sym__concat, - STATE(797), 1, + STATE(783), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(3651), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3841), 39, + ts_builtin_sym_end, + ACTIONS(3649), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80054,21 +78326,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26935] = 6, + [26341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(3939), 1, + ACTIONS(3812), 1, sym__concat, STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(3655), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1258), 38, + ACTIONS(3653), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80107,174 +78379,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [26994] = 23, + [26400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3966), 1, - anon_sym_RBRACE3, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2277), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3946), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3948), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27087] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3912), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27180] = 6, + sym_word, + sym_test_operator, + [26453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3934), 1, + ACTIONS(3682), 1, sym__concat, - STATE(798), 1, + STATE(806), 1, aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, + ACTIONS(182), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3985), 39, + ACTIONS(149), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80300,34 +78482,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27239] = 6, + [26512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, + ACTIONS(1314), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3989), 39, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80338,6 +78516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80353,22 +78532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27298] = 6, + [26565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3928), 1, + ACTIONS(3682), 1, sym__concat, - STATE(771), 1, + ACTIONS(3862), 1, + anon_sym_LPAREN, + STATE(892), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1260), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3837), 39, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80377,9 +78559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80403,23 +78584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27357] = 6, + [26626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3864), 1, aux_sym_concatenation_token1, - ACTIONS(3928), 1, + ACTIONS(3866), 1, sym__concat, - STATE(767), 1, + STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3841), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80459,21 +78639,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27416] = 6, + [26685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, + ACTIONS(3848), 1, + sym__special_character, + STATE(787), 1, + aux_sym__literal_repeat1, + ACTIONS(182), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 38, + ACTIONS(149), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80483,8 +78660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80498,7 +78678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80512,15 +78691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27475] = 3, + [26742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, + ACTIONS(3868), 1, + aux_sym_concatenation_token1, + ACTIONS(3871), 1, sym__concat, + STATE(769), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1318), 41, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80545,7 +78729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80559,24 +78742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27528] = 6, + [26801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3849), 1, + ACTIONS(3682), 1, sym__concat, - STATE(813), 1, + STATE(805), 1, aux_sym_concatenation_repeat1, - ACTIONS(3685), 4, + ACTIONS(3655), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3683), 38, + ACTIONS(3653), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80586,6 +78767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -80615,48 +78797,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27587] = 7, + [26860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, - anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(1213), 2, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, + sym__concat, + STATE(806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3651), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3997), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, + ACTIONS(3649), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80669,21 +78850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27648] = 5, + [26919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 3, + ACTIONS(1340), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3673), 40, + ACTIONS(1338), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80696,7 +78873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80707,7 +78883,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80719,33 +78897,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27705] = 7, + [26972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, - anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(3864), 1, + aux_sym_concatenation_token1, + ACTIONS(3874), 1, + sym__concat, + STATE(814), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3997), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, + ACTIONS(1282), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80753,6 +78923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80760,9 +78933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80773,26 +78950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27766] = 6, + [27031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3864), 1, aux_sym_concatenation_token1, - ACTIONS(3849), 1, + ACTIONS(3876), 1, sym__concat, - STATE(813), 1, + STATE(767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1234), 4, + ACTIONS(1264), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80801,8 +78977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80826,23 +79003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [27825] = 6, + [27090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 4, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3673), 38, + ACTIONS(1350), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80854,6 +79026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80866,6 +79040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80881,18 +79056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27884] = 5, + [27143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4001), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(3810), 1, + aux_sym_concatenation_token1, + ACTIONS(3812), 1, + sym__concat, + STATE(783), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3546), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 40, + ts_builtin_sym_end, + ACTIONS(3544), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80902,11 +79080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80920,6 +79095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80933,20 +79109,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [27941] = 6, + [27202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(320), 1, + anon_sym_DQUOTE, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + sym_test_operator, + [27261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, aux_sym_concatenation_token1, - ACTIONS(4004), 1, + ACTIONS(3884), 1, sym__concat, - STATE(799), 1, + STATE(780), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(3882), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1246), 39, + ACTIONS(3878), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80986,20 +79215,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28000] = 6, + [27320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3880), 1, aux_sym_concatenation_token1, - ACTIONS(4006), 1, + ACTIONS(3884), 1, sym__concat, - STATE(799), 1, + STATE(782), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(3888), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1252), 39, + ACTIONS(3886), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81039,20 +79268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28059] = 6, + [27379] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 1, + ACTIONS(3880), 1, aux_sym_concatenation_token1, - ACTIONS(4011), 1, + ACTIONS(3890), 1, sym__concat, - STATE(799), 1, + STATE(769), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1284), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(1282), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81092,20 +79321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28118] = 6, + [27438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3892), 1, sym__concat, - STATE(855), 1, + STATE(810), 1, aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, + ACTIONS(1284), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3683), 39, + ts_builtin_sym_end, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -81115,7 +79345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -81145,34 +79374,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28177] = 6, + [27497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3880), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3894), 1, sym__concat, - STATE(856), 1, + STATE(769), 1, aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3673), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81198,29 +79427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28236] = 3, + [27556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(3810), 1, + aux_sym_concatenation_token1, + ACTIONS(3896), 1, sym__concat, - sym_variable_name, + STATE(810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 41, + ts_builtin_sym_end, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81231,7 +79465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81245,82 +79478,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28289] = 3, + [27615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(320), 1, + anon_sym_DQUOTE, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_CARET, sym_test_operator, - [28342] = 3, + [27674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 41, + ACTIONS(1330), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81345,18 +79581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28395] = 3, + [27727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(3880), 1, + aux_sym_concatenation_token1, + ACTIONS(3884), 1, sym__concat, + STATE(782), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1276), 41, + ACTIONS(3741), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81381,7 +79621,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [27786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, + sym__special_character, + STATE(787), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1364), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [27843] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, aux_sym_concatenation_token1, + ACTIONS(3884), 1, + sym__concat, + STATE(780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3745), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81395,18 +79739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28448] = 3, + [27902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1280), 41, + ACTIONS(1354), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81448,19 +79791,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28501] = 6, + [27955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1346), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(4016), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [28008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 1, + aux_sym_concatenation_token1, + ACTIONS(3901), 1, sym__concat, - STATE(810), 1, + STATE(808), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1278), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1246), 40, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81501,33 +79894,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28560] = 6, + [28067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(4018), 1, + ACTIONS(3812), 1, sym__concat, - STATE(810), 1, + STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3542), 4, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1252), 40, + ts_builtin_sym_end, + ACTIONS(3540), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [28126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1320), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81538,6 +79981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81551,21 +79995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28619] = 5, + [28179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(3848), 1, sym__special_character, - STATE(796), 1, + STATE(787), 1, aux_sym__literal_repeat1, - ACTIONS(3665), 3, + ACTIONS(3546), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3663), 40, + ACTIONS(3544), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -81606,33 +80049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28676] = 6, + [28236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 1, - aux_sym_concatenation_token1, - ACTIONS(4023), 1, - sym__concat, - STATE(810), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1290), 4, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1288), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81643,6 +80083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81656,23 +80097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28735] = 6, + [28289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3852), 1, aux_sym_concatenation_token1, - ACTIONS(3934), 1, + ACTIONS(3903), 1, sym__concat, - STATE(797), 1, + STATE(808), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1284), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(1282), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81710,17 +80149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28794] = 3, + [28348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(3864), 1, + aux_sym_concatenation_token1, + ACTIONS(3876), 1, sym__concat, + STATE(773), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1298), 41, + ACTIONS(3745), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81729,7 +80174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -81745,7 +80189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81762,24 +80205,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28847] = 6, + [28407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3864), 1, aux_sym_concatenation_token1, - ACTIONS(4026), 1, + ACTIONS(3876), 1, sym__concat, - STATE(781), 1, + STATE(767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, + ACTIONS(3743), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 38, + ACTIONS(3741), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81788,8 +80229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81813,23 +80255,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [28906] = 6, + [28466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3905), 1, aux_sym_concatenation_token1, - ACTIONS(4028), 1, + ACTIONS(3908), 1, sym__concat, - STATE(781), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, + ACTIONS(1271), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 38, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -81839,6 +80281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -81868,29 +80311,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [28965] = 3, + [28525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1310), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81915,22 +80359,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29018] = 6, + [28578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(3864), 1, aux_sym_concatenation_token1, - ACTIONS(4030), 1, + ACTIONS(3876), 1, sym__concat, - STATE(807), 1, + STATE(773), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(3688), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 40, + ACTIONS(3684), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81939,7 +80383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -81971,19 +80414,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29077] = 6, + [28637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(3864), 1, aux_sym_concatenation_token1, - ACTIONS(4030), 1, + ACTIONS(3876), 1, sym__concat, - STATE(807), 1, + STATE(767), 1, aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, + ACTIONS(3694), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4032), 40, + ACTIONS(3692), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81992,7 +80436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82024,33 +80467,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29136] = 6, + [28696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(4030), 1, + ACTIONS(3682), 1, sym__concat, - STATE(808), 1, + STATE(805), 1, aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, + ACTIONS(1260), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(4036), 40, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82074,18 +80518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29195] = 3, + [28755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 41, + ACTIONS(1354), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82127,29 +80570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29248] = 3, + [28808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3911), 1, sym__concat, - sym_variable_name, + STATE(799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1294), 41, + ACTIONS(1282), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82160,7 +80608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82174,18 +80621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29301] = 3, + [28867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3913), 1, sym__concat, + STATE(799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 41, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82195,10 +80646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82211,7 +80661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82227,15 +80676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29354] = 3, + [28926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 41, + ACTIONS(1338), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82277,15 +80726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29407] = 3, + [28979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, + ACTIONS(3915), 1, + aux_sym_concatenation_token1, + ACTIONS(3918), 1, sym__concat, - sym_variable_name, + STATE(808), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1302), 41, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82310,7 +80763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82327,85 +80779,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29460] = 23, + [29038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1316), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - ACTIONS(1436), 1, + [29091] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, + aux_sym_concatenation_token1, + ACTIONS(3924), 1, + sym__concat, + STATE(810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 4, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3746), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ts_builtin_sym_end, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1432), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29553] = 3, + sym_word, + sym_test_operator, + [29150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82447,15 +80932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29606] = 3, + [29203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1314), 41, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82497,15 +80982,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29659] = 3, + [29256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1280), 41, + ACTIONS(1266), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82547,24 +81032,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29712] = 6, + [29309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3927), 1, aux_sym_concatenation_token1, - ACTIONS(3849), 1, + ACTIONS(3930), 1, sym__concat, STATE(814), 1, aux_sym_concatenation_repeat1, - ACTIONS(178), 4, + ACTIONS(1271), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(145), 38, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -82573,8 +81056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82598,24 +81082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29771] = 7, + [29368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - ACTIONS(4040), 1, - anon_sym_LPAREN, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 38, + ACTIONS(1334), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82627,6 +81105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82639,6 +81119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82654,15 +81135,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29832] = 3, + [29421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 41, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82672,10 +81158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -82688,7 +81173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82704,21 +81188,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29885] = 5, + [29480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, + ACTIONS(3880), 1, + aux_sym_concatenation_token1, + ACTIONS(3884), 1, + sym__concat, + STATE(782), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(145), 40, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -82731,7 +81216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82743,6 +81227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -82756,15 +81241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [29942] = 3, + [29539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1268), 41, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82806,28 +81291,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [29995] = 3, + [29592] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + STATE(1805), 1, + sym_string, + ACTIONS(1233), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1268), 41, + ACTIONS(3937), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3933), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82835,14 +81330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -82853,21 +81343,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30048] = 3, + [29653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + STATE(1805), 1, + sym_string, + ACTIONS(1237), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1310), 41, + ACTIONS(3937), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3933), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -82875,25 +81377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -82906,15 +81399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30101] = 3, + [29714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 41, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82956,20 +81449,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30154] = 6, + [29767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - aux_sym_concatenation_token1, - ACTIONS(4045), 1, - sym__concat, - STATE(836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82978,6 +81466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82993,6 +81482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83009,15 +81499,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30213] = 3, + [29820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1294), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83059,65 +81549,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30266] = 3, + [29873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, + ACTIONS(3682), 1, sym__concat, + ACTIONS(3939), 1, + anon_sym_LPAREN, + STATE(892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1302), 41, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83129,8 +81576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83143,7 +81588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83159,65 +81603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30372] = 3, + [29934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3852), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, + ACTIONS(3856), 1, sym__concat, - sym_variable_name, + STATE(791), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1330), 41, + ACTIONS(1262), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83242,7 +81640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83259,15 +81656,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30478] = 3, + [29993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1314), 41, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83309,15 +81706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30531] = 3, + [30046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1322), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83359,22 +81756,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30584] = 6, + [30099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1302), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -83386,6 +81779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83396,6 +81790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83409,18 +81804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30643] = 3, + [30152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1318), 41, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83462,20 +81856,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30696] = 6, + [30205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(3810), 1, aux_sym_concatenation_token1, - ACTIONS(4051), 1, + ACTIONS(3812), 1, sym__concat, - STATE(846), 1, + STATE(783), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(182), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 39, + ts_builtin_sym_end, + ACTIONS(149), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83485,7 +81880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -83515,30 +81909,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30755] = 3, + [30264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1326), 41, + ACTIONS(1288), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83563,17 +81956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [30808] = 3, + [30317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(805), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3542), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 41, + ACTIONS(3540), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83583,10 +81982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83599,7 +81997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83615,15 +82012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30861] = 3, + [30376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3546), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 41, + ACTIONS(3544), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83633,10 +82035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83649,7 +82050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83665,15 +82065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30914] = 3, + [30435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(3810), 1, + aux_sym_concatenation_token1, + ACTIONS(3812), 1, sym__concat, + STATE(783), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 4, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 41, + ts_builtin_sym_end, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83685,8 +82091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83699,7 +82103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83715,30 +82118,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [30967] = 3, + [30494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83763,17 +82165,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31020] = 3, + [30547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(3810), 1, + aux_sym_concatenation_token1, + ACTIONS(3812), 1, sym__concat, + STATE(781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 4, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1272), 41, + ts_builtin_sym_end, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83785,8 +82194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -83799,7 +82206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83815,18 +82221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31073] = 3, + [30606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(3943), 1, + anon_sym_DQUOTE, + STATE(1958), 1, + sym_string, + ACTIONS(1233), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1334), 41, + ACTIONS(3945), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3941), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -83834,25 +82253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83865,18 +82275,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31126] = 3, + [30667] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(3943), 1, + anon_sym_DQUOTE, + STATE(1958), 1, + sym_string, + ACTIONS(1237), 2, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1330), 41, + ACTIONS(3945), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3941), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -83884,25 +82307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83915,34 +82329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31179] = 6, + [30728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4054), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1352), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 39, + ACTIONS(1350), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83953,6 +82362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83966,36 +82376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31238] = 6, + [30781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3947), 1, aux_sym_concatenation_token1, - ACTIONS(4056), 1, + ACTIONS(3949), 1, sym__concat, - STATE(846), 1, + STATE(974), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(3747), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1246), 39, + ACTIONS(3745), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84021,124 +82431,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [31297] = 6, + [30839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3951), 1, + aux_sym_concatenation_token1, + ACTIONS(3954), 1, + sym__concat, + STATE(841), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(1266), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [31356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [31415] = 3, + [30897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, + ACTIONS(3957), 1, + aux_sym_concatenation_token1, + ACTIONS(3959), 1, sym__concat, - sym__bare_dollar, + STATE(958), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1322), 41, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84150,7 +82509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84161,7 +82519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84175,173 +82532,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31468] = 23, + [30955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(3963), 1, + sym__concat, + STATE(941), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4058), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ts_builtin_sym_end, + ACTIONS(3741), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31561] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4060), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31654] = 7, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [31013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_DQUOTE, - STATE(2126), 1, - sym_string, - ACTIONS(1213), 2, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(3963), 1, + sym__concat, + STATE(909), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, + ts_builtin_sym_end, + ACTIONS(3745), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84349,6 +82611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84356,9 +82619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84369,33 +82636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31715] = 7, + [31071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_DQUOTE, - STATE(2126), 1, - sym_string, - ACTIONS(1217), 2, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84403,6 +82657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84410,9 +82667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -84423,232 +82685,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [31776] = 23, + [31123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + ACTIONS(3965), 1, + aux_sym_concatenation_token1, + ACTIONS(3968), 1, + sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1266), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1436), 1, + [31181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ACTIONS(1338), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31869] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - ACTIONS(1436), 1, + [31233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(860), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4070), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4072), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31962] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 1, - sym_word, - ACTIONS(4086), 1, - anon_sym_LPAREN, - ACTIONS(4089), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4092), 1, sym__special_character, - ACTIONS(4095), 1, anon_sym_DQUOTE, - ACTIONS(4101), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4104), 1, aux_sym_number_token2, - ACTIONS(4107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4110), 1, - anon_sym_RBRACE3, - ACTIONS(4112), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4115), 1, anon_sym_BQUOTE, - ACTIONS(4118), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4124), 1, - sym_test_operator, - ACTIONS(4127), 1, - sym__brace_start, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(4077), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4080), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4083), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32055] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [31285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -84658,7 +82857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84673,6 +82871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84688,157 +82887,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32114] = 23, + [31337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, + STATE(899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, + ACTIONS(3741), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32207] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(1402), 1, sym__special_character, - ACTIONS(1404), 1, anon_sym_DQUOTE, - ACTIONS(1408), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1410), 1, aux_sym_number_token2, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(861), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4132), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4134), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32300] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [31395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(3655), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1318), 40, + ACTIONS(3653), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84851,6 +82962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84861,7 +82973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84877,15 +82988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32352] = 3, + [31447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1314), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84894,6 +83004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -84926,17 +83037,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32404] = 3, + [31499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1302), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 41, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -84949,7 +83060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84960,6 +83070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84975,15 +83086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32456] = 3, + [31551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1284), 40, + ACTIONS(1358), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85022,17 +83132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32508] = 3, + [31603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1338), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85041,7 +83152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85071,17 +83181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32560] = 3, + [31655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1346), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85120,31 +83230,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32612] = 3, + [31707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 40, + ACTIONS(1354), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85171,29 +83282,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32664] = 3, + [31759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1280), 40, + ACTIONS(1330), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85220,14 +83331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32716] = 3, + [31811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(3975), 1, + sym__special_character, + STATE(865), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 41, + ACTIONS(3741), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85252,9 +83367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85269,29 +83382,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32768] = 3, + [31867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 40, + ts_builtin_sym_end, + ACTIONS(1288), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85318,14 +83431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [32820] = 3, + [31919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 41, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85367,14 +83480,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32872] = 3, + [31971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 41, + ACTIONS(1358), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85383,7 +83497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -85416,21 +83529,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32924] = 6, + [32023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(3957), 1, aux_sym_concatenation_token1, - ACTIONS(4139), 1, + ACTIONS(3977), 1, sym__concat, - STATE(882), 1, + STATE(842), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1264), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85441,6 +83552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85468,32 +83581,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [32982] = 6, + [32081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4144), 1, - sym__concat, - STATE(882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, + ACTIONS(1360), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 37, + ACTIONS(1358), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85504,6 +83614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85517,17 +83628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33040] = 3, + [32133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(3979), 1, + sym__special_character, + STATE(865), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1276), 41, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85552,9 +83666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85569,15 +83681,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33092] = 3, + [32189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1310), 40, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85616,21 +83727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33144] = 3, + [32241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, + ACTIONS(3982), 1, + aux_sym_concatenation_token1, + ACTIONS(3985), 1, sym__concat, - sym__bare_dollar, + STATE(867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1318), 39, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -85640,7 +83756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85651,7 +83766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85665,30 +83779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33196] = 3, + [32299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1280), 41, + ACTIONS(1346), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85713,24 +83829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33248] = 6, + [32351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4146), 1, - sym__concat, - STATE(882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, + ACTIONS(3975), 1, + sym__special_character, + STATE(865), 1, + aux_sym__literal_repeat1, + ACTIONS(3694), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 37, + ACTIONS(3692), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85739,8 +83851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85753,7 +83868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85768,19 +83882,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33306] = 6, + [32407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4150), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1246), 39, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85805,6 +83915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85820,20 +83931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33364] = 6, + [32459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1306), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3841), 38, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85842,9 +83947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85856,6 +83963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85872,19 +83980,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33422] = 6, + [32511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85909,6 +84013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85924,20 +84029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33480] = 6, + [32563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4154), 1, + ACTIONS(3973), 1, sym__concat, - STATE(911), 1, + STATE(900), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(3688), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3837), 38, + ACTIONS(3684), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85976,21 +84081,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33538] = 6, + [32621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, + ACTIONS(1338), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86001,6 +84100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86012,6 +84113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86028,92 +84130,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33596] = 26, - ACTIONS(63), 1, + [32673] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(777), 1, - sym_test_operator, - ACTIONS(1449), 1, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, + STATE(899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3694), 3, sym_file_descriptor, - ACTIONS(3082), 1, - sym_word, - ACTIONS(4160), 1, - sym__special_character, - ACTIONS(4162), 1, sym_variable_name, - STATE(464), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, + sym__brace_start, + ACTIONS(3692), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(775), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1447), 3, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(778), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33694] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [32731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, + ACTIONS(1318), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3781), 38, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86122,9 +84199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86136,6 +84214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86152,69 +84231,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33752] = 26, + [32783] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1065), 1, + ACTIONS(513), 1, sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3086), 1, + ACTIONS(3085), 1, sym_word, - ACTIONS(3218), 1, + ACTIONS(3988), 1, sym__special_character, - ACTIONS(4162), 1, + ACTIONS(3990), 1, sym_variable_name, - STATE(615), 1, + STATE(431), 1, sym_command_name, - STATE(1731), 1, + STATE(768), 1, aux_sym__literal_repeat1, - STATE(1970), 1, + STATE(878), 1, sym_concatenation, - STATE(4396), 1, + STATE(4112), 1, sym_subscript, - ACTIONS(1033), 2, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1049), 2, + ACTIONS(497), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1063), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2295), 3, + STATE(2174), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1544), 9, + STATE(665), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86224,21 +84303,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [33850] = 6, + [32881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 1, - aux_sym_concatenation_token1, - ACTIONS(4167), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1260), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86251,6 +84326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86276,20 +84352,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [33908] = 6, + [32933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, + ACTIONS(1271), 4, + sym_file_descriptor, sym__concat, - STATE(903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, + sym_variable_name, + sym__brace_start, + ACTIONS(1266), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [32985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3777), 38, + ACTIONS(1334), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86298,9 +84418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86312,6 +84434,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [33037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1312), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86328,69 +84499,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [33966] = 26, + [33089] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1089), 1, + ACTIONS(1057), 1, sym_test_operator, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3134), 1, + ACTIONS(3150), 1, sym_word, - ACTIONS(4162), 1, + ACTIONS(3990), 1, sym_variable_name, - ACTIONS(4170), 1, + ACTIONS(3992), 1, sym__special_character, - STATE(602), 1, + STATE(561), 1, sym_command_name, - STATE(1096), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1341), 1, + STATE(1352), 1, sym_concatenation, - STATE(4396), 1, + STATE(4112), 1, sym_subscript, - ACTIONS(340), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1087), 2, + ACTIONS(1055), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2295), 3, + STATE(2174), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1407), 9, + STATE(1394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86400,32 +84571,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [34064] = 5, + [33187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(1356), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3841), 39, + ts_builtin_sym_end, + ACTIONS(1354), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86436,7 +84604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86448,32 +84618,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34120] = 3, + [33239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1294), 40, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86500,20 +84669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34172] = 6, + [33291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4154), 1, + ACTIONS(3973), 1, sym__concat, - STATE(903), 1, + STATE(900), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(3747), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1242), 38, + ACTIONS(3745), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86552,22 +84721,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34230] = 6, + [33349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4174), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1352), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 38, + ACTIONS(1350), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86578,6 +84743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86588,6 +84754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86601,21 +84768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34288] = 5, + [33401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(3963), 1, + sym__concat, + STATE(941), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1352), 39, + ts_builtin_sym_end, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86624,11 +84793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86641,6 +84807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86655,28 +84822,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34344] = 3, + [33459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 41, + ts_builtin_sym_end, + ACTIONS(1330), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86701,70 +84869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34396] = 3, + [33511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(3994), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34448] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(3675), 3, + ACTIONS(3546), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3673), 39, + ACTIONS(3544), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -86804,136 +84922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34504] = 26, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3122), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4181), 1, - sym__special_character, - STATE(470), 1, - sym_command_name, - STATE(1104), 1, - aux_sym__literal_repeat1, - STATE(1275), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(794), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34602] = 3, + [33567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3947), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, + ACTIONS(3949), 1, sym__concat, + STATE(969), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1314), 40, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86942,7 +84944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -86958,7 +84959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86974,32 +84974,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34706] = 6, + [33625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(4183), 1, + ACTIONS(3996), 1, sym__concat, - STATE(912), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1252), 38, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87023,35 +85024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34764] = 6, + [33683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(4188), 1, + ACTIONS(3998), 1, sym__concat, - STATE(912), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1284), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 38, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87075,22 +85076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34822] = 6, + [33741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3985), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87099,7 +85095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -87115,6 +85110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87128,21 +85124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34880] = 6, + [33793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, + ACTIONS(1290), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(3989), 39, + ACTIONS(1288), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87167,6 +85159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87180,22 +85173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [34938] = 6, + [33845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(939), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1318), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3837), 38, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87204,6 +85193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -87219,6 +85209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87234,19 +85225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [34996] = 6, + [33897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(4000), 1, aux_sym_concatenation_token1, - ACTIONS(4191), 1, + ACTIONS(4002), 1, sym__concat, - STATE(889), 1, + STATE(846), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1284), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(1282), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87286,14 +85277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35054] = 3, + [33955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, sym__concat, + STATE(899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 41, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87302,11 +85299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87318,7 +85313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87335,29 +85329,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35106] = 3, + [34013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, - sym_variable_name, + STATE(892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1260), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1326), 40, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87368,7 +85366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87384,20 +85381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35158] = 6, + [34071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4195), 1, + ACTIONS(4004), 1, sym__concat, - STATE(937), 1, + STATE(902), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3841), 38, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87406,10 +85403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87434,16 +85430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35216] = 3, + [34129] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(4006), 1, sym__concat, + STATE(902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 41, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87452,11 +85455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87468,7 +85469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87485,29 +85485,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35268] = 3, + [34187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 40, + ts_builtin_sym_end, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87534,15 +85534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35320] = 3, + [34239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(4008), 1, + aux_sym_concatenation_token1, + ACTIONS(4011), 1, sym__concat, + STATE(902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87551,11 +85556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87567,7 +85570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87581,16 +85583,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35372] = 3, + [34297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, + ACTIONS(4000), 1, + aux_sym_concatenation_token1, + ACTIONS(4014), 1, sym__concat, + STATE(846), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1314), 41, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87615,7 +85623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87629,36 +85636,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35424] = 5, + [34355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 3, + ACTIONS(1306), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3663), 39, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87669,7 +85671,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87683,20 +85687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35480] = 6, + [34407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4197), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 38, + ts_builtin_sym_end, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -87720,6 +85720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87735,15 +85736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35538] = 3, + [34459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1360), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1284), 40, + ts_builtin_sym_end, + ACTIONS(1358), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -87753,7 +85755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -87784,15 +85785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35590] = 3, + [34511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 40, + ACTIONS(1350), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87833,15 +85834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35642] = 3, + [34563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1352), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1294), 40, + ts_builtin_sym_end, + ACTIONS(1350), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -87851,7 +85853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -87882,15 +85883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35694] = 3, + [34615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(4016), 1, sym__concat, + STATE(867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1346), 40, + ts_builtin_sym_end, + ACTIONS(1282), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87899,11 +85906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87915,7 +85919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87929,25 +85932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35746] = 6, + [34673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1348), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 38, + ACTIONS(1346), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87956,8 +85954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87968,6 +85967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87981,18 +85981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35804] = 3, + [34725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(182), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 39, + ACTIONS(149), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88016,7 +86021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88032,23 +86036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [35856] = 6, + [34783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3957), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(4018), 1, sym__concat, - STATE(925), 1, + STATE(958), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1284), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 38, + ACTIONS(1282), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88057,8 +86059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88082,21 +86085,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35914] = 6, + [34841] = 26, + ACTIONS(63), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(431), 1, + sym_test_operator, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3990), 1, + sym_variable_name, + ACTIONS(4020), 1, + sym__special_character, + STATE(497), 1, + sym_command_name, + STATE(1095), 1, + aux_sym__literal_repeat1, + STATE(1352), 1, + sym_concatenation, + STATE(4112), 1, + sym_subscript, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(415), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2174), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4203), 1, - sym__concat, - STATE(992), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4032), 39, + ACTIONS(1354), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88120,6 +86192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88136,33 +86209,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [35972] = 6, + [34991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(4000), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(4022), 1, sym__concat, - STATE(925), 1, + STATE(896), 1, aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, + ACTIONS(3882), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(3673), 38, + ACTIONS(3878), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88188,33 +86261,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36030] = 6, + [35049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(4000), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(4022), 1, sym__concat, - STATE(930), 1, + STATE(903), 1, aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, + ACTIONS(3888), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(3683), 38, + ACTIONS(3886), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88240,21 +86313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36088] = 6, + [35107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4203), 1, - sym__concat, - STATE(993), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4036), 39, + ts_builtin_sym_end, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88263,9 +86334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88276,6 +86346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88289,25 +86360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36146] = 6, + [35159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4205), 1, - sym__concat, - STATE(948), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1348), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 38, + ts_builtin_sym_end, + ACTIONS(1346), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88316,9 +86383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88329,6 +86395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88344,19 +86411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36204] = 3, + [35211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 5, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 39, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88365,8 +86430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88391,22 +86457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36256] = 6, + [35263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4207), 1, - sym__concat, - STATE(948), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1252), 38, + ACTIONS(1334), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88430,6 +86492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88443,20 +86506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36314] = 5, + [35315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, + ACTIONS(1264), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(145), 39, + ACTIONS(1262), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88466,6 +86526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -88483,6 +86544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88496,69 +86558,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36370] = 26, + [35367] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(562), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(566), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(574), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(580), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(584), 1, - sym_test_operator, - ACTIONS(590), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(785), 1, + sym_test_operator, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3078), 1, + ACTIONS(3087), 1, sym_word, - ACTIONS(4162), 1, + ACTIONS(3990), 1, sym_variable_name, - ACTIONS(4209), 1, + ACTIONS(4024), 1, sym__special_character, - STATE(452), 1, + STATE(469), 1, sym_command_name, - STATE(940), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1200), 1, + STATE(1352), 1, sym_concatenation, - STATE(4396), 1, + STATE(4112), 1, sym_subscript, - ACTIONS(546), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(568), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(582), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1447), 3, + ACTIONS(783), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2295), 3, + STATE(2174), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(734), 9, + STATE(803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88568,20 +86630,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [36468] = 6, + [35465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(939), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, + ACTIONS(1340), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3985), 38, + ACTIONS(1338), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88590,6 +86646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -88605,6 +86662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88618,24 +86676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36526] = 6, + [35517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, + ACTIONS(1314), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3989), 38, + ts_builtin_sym_end, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -88644,9 +86700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88657,6 +86712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88672,20 +86728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36584] = 6, + [35569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, + ACTIONS(4026), 1, + sym__special_character, STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3663), 38, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88697,6 +86751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88710,7 +86766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88724,20 +86779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36642] = 6, + [35625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3659), 38, + ts_builtin_sym_end, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88761,6 +86812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88776,16 +86828,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36700] = 3, + [35677] = 26, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1075), 1, + anon_sym_DOLLAR, + ACTIONS(1079), 1, + anon_sym_DQUOTE, + ACTIONS(1083), 1, + aux_sym_number_token1, + ACTIONS(1085), 1, + aux_sym_number_token2, + ACTIONS(1087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1091), 1, + anon_sym_BQUOTE, + ACTIONS(1093), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1097), 1, + sym_test_operator, + ACTIONS(1101), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3152), 1, + sym_word, + ACTIONS(3242), 1, + sym__special_character, + ACTIONS(3990), 1, + sym_variable_name, + STATE(599), 1, + sym_command_name, + STATE(1741), 1, + aux_sym__literal_repeat1, + STATE(1802), 1, + sym_concatenation, + STATE(4112), 1, + sym_subscript, + ACTIONS(1065), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1081), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1095), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2174), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1506), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 39, + ACTIONS(1338), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88795,6 +86918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -88825,15 +86949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36752] = 3, + [35827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(3542), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1322), 40, + ACTIONS(3540), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -88843,9 +86966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -88858,6 +86983,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [35879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1320), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, @@ -88872,22 +87044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [36804] = 6, + [35931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(3947), 1, aux_sym_concatenation_token1, - ACTIONS(4214), 1, + ACTIONS(3949), 1, sym__concat, - STATE(948), 1, + STATE(969), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(3743), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1258), 38, + ACTIONS(3741), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88926,69 +87099,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [36862] = 26, + [35989] = 26, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, + ACTIONS(431), 1, sym_test_operator, - ACTIONS(388), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1449), 1, + ACTIONS(1403), 1, sym_file_descriptor, - ACTIONS(3084), 1, + ACTIONS(3083), 1, sym_word, - ACTIONS(4162), 1, + ACTIONS(3990), 1, sym_variable_name, - ACTIONS(4217), 1, + ACTIONS(4020), 1, sym__special_character, - STATE(509), 1, + STATE(499), 1, sym_command_name, - STATE(1096), 1, + STATE(1095), 1, aux_sym__literal_repeat1, - STATE(1341), 1, + STATE(1352), 1, sym_concatenation, - STATE(4396), 1, + STATE(4112), 1, sym_subscript, - ACTIONS(340), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, + ACTIONS(415), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(380), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1447), 3, + ACTIONS(1399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2295), 3, + STATE(2174), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(1445), 5, + ACTIONS(1397), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(959), 9, + STATE(898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88998,14 +87171,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [36960] = 3, + [36087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 3, + ACTIONS(1318), 5, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(3683), 41, + ts_builtin_sym_end, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89015,11 +87190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -89032,6 +87204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89047,15 +87220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37012] = 3, + [36139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3655), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1330), 40, + ACTIONS(3653), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89065,7 +87243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89080,7 +87257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89096,15 +87272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37064] = 3, + [36197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3651), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1334), 40, + ACTIONS(3649), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89114,7 +87295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89129,7 +87309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89145,15 +87324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37116] = 3, + [36255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1322), 40, + ACTIONS(1330), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89194,17 +87373,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37168] = 3, + [36307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(3994), 1, + sym__special_character, + STATE(925), 1, + aux_sym__literal_repeat1, + ACTIONS(3651), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1330), 40, + ACTIONS(3649), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -89216,6 +87399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89226,9 +87410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89240,18 +87422,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37220] = 3, + [36363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1298), 40, + ts_builtin_sym_end, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89261,7 +87443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89292,14 +87473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37272] = 3, + [36415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1318), 41, + ACTIONS(1288), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89338,108 +87520,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37324] = 26, - ACTIONS(63), 1, + [36467] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1296), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(364), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(368), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(370), 1, aux_sym_number_token2, - ACTIONS(372), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, + [36519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(4029), 1, + sym__concat, + STATE(867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, sym_file_descriptor, - ACTIONS(3084), 1, - sym_word, - ACTIONS(4162), 1, sym_variable_name, - ACTIONS(4217), 1, - sym__special_character, - STATE(494), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(959), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37422] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [36577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(4000), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(4022), 1, sym__concat, - STATE(925), 1, + STATE(903), 1, aux_sym_concatenation_repeat1, - ACTIONS(178), 3, + ACTIONS(1264), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(145), 38, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89465,33 +87675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37480] = 6, + [36635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(1322), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1225), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89502,6 +87708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89517,15 +87724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37538] = 3, + [36687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89566,14 +87773,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37590] = 3, + [36739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1326), 41, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89615,29 +87822,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37642] = 3, + [36791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1272), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89664,21 +87871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37694] = 6, + [36843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, + ACTIONS(1332), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 37, + ACTIONS(1330), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89687,8 +87887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89700,6 +87903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89716,21 +87920,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37752] = 6, + [36895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 37, + ACTIONS(1330), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89739,8 +87937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89752,6 +87953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89765,21 +87967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37810] = 5, + [36947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(1271), 5, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 39, + ts_builtin_sym_end, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89791,8 +87990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -89805,7 +88002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89819,17 +88018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [37866] = 3, + [36999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 40, + ts_builtin_sym_end, + ACTIONS(1334), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -89838,9 +88039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89865,18 +88065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37918] = 3, + [37051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89885,6 +88083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -89917,15 +88116,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [37970] = 3, + [37103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1338), 40, + ts_builtin_sym_end, + ACTIONS(1338), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -89935,7 +88135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89966,15 +88165,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38022] = 3, + [37155] = 26, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + aux_sym_number_token1, + ACTIONS(51), 1, + aux_sym_number_token2, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, + anon_sym_BQUOTE, + ACTIONS(59), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(63), 1, + sym_comment, + ACTIONS(65), 1, + sym_test_operator, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3106), 1, + sym_word, + ACTIONS(3990), 1, + sym_variable_name, + ACTIONS(4031), 1, + sym__special_character, + STATE(454), 1, + sym_command_name, + STATE(1038), 1, + aux_sym__literal_repeat1, + STATE(1267), 1, + sym_concatenation, + STATE(4112), 1, + sym_subscript, + ACTIONS(13), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(61), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2174), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(836), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 40, + ACTIONS(1288), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -90015,15 +88286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38074] = 3, + [37305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1334), 40, + ACTIONS(1350), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90064,15 +88335,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38126] = 3, + [37357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(3947), 1, + aux_sym_concatenation_token1, + ACTIONS(3949), 1, sym__concat, + STATE(974), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1272), 40, + ACTIONS(3878), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90096,7 +88372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90110,18 +88385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38178] = 3, + [37415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1302), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -90162,79 +88436,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38230] = 3, + [37467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4033), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 3, + ACTIONS(4036), 1, + sym__concat, + STATE(958), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(3659), 41, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90258,17 +88485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38334] = 3, + [37525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1272), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -90309,29 +88537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38386] = 3, + [37577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1271), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(1266), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90356,31 +88583,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38438] = 3, + [37629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(3947), 1, + aux_sym_concatenation_token1, + ACTIONS(3949), 1, sym__concat, - sym__bare_dollar, + STATE(969), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(3886), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90391,7 +88623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90407,15 +88638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38490] = 3, + [37687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 40, + ts_builtin_sym_end, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -90425,7 +88657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -90456,15 +88687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38542] = 3, + [37739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1330), 40, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90503,31 +88733,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38594] = 3, + [37791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1326), 40, + ACTIONS(1346), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90554,14 +88785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38646] = 3, + [37843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 41, + ACTIONS(1358), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90600,18 +88832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38698] = 3, + [37895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 40, + ACTIONS(1288), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90652,15 +88883,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38750] = 3, + [37947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 40, + ACTIONS(1354), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90669,6 +88900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90698,17 +88930,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38802] = 3, + [37999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(3963), 1, sym__concat, + STATE(941), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3694), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 41, + ts_builtin_sym_end, + ACTIONS(3692), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90717,11 +88955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90733,7 +88968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90750,15 +88984,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38854] = 3, + [38057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(3947), 1, + aux_sym_concatenation_token1, + ACTIONS(4039), 1, sym__concat, + STATE(841), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1276), 40, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90782,7 +89021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90796,18 +89034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [38906] = 3, + [38115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1322), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90848,15 +89085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [38958] = 3, + [38167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1280), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90865,6 +89102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90894,32 +89132,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39010] = 3, + [38219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ACTIONS(1346), 40, + ACTIONS(1350), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90944,16 +89180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39062] = 3, + [38271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 41, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90962,7 +89200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90995,14 +89232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39114] = 3, + [38323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, + ACTIONS(3947), 1, + aux_sym_concatenation_token1, + ACTIONS(4041), 1, sym__concat, + STATE(841), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 41, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91011,7 +89254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91027,7 +89269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91041,18 +89282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39166] = 3, + [38381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1342), 40, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91062,7 +89307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91077,7 +89321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91093,19 +89336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [39218] = 6, + [38439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(3957), 1, aux_sym_concatenation_token1, - ACTIONS(4222), 1, + ACTIONS(3977), 1, sym__concat, - STATE(1004), 1, + STATE(842), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(3854), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1246), 39, + ACTIONS(3850), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91145,19 +89388,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39276] = 6, + [38497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(3957), 1, aux_sym_concatenation_token1, - ACTIONS(4224), 1, + ACTIONS(3977), 1, sym__concat, - STATE(1004), 1, + STATE(912), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3860), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1252), 39, + ACTIONS(3858), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91197,15 +89440,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39334] = 3, + [38555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(3961), 1, + aux_sym_concatenation_token1, + ACTIONS(3963), 1, sym__concat, + STATE(909), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3688), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ts_builtin_sym_end, + ACTIONS(3684), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91216,8 +89465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91229,7 +89476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91246,67 +89492,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39386] = 3, + [38613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [39438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 39, + ACTIONS(1334), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91331,7 +89524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91346,28 +89541,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39494] = 3, + [38665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91392,31 +89588,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39546] = 3, + [38717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1326), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91441,87 +89637,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39598] = 6, + [38769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 4, + ACTIONS(1314), 4, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3781), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 4, - sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3777), 37, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91532,6 +89672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91545,18 +89686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39714] = 3, + [38821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1318), 40, + ACTIONS(1354), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91565,6 +89704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91597,86 +89737,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39766] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(464), 1, - sym_test_operator, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3080), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4226), 1, - sym__special_character, - STATE(448), 1, - sym_command_name, - STATE(831), 1, - aux_sym__literal_repeat1, - STATE(1003), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(448), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(665), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39864] = 3, + [38873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 41, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91686,11 +89755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -91703,6 +89770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91718,19 +89786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [39916] = 6, + [38925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 1, - aux_sym_concatenation_token1, - ACTIONS(4231), 1, - sym__concat, - STATE(1004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91739,6 +89803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -91754,6 +89819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91767,18 +89833,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [39974] = 3, + [38977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3542), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1310), 40, + ACTIONS(3540), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91788,7 +89858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91803,7 +89872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91819,16 +89887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40026] = 3, + [39035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3546), 3, + sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 39, + ACTIONS(3544), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91852,7 +89924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91868,16 +89939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40078] = 3, + [39093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 39, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91887,6 +89957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91917,16 +89988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40130] = 3, + [39145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -91936,6 +90006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91966,19 +90037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40182] = 3, + [39197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 5, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 39, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -91987,8 +90056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92013,18 +90083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40234] = 3, + [39249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 5, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 39, + ACTIONS(1334), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -92034,6 +90104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -92064,64 +90135,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40286] = 3, - ACTIONS(3), 1, + [39301] = 26, + ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(611), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(615), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(619), 1, aux_sym_number_token1, + ACTIONS(621), 1, aux_sym_number_token2, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(627), 1, anon_sym_BQUOTE, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(633), 1, + sym_test_operator, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(1403), 1, + sym_file_descriptor, + ACTIONS(3144), 1, + sym_word, + ACTIONS(3990), 1, + sym_variable_name, + ACTIONS(4043), 1, + sym__special_character, + STATE(444), 1, + sym_command_name, + STATE(993), 1, + aux_sym__literal_repeat1, + STATE(1008), 1, + sym_concatenation, + STATE(4112), 1, + sym_subscript, + ACTIONS(595), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(617), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40338] = 3, + ACTIONS(1399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2174), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(1397), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(720), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(3994), 1, + sym__special_character, + STATE(925), 1, + aux_sym__literal_repeat1, + ACTIONS(182), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1314), 40, + ACTIONS(149), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -92131,9 +90228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92146,9 +90244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92162,20 +90258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40390] = 6, + [39455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4195), 1, + ACTIONS(4045), 1, sym__concat, - STATE(937), 1, + STATE(902), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1284), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1242), 38, + ACTIONS(1282), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92186,8 +90282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92212,16 +90306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40448] = 3, + [39512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1272), 41, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92260,32 +90355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40500] = 3, + [39563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1280), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92312,15 +90405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40552] = 3, + [39614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4047), 1, + aux_sym_concatenation_token1, + ACTIONS(4049), 1, sym__concat, - sym_variable_name, + STATE(1013), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1298), 40, + ACTIONS(3886), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92344,7 +90441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92358,17 +90454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40604] = 3, + [39671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 41, + ACTIONS(1334), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92377,7 +90473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92407,67 +90502,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40656] = 3, - ACTIONS(3), 1, + [39722] = 25, + ACTIONS(63), 1, sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4053), 1, + sym__regex_no_space, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1988), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40708] = 3, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(4055), 1, + sym__special_character, + STATE(1000), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1310), 40, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92476,6 +90594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92491,9 +90610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92505,17 +90622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40760] = 3, + [39872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1322), 41, + ACTIONS(1358), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92524,7 +90641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92554,22 +90670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40812] = 3, + [39923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1298), 39, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -92579,7 +90693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92604,31 +90717,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40864] = 3, + [39974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 39, + ACTIONS(1330), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92653,21 +90765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [40916] = 3, + [40025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 39, + ACTIONS(1346), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -92676,8 +90787,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92704,29 +90816,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [40968] = 3, + [40076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 39, + ACTIONS(1330), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92753,19 +90864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41020] = 6, + [40127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(4058), 1, aux_sym_concatenation_token1, - ACTIONS(4203), 1, + ACTIONS(4060), 1, sym__concat, - STATE(992), 1, + STATE(1146), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1264), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + ACTIONS(1262), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92776,8 +90889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92802,88 +90913,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41078] = 22, + [40184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4238), 1, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1312), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, - ACTIONS(4240), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4242), 1, sym__special_character, - ACTIONS(4244), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(4252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2348), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3946), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_RBRACE3, - ACTIONS(3948), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41168] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [40235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1260), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1294), 40, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -92895,6 +90985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92905,7 +90996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92919,18 +91009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41220] = 3, + [40286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1302), 40, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92939,10 +91028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92971,19 +91059,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41272] = 3, + [40337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, + ACTIONS(4047), 1, + aux_sym_concatenation_token1, + ACTIONS(4062), 1, sym__concat, - sym__bare_dollar, + STATE(1023), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 39, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -92992,8 +91082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93004,7 +91095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93020,19 +91110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41324] = 3, + [40394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 5, + ACTIONS(4064), 1, + sym__special_character, + STATE(1111), 1, + aux_sym__literal_repeat1, + ACTIONS(3694), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 39, + ACTIONS(3692), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -93041,8 +91132,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93053,9 +91145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93067,17 +91157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41376] = 3, + [40449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(4066), 1, + sym__special_character, + STATE(1012), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1318), 40, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -93102,9 +91196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93118,19 +91210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41428] = 3, + [40504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4047), 1, + aux_sym_concatenation_token1, + ACTIONS(4069), 1, sym__concat, - sym__bare_dollar, + STATE(1023), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 39, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -93139,8 +91233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93151,7 +91246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93167,16 +91261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41480] = 3, + [40561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(4071), 1, + sym__special_character, + STATE(1149), 1, + aux_sym__literal_repeat1, + ACTIONS(3546), 4, sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1268), 39, + ACTIONS(3544), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -93200,9 +91297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93216,19 +91311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41532] = 3, + [40616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 39, + ACTIONS(1350), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -93237,8 +91330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93265,14 +91359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41584] = 3, + [40667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(1346), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93281,10 +91376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93313,14 +91407,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41635] = 3, + [40718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1242), 40, + ACTIONS(1354), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93329,7 +91424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93345,6 +91439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93358,22 +91453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41686] = 6, + [40769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(4073), 1, aux_sym_concatenation_token1, - ACTIONS(4269), 1, + ACTIONS(4076), 1, sym__concat, - STATE(1037), 1, + STATE(1018), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1271), 3, sym_file_descriptor, sym__brace_start, - ACTIONS(1258), 38, + ts_builtin_sym_end, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93384,8 +91479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93410,16 +91503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41743] = 3, + [40826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1352), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ts_builtin_sym_end, + ACTIONS(1350), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93428,11 +91524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93458,16 +91551,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41794] = 3, + [40877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(4064), 1, + sym__special_character, + STATE(1111), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ACTIONS(3741), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93476,7 +91574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93492,7 +91589,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [40932] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + sym_variable_name, + STATE(4083), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(4079), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3119), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93508,16 +91658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41845] = 3, + [40995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 5, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 38, + ACTIONS(1330), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93528,6 +91676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93556,16 +91706,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41896] = 3, + [41046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(4084), 1, + aux_sym_concatenation_token1, + ACTIONS(4087), 1, sym__concat, - sym_variable_name, + STATE(1023), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 38, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93576,6 +91729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93587,7 +91742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93601,17 +91755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [41947] = 3, + [41103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1342), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93652,16 +91805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [41998] = 3, + [41154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 38, + ACTIONS(1358), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93670,6 +91822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93700,69 +91853,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42049] = 9, + [41205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1294), 39, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93771,6 +91869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93802,14 +91901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42163] = 3, + [41256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1272), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93818,7 +91917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93848,16 +91946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42214] = 3, + [41307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93898,16 +91997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42265] = 3, + [41358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 5, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93918,6 +92016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93943,21 +92043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42316] = 5, + [41409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(1314), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1352), 38, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93966,6 +92061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93981,7 +92077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93993,17 +92091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42371] = 3, + [41460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1356), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1298), 40, + ts_builtin_sym_end, + ACTIONS(1354), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94014,8 +92113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94044,16 +92141,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42422] = 3, + [41511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 38, + ACTIONS(1354), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94062,6 +92158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94092,15 +92189,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42473] = 3, + [41562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, + ACTIONS(1358), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94109,6 +92205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94140,16 +92237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42524] = 3, + [41613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94160,6 +92256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94185,113 +92283,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42575] = 3, - ACTIONS(3), 1, + [41664] = 25, + ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(365), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(383), 1, sym_test_operator, - [42626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(1330), 40, + ACTIONS(4090), 1, + sym__special_character, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4094), 1, + sym__regex_no_space, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1965), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(367), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42677] = 3, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2018), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1648), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1310), 40, + ts_builtin_sym_end, + ACTIONS(1330), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94302,8 +92375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94332,15 +92403,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42728] = 3, + [41810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, + ACTIONS(4096), 1, + aux_sym_concatenation_token1, + ACTIONS(4098), 1, sym__concat, - sym_variable_name, + STATE(1018), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1314), 39, + ts_builtin_sym_end, + ACTIONS(1282), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94351,8 +92427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94364,7 +92438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94378,30 +92451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42779] = 3, + [41867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(4071), 1, + sym__special_character, + STATE(1149), 1, + aux_sym__literal_repeat1, + ACTIONS(182), 4, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1322), 40, + ts_builtin_sym_end, + ACTIONS(149), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94412,9 +92490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94428,22 +92504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [42830] = 5, + [41922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 4, + ACTIONS(1314), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3663), 37, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94452,8 +92522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94464,7 +92535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94476,18 +92549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42885] = 3, + [41973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 38, + ACTIONS(1350), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94496,6 +92569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94526,32 +92600,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42936] = 5, + [42024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, + ACTIONS(1318), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 37, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94562,7 +92631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94574,16 +92645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [42991] = 3, + [42075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, + ACTIONS(4096), 1, + aux_sym_concatenation_token1, + ACTIONS(4100), 1, sym__concat, + STATE(1037), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3860), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1346), 40, + ts_builtin_sym_end, + ACTIONS(3858), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94592,11 +92670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94608,7 +92683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94622,18 +92696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43042] = 3, + [42132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 38, + ACTIONS(1288), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94642,6 +92716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94672,19 +92747,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43093] = 6, + [42183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4102), 1, aux_sym_concatenation_token1, - ACTIONS(4287), 1, + ACTIONS(4104), 1, sym__concat, - STATE(1037), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1264), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1246), 38, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94693,10 +92769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94723,16 +92798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43150] = 3, + [42240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4106), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94741,6 +92820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94754,7 +92834,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [42297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, aux_sym_concatenation_token1, + ACTIONS(4108), 1, + sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(1282), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94768,19 +92898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43201] = 3, + [42354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 38, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94789,6 +92917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94819,19 +92948,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43252] = 6, + [42405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4110), 1, aux_sym_concatenation_token1, - ACTIONS(4289), 1, + ACTIONS(4113), 1, sym__concat, - STATE(1037), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1271), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1252), 38, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94840,10 +92969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94868,20 +92996,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43309] = 5, + [42462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 1, - sym__special_character, - STATE(1068), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, + sym__concat, + STATE(1064), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3854), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1352), 38, + ACTIONS(3850), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94890,11 +93020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94907,6 +93035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94918,18 +93047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43364] = 3, + [42519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(3655), 3, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 40, + ACTIONS(3653), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94941,6 +93072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94951,7 +93083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94965,18 +93096,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43415] = 3, + [42570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, + ACTIONS(4096), 1, + aux_sym_concatenation_token1, + ACTIONS(4100), 1, sym__concat, - sym_variable_name, + STATE(1054), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3854), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1310), 39, + ts_builtin_sym_end, + ACTIONS(3850), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94987,8 +93122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95000,7 +93133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95014,16 +93146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43466] = 3, + [42627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 40, + ACTIONS(1346), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95064,21 +93197,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43517] = 6, + [42678] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + ACTIONS(4122), 1, + sym__regex_no_space, + STATE(1640), 1, + sym__expression, + STATE(1684), 1, + aux_sym__literal_repeat1, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4096), 1, aux_sym_concatenation_token1, - ACTIONS(4296), 1, + ACTIONS(4124), 1, sym__concat, - STATE(1147), 1, + STATE(1018), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3837), 36, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95113,23 +93315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43574] = 6, + [42830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95138,6 +93335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95151,6 +93349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95164,23 +93363,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43631] = 6, + [42881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, + ACTIONS(1302), 4, + sym_file_descriptor, sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, + sym_variable_name, + sym__brace_start, + ACTIONS(1300), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [42932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3841), 36, + ACTIONS(1358), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95202,6 +93445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95215,16 +93459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43688] = 3, + [42983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, + ACTIONS(4047), 1, + aux_sym_concatenation_token1, + ACTIONS(4049), 1, sym__concat, + STATE(1010), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1280), 40, + ACTIONS(3878), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95248,7 +93498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95262,19 +93511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43739] = 3, + [43040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1280), 38, + ACTIONS(1346), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95313,14 +93561,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43790] = 3, + [43091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1326), 40, + ACTIONS(1288), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95361,20 +93609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43841] = 6, + [43142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(4300), 1, + ACTIONS(4126), 1, sym__concat, - STATE(1101), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1284), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, + ACTIONS(1282), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95383,6 +93630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95412,19 +93660,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [43898] = 5, + [43199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 4, + ACTIONS(1264), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3673), 37, + ACTIONS(1262), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -95436,6 +93679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95449,6 +93694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95462,20 +93708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [43953] = 6, + [43250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4300), 1, - sym__concat, - STATE(1101), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 3, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4032), 37, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95484,6 +93725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95497,6 +93739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95513,19 +93756,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44010] = 6, + [43301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(4302), 1, + ACTIONS(4128), 1, sym__concat, - STATE(1064), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1278), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1242), 38, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95534,10 +93777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95562,17 +93804,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44067] = 3, + [43358] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + sym__special_character, + ACTIONS(1223), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4122), 1, + sym__regex_no_space, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1640), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1217), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [43453] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(143), 1, + sym_word, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_BANG, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1119), 1, + sym_test_operator, + ACTIONS(4122), 1, + sym__regex_no_space, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1640), 1, + sym__expression, + STATE(1653), 1, + aux_sym__literal_repeat1, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1523), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [43548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, + ACTIONS(4132), 1, + aux_sym_concatenation_token1, + ACTIONS(4135), 1, sym__concat, + STATE(1067), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1318), 39, + ts_builtin_sym_end, + ACTIONS(1266), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95583,8 +93972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95596,7 +93983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95612,14 +93998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44118] = 3, + [43605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(4138), 1, sym__concat, + STATE(902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 40, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95630,8 +94022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95643,7 +94033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95660,16 +94049,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44169] = 3, + [43662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95678,8 +94065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95705,18 +94095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44220] = 3, + [43713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(4140), 1, + sym__special_character, + STATE(1000), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1326), 39, + ACTIONS(3741), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95725,6 +94117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -95740,9 +94133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95756,14 +94147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44271] = 3, + [43768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, sym__concat, + STATE(1064), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1302), 40, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95772,10 +94168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95787,7 +94182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95804,15 +94198,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44322] = 3, + [43825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(1338), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95821,10 +94215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95850,17 +94243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44373] = 3, + [43876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(4144), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(4142), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95869,6 +94262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -95884,7 +94278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95898,16 +94291,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44424] = 3, + [43927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 3, + ACTIONS(4146), 1, + sym__special_character, + STATE(1074), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, sym_file_descriptor, - sym__concat, sym__brace_start, - ACTIONS(1314), 40, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95916,6 +94313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -95931,9 +94329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95948,77 +94344,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44475] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_variable_name, - ACTIONS(4306), 1, - anon_sym_LF, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - STATE(4367), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4304), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44544] = 6, + [43982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4300), 1, + ACTIONS(3973), 1, sym__concat, - STATE(1102), 1, + STATE(1068), 1, aux_sym_concatenation_repeat1, - ACTIONS(4038), 3, + ACTIONS(1264), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4036), 37, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96056,15 +94395,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44601] = 3, + [44039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 39, + ts_builtin_sym_end, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96075,8 +94415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96102,17 +94440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44652] = 3, + [44090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96121,10 +94460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96150,16 +94488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44703] = 3, + [44141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, + ACTIONS(4058), 1, + aux_sym_concatenation_token1, + ACTIONS(4060), 1, sym__concat, + STATE(1146), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 4, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 40, + ts_builtin_sym_end, + ACTIONS(3741), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96168,11 +94514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96184,7 +94527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96200,16 +94542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [44754] = 3, + [44198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, + ACTIONS(4151), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 38, + ACTIONS(4149), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96218,8 +94558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96231,7 +94574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96248,21 +94590,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44805] = 5, + [44249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, + ACTIONS(1298), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(145), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -96273,7 +94611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96284,7 +94621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96296,16 +94635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44860] = 3, + [44300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 40, + ts_builtin_sym_end, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96316,8 +94658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96346,16 +94686,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44911] = 3, + [44351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3860), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 38, + ACTIONS(3858), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96364,6 +94707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96377,7 +94721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96394,14 +94737,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [44962] = 3, + [44408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1338), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96410,10 +94754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96442,15 +94785,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45013] = 3, + [44459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1298), 39, + ACTIONS(1334), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96459,10 +94802,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96488,22 +94830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45064] = 6, + [44510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4102), 1, aux_sym_concatenation_token1, - ACTIONS(4312), 1, + ACTIONS(4104), 1, sym__concat, - STATE(1110), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(3743), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 37, + ACTIONS(3741), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96512,6 +94855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96538,23 +94882,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45121] = 6, + [44567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4314), 1, - sym__concat, - STATE(1110), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(3172), 1, + sym__brace_start, + ACTIONS(3254), 1, sym_file_descriptor, + ACTIONS(4081), 1, + sym_variable_name, + STATE(4083), 1, + sym_subscript, + STATE(3119), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [44630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 37, + ACTIONS(1358), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96565,6 +94956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96576,6 +94969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96592,17 +94986,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45178] = 5, + [44681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - sym__special_character, - STATE(1149), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 2, + ACTIONS(4153), 1, + aux_sym_concatenation_token1, + ACTIONS(4156), 1, + sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4032), 39, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96611,11 +95008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96628,6 +95023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96639,25 +95035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45233] = 5, + [44738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 4, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, + STATE(1068), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(145), 37, + ACTIONS(3741), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -96667,7 +95062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96679,6 +95073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96690,16 +95085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45288] = 3, + [44795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1284), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96740,16 +95136,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45339] = 3, + [44846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, sym__concat, + STATE(994), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 38, + ACTIONS(3745), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96771,7 +95171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96788,14 +95187,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45390] = 3, + [44903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1318), 40, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96804,10 +95204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96836,14 +95235,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45441] = 3, + [44954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(4140), 1, + sym__special_character, + STATE(1000), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1318), 40, + ACTIONS(3886), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96868,9 +95271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96884,16 +95285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45492] = 3, + [45009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 38, + ACTIONS(3745), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96902,6 +95307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96915,7 +95321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96929,34 +95334,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45543] = 6, + [45066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4321), 1, - sym__concat, - STATE(1110), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(4159), 1, + sym__special_character, + STATE(1012), 1, + aux_sym__literal_repeat1, + ACTIONS(182), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, + ACTIONS(149), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96968,7 +95373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -96980,21 +95384,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45600] = 3, + [45121] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1121), 1, + sym_word, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + sym_test_operator, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4163), 1, + sym__regex_no_space, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1862), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1795), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(3542), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 38, + ACTIONS(3540), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -97003,7 +95475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97014,7 +95489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97028,17 +95502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45651] = 3, + [45267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1326), 40, + ACTIONS(1338), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97079,15 +95552,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45702] = 3, + [45318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1272), 39, + ACTIONS(1338), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97096,6 +95568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -97127,15 +95600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [45753] = 3, + [45369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, + ACTIONS(4096), 1, + aux_sym_concatenation_token1, + ACTIONS(4100), 1, sym__concat, - sym_variable_name, + STATE(1054), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1334), 39, + ts_builtin_sym_end, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97146,8 +95624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97159,7 +95635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97173,17 +95648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45804] = 3, + [45426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1330), 39, + ts_builtin_sym_end, + ACTIONS(1338), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97194,8 +95671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97221,18 +95696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45855] = 3, + [45477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 5, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 38, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97243,6 +95717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97271,16 +95747,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45906] = 3, + [45528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 38, + ACTIONS(1288), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97291,6 +95766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97316,17 +95793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [45957] = 3, + [45579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 40, + ts_builtin_sym_end, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97337,8 +95815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97367,15 +95843,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46008] = 3, + [45630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1322), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97413,18 +95888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46059] = 3, + [45681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1322), 38, + ACTIONS(1288), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97463,14 +95939,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46110] = 3, + [45732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 40, + ACTIONS(1330), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97508,23 +95985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46161] = 6, + [45783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4058), 1, aux_sym_concatenation_token1, - ACTIONS(4326), 1, + ACTIONS(4060), 1, sym__concat, - STATE(1127), 1, + STATE(1132), 1, aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, + ACTIONS(3882), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3985), 37, + ts_builtin_sym_end, + ACTIONS(3878), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97533,7 +96010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97562,14 +96038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46218] = 3, + [45840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 40, + ts_builtin_sym_end, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97580,8 +96058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97610,71 +96086,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46269] = 6, + [45891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, + ACTIONS(1302), 3, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46326] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1242), 37, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97683,9 +96102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97697,57 +96117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, aux_sym_concatenation_token1, - ACTIONS(4328), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97761,74 +96131,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46440] = 6, + [45942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4330), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4165), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 4, + STATE(1111), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 36, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97839,6 +96156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97851,7 +96170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97863,23 +96181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46554] = 6, + [45997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1147), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 4, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3985), 36, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97901,6 +96215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97914,74 +96229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46611] = 5, + [46048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4159), 1, sym__special_character, - STATE(1068), 1, + STATE(1012), 1, aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(3651), 3, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4337), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1258), 37, + ACTIONS(3649), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -97992,6 +96257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98003,7 +96269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98017,17 +96282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46723] = 3, + [46103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1322), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 40, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -98039,7 +96304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98050,6 +96314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98065,14 +96330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46774] = 3, + [46154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1276), 40, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98081,7 +96347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98113,14 +96378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46825] = 3, + [46205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, + ACTIONS(4047), 1, + aux_sym_concatenation_token1, + ACTIONS(4049), 1, sym__concat, + STATE(1013), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1280), 40, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98129,7 +96399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98145,7 +96414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98161,19 +96429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [46876] = 6, + [46262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1165), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4036), 38, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98182,9 +96445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98196,6 +96460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98212,19 +96477,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46933] = 6, + [46313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4032), 38, + ts_builtin_sym_end, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98233,7 +96495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98247,6 +96508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98263,14 +96525,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [46990] = 3, + [46364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3837), 40, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98279,7 +96542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98295,6 +96557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98308,17 +96571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47041] = 3, + [46415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1272), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98327,6 +96589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98356,35 +96619,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47092] = 5, - ACTIONS(3), 1, + [46466] = 25, + ACTIONS(63), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1191), 1, sym__special_character, - STATE(1186), 1, + ACTIONS(1195), 1, + sym_test_operator, + ACTIONS(4122), 1, + sym__regex_no_space, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1640), 1, + sym__expression, + STATE(1653), 1, aux_sym__literal_repeat1, - ACTIONS(3675), 3, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1193), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3673), 38, + ACTIONS(1350), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98395,7 +96723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98409,18 +96739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47147] = 5, + [46612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, - sym__special_character, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, STATE(1068), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, + aux_sym_concatenation_repeat1, + ACTIONS(3694), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3989), 38, + ACTIONS(3692), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98429,11 +96761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98446,6 +96775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98457,16 +96787,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47202] = 3, + [46669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 40, + ACTIONS(3886), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98475,10 +96812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98490,7 +96826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98504,17 +96839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47253] = 3, + [46726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1330), 40, + ACTIONS(3878), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98523,10 +96863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98538,7 +96877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98552,17 +96890,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47304] = 3, + [46783] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(4081), 1, + sym_variable_name, + ACTIONS(4170), 1, + anon_sym_LF, + ACTIONS(4172), 1, + anon_sym_LT_LT_LT, + STATE(4083), 1, + sym_subscript, + ACTIONS(3172), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4079), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4168), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(3119), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [46852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1322), 40, + ACTIONS(1288), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98603,15 +96997,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47355] = 3, + [46903] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4122), 1, + sym__regex_no_space, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1640), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(4058), 1, + aux_sym_concatenation_token1, + ACTIONS(4060), 1, sym__concat, + STATE(1146), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 4, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, + ts_builtin_sym_end, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98620,7 +97090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98634,7 +97103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98648,24 +97116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47406] = 6, + [47055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4344), 1, + ACTIONS(3973), 1, sym__concat, - STATE(1202), 1, + STATE(994), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, + ACTIONS(3688), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 36, + ACTIONS(3684), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98700,19 +97166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47463] = 3, + [47112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 3, + ACTIONS(1314), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3683), 40, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -98724,7 +97191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98735,6 +97201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98750,21 +97217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47514] = 6, + [47163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4058), 1, aux_sym_concatenation_token1, - ACTIONS(4346), 1, + ACTIONS(4174), 1, sym__concat, - STATE(1202), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, + ACTIONS(1284), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1252), 36, + ACTIONS(1282), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98801,15 +97268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [47571] = 3, + [47220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1280), 39, + ACTIONS(1334), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98847,33 +97313,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47622] = 5, + [47271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4071), 1, sym__special_character, STATE(1149), 1, aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(3651), 4, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 39, + ts_builtin_sym_end, + ACTIONS(3649), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98896,18 +97364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47677] = 3, + [47326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(4176), 1, + sym__special_character, + STATE(1074), 1, + aux_sym__literal_repeat1, + ACTIONS(3854), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1338), 39, + ACTIONS(3850), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98916,9 +97385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98930,9 +97401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -98947,15 +97416,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47728] = 3, + [47381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ts_builtin_sym_end, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98964,7 +97434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98995,14 +97464,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47779] = 3, + [47432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1271), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1298), 40, + ts_builtin_sym_end, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99011,11 +97482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99041,17 +97509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47830] = 3, + [47483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1276), 39, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99060,9 +97529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99088,35 +97558,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47881] = 5, + [47534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(1340), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + ACTIONS(1338), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [47585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3663), 38, + ACTIONS(1262), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99128,6 +97641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99139,17 +97653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47936] = 3, + [47636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1280), 39, + ts_builtin_sym_end, + ACTIONS(1334), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99158,7 +97674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99189,19 +97704,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [47987] = 6, + [47687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, + ACTIONS(1314), 4, + sym_file_descriptor, sym__concat, - STATE(1159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(1312), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [47738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1242), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99210,9 +97768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99224,6 +97784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99237,18 +97798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48044] = 3, + [47789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1322), 39, + ts_builtin_sym_end, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99257,7 +97818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99288,14 +97848,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48095] = 3, + [47840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1310), 40, + ACTIONS(1354), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99304,7 +97864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99334,21 +97893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48146] = 6, + [47891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, + ACTIONS(4058), 1, aux_sym_concatenation_token1, - ACTIONS(4351), 1, + ACTIONS(4178), 1, sym__concat, - STATE(1185), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1246), 38, + ts_builtin_sym_end, + ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99357,7 +97919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99384,17 +97945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48203] = 3, + [47948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 3, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1314), 40, + ACTIONS(1350), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99403,7 +97963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99433,17 +97992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48254] = 3, + [47999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1294), 39, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99452,9 +98011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99483,15 +98043,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48305] = 3, + [48050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(4180), 1, + sym__special_character, + STATE(1149), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 4, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1364), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [48105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1271), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1330), 39, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99500,9 +98109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99531,15 +98141,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48356] = 3, + [48156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(3747), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1334), 39, + ACTIONS(3745), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99548,9 +98157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99562,7 +98173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99579,15 +98189,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48407] = 3, + [48207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1272), 39, + ACTIONS(1296), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [48258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99596,9 +98253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99627,19 +98285,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48458] = 6, + [48309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, + ACTIONS(4058), 1, aux_sym_concatenation_token1, - ACTIONS(4353), 1, + ACTIONS(4060), 1, sym__concat, - STATE(1185), 1, + STATE(1132), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3747), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 38, + ts_builtin_sym_end, + ACTIONS(3745), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99648,7 +98308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99675,23 +98334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48515] = 6, + [48366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1271), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3837), 37, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99700,9 +98352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99714,6 +98368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99729,15 +98384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48572] = 3, + [48417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, + ACTIONS(1346), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99746,9 +98400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99777,15 +98432,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48623] = 3, + [48468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1342), 39, + ACTIONS(1334), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99794,9 +98448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99822,25 +98478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48674] = 6, + [48519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(4159), 1, + sym__special_character, + STATE(1012), 1, + aux_sym__literal_repeat1, + ACTIONS(3546), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3841), 37, + ACTIONS(3544), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -99851,6 +98505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99862,7 +98517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99876,15 +98530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48731] = 3, + [48574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(1354), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99893,9 +98546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99921,18 +98576,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48782] = 3, + [48625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(4183), 1, + aux_sym_concatenation_token1, + ACTIONS(4186), 1, sym__concat, - sym_variable_name, + STATE(1160), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1268), 39, + ts_builtin_sym_end, + ACTIONS(1266), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99941,7 +98600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99955,7 +98613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99969,18 +98626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48833] = 3, + [48681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1276), 39, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100020,15 +98675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [48884] = 3, + [48731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(4189), 1, + sym__special_character, + STATE(1162), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1326), 39, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100037,9 +98694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100051,9 +98709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100068,20 +98724,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48935] = 6, + [48785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, + ACTIONS(4192), 1, + sym__special_character, + STATE(1341), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3781), 37, + ts_builtin_sym_end, + ACTIONS(3741), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100104,7 +98759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100119,22 +98773,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [48992] = 6, + [48839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4355), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1264), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 37, + ts_builtin_sym_end, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100144,6 +98794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100167,23 +98818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49049] = 6, + [48889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, + ACTIONS(1310), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3777), 37, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100194,6 +98838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100205,6 +98851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100218,17 +98865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49106] = 3, + [48939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 40, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100237,11 +98884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100269,70 +98914,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49157] = 6, - ACTIONS(3), 1, + [48989] = 9, + ACTIONS(63), 1, sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4302), 1, - sym__concat, - STATE(1064), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4194), 1, + sym_variable_name, + STATE(4130), 1, + sym_subscript, + STATE(3177), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3231), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3252), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + ACTIONS(3254), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(3172), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + [49051] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, sym_test_operator, - [49214] = 6, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1640), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4302), 1, - sym__concat, - STATE(1067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3985), 38, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100341,10 +99052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100356,6 +99066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100371,15 +99082,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49271] = 3, + [49193] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4090), 1, + sym__special_character, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1999), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2018), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1648), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1318), 39, + ACTIONS(1350), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100388,9 +99166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100416,25 +99195,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49322] = 6, + [49335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4357), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(3655), 4, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1252), 37, + ts_builtin_sym_end, + ACTIONS(3653), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100444,6 +99218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100467,18 +99242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49379] = 3, + [49385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1298), 39, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100515,20 +99289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49430] = 3, + [49435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 3, + ACTIONS(1290), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3659), 40, + ACTIONS(1288), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100540,7 +99312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100551,6 +99322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100566,33 +99338,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49481] = 9, + [49485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, + ACTIONS(1340), 4, sym_file_descriptor, - ACTIONS(4274), 1, + sym__concat, sym_variable_name, - STATE(4367), 1, - sym_subscript, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 16, + sym__brace_start, + ACTIONS(1338), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100602,9 +99367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100620,19 +99385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49544] = 6, + [49535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - aux_sym_concatenation_token1, - ACTIONS(4362), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(4151), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 38, + ACTIONS(4149), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100641,9 +99401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100668,24 +99430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49601] = 5, + [49585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(1290), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1352), 38, + ACTIONS(1288), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100696,7 +99453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100707,7 +99463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -100721,15 +99479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49656] = 3, + [49635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100766,25 +99524,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49707] = 6, + [49685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(4154), 1, + ACTIONS(3682), 1, sym__concat, - STATE(1181), 1, + ACTIONS(4197), 1, + anon_sym_LPAREN, + STATE(1368), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1260), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3837), 37, + ACTIONS(1251), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100792,8 +99551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100802,7 +99561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -100817,23 +99575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49764] = 6, + [49743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3841), 37, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100842,6 +99594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -100855,6 +99608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100868,18 +99622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49821] = 3, + [49793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(4144), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, + ACTIONS(4142), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100888,6 +99640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -100903,7 +99656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100919,14 +99671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49872] = 3, + [49843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 40, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100935,11 +99688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100967,18 +99718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [49923] = 5, + [49893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(3841), 38, + ACTIONS(1334), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100987,10 +99735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101002,7 +99749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101014,21 +99763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [49978] = 5, + [49943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 3, + ACTIONS(1264), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3777), 38, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101053,6 +99797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101067,14 +99812,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50033] = 3, + [49993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(4199), 1, + sym__special_character, + STATE(1185), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4370), 40, + ACTIONS(1364), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101083,11 +99832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101100,7 +99847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101115,20 +99861,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50084] = 6, + [50047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1332), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1242), 37, + ACTIONS(1330), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101139,6 +99879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101150,6 +99892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101163,18 +99906,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50141] = 3, + [50097] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + sym__special_character, + ACTIONS(1223), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2044), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1217), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1310), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101211,18 +100021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50192] = 3, + [50239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(4202), 1, + sym__special_character, + STATE(1266), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1314), 39, + ACTIONS(3886), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101231,9 +100042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101245,9 +100058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101259,18 +100070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50243] = 3, + [50293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(3747), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1338), 39, + ACTIONS(3745), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101279,6 +100088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101294,7 +100104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101310,14 +100119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50294] = 3, + [50343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(1306), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4374), 40, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101326,11 +100135,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101342,6 +100149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101358,29 +100166,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50345] = 3, + [50393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 3, + ACTIONS(1332), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1225), 40, + ACTIONS(1330), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101391,6 +100197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101406,15 +100213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50396] = 3, + [50443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(4204), 1, + sym__special_character, + STATE(1235), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(3741), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101438,9 +100248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101454,21 +100262,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50447] = 6, + [50497] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4206), 1, + sym_word, + ACTIONS(4210), 1, + sym_test_operator, + STATE(1654), 1, + aux_sym__literal_repeat1, + STATE(2082), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4208), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1620), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1820), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1650), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, - aux_sym_concatenation_token1, - ACTIONS(4381), 1, - sym__concat, - STATE(1202), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1336), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 36, + ACTIONS(1334), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101477,6 +100347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101490,6 +100361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101503,17 +100375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50504] = 3, + [50641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1298), 38, + ACTIONS(1262), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101522,7 +100400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101536,7 +100413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101552,18 +100428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50554] = 5, + [50697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, + ACTIONS(1340), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3989), 37, + ACTIONS(1338), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101587,7 +100459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101601,16 +100475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50608] = 3, + [50747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1271), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101619,6 +100491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101646,18 +100519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50658] = 3, + [50797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 37, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101666,6 +100539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101695,15 +100569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50708] = 3, + [50847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1342), 38, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101742,15 +100616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50758] = 3, + [50897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1346), 38, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101789,14 +100663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [50808] = 3, + [50947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1280), 39, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101836,20 +100710,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50858] = 6, + [50997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(4192), 1, + sym__special_character, + STATE(1341), 1, + aux_sym__literal_repeat1, + ACTIONS(3694), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3837), 36, + ts_builtin_sym_end, + ACTIONS(3692), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101872,7 +100745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101884,22 +100756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50914] = 6, + [51051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1352), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3841), 36, + ts_builtin_sym_end, + ACTIONS(1350), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101921,6 +100789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101934,22 +100803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [50970] = 6, + [51101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1310), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, + ACTIONS(1340), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3985), 36, + ACTIONS(1338), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101958,6 +100822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101971,6 +100836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101984,22 +100850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51026] = 6, + [51151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, + ACTIONS(4204), 1, + sym__special_character, + STATE(1235), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 36, + ACTIONS(3886), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102010,6 +100875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102022,7 +100889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102036,14 +100902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51082] = 3, + [51205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 39, + ACTIONS(1346), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102080,18 +100947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51132] = 3, + [51255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1272), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102100,9 +100965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102130,69 +100996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51182] = 5, + [51305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(1360), 4, sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [51236] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4394), 1, sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1246), 36, + ACTIONS(1358), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102201,6 +101013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102214,6 +101027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102229,20 +101043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51292] = 6, + [51355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4396), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1356), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1252), 36, + ts_builtin_sym_end, + ACTIONS(1354), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102264,6 +101073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102277,21 +101087,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51348] = 6, + [51405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1242), 37, + ts_builtin_sym_end, + ACTIONS(1330), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102313,6 +101120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102329,14 +101137,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51404] = 3, + [51455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1276), 39, + ts_builtin_sym_end, + ACTIONS(1358), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102345,7 +101154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102376,15 +101184,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51454] = 3, + [51505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1268), 38, + ts_builtin_sym_end, + ACTIONS(1346), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102393,7 +101201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102421,16 +101228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51504] = 3, + [51555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(1302), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3837), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102439,10 +101247,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102454,6 +101261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102470,14 +101278,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51554] = 3, + [51605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1298), 39, + ts_builtin_sym_end, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102486,7 +101295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102517,14 +101325,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51604] = 3, + [51655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1302), 39, + ts_builtin_sym_end, + ACTIONS(1338), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102533,7 +101342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102564,15 +101372,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51654] = 3, + [51705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1334), 38, + ACTIONS(1354), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102611,17 +101419,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [51704] = 5, - ACTIONS(3), 1, + [51755] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, sym__special_character, - STATE(1350), 1, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, aux_sym__literal_repeat1, - ACTIONS(4034), 2, + STATE(2025), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4032), 38, + ts_builtin_sym_end, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102632,8 +101506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102645,7 +101517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102660,15 +101534,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51758] = 3, + [51897] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1994), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1330), 38, + ts_builtin_sym_end, + ACTIONS(1288), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102677,7 +101619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102705,17 +101646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51808] = 3, + [52039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1268), 38, + ts_builtin_sym_end, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102724,7 +101666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102752,16 +101693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51858] = 3, + [52089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1310), 39, + ts_builtin_sym_end, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102770,7 +101713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102801,14 +101743,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51908] = 3, + [52139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 3, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1314), 39, + ts_builtin_sym_end, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102817,7 +101760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102848,19 +101790,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [51958] = 6, + [52189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4400), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3747), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 37, + ACTIONS(3745), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102871,6 +101808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102898,14 +101837,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52014] = 3, + [52239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1258), 39, + ts_builtin_sym_end, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102914,7 +101854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102945,16 +101884,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52064] = 3, + [52289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 37, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102963,6 +101900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102990,18 +101928,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [52339] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, sym_test_operator, - [52114] = 3, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2012), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 5, + ACTIONS(1271), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 37, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103012,6 +102017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103039,14 +102046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52164] = 3, + [52481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1338), 39, + ACTIONS(1334), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103055,9 +102062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103083,22 +102091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52214] = 6, + [52531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4032), 37, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103107,6 +102109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103120,6 +102123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103136,15 +102140,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52270] = 3, + [52581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1322), 38, + ts_builtin_sym_end, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103153,7 +102157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103181,18 +102184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52320] = 3, + [52631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 5, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 37, + ACTIONS(1350), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103201,6 +102204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103230,115 +102234,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52370] = 6, - ACTIONS(3), 1, + [52681] = 11, + ACTIONS(63), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4402), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3168), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4194), 1, + sym_variable_name, + ACTIONS(4212), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + ACTIONS(4214), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + STATE(4130), 1, + sym_subscript, + STATE(3177), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3409), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3231), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [52426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(3172), 19, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3841), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [52480] = 3, + [52747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, + ACTIONS(4216), 1, + sym__special_character, + STATE(1235), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 37, + ACTIONS(1364), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103349,6 +102311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103360,9 +102324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103376,66 +102338,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52530] = 6, - ACTIONS(3), 1, + [52801] = 25, + ACTIONS(63), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(361), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(365), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4219), 1, sym_word, + ACTIONS(4223), 1, sym_test_operator, - [52586] = 3, + STATE(1652), 1, + aux_sym__literal_repeat1, + STATE(2082), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4221), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1620), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1810), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1601), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1268), 37, + ACTIONS(1334), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103471,18 +102451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52636] = 3, + [52945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, + STATE(1338), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3854), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, + ACTIONS(3850), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103504,7 +102488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103518,18 +102501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52686] = 3, + [53001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, + ACTIONS(1352), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1342), 37, + ACTIONS(1350), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103567,14 +102551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52736] = 3, + [53051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1318), 39, + ACTIONS(1288), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103614,16 +102598,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [52786] = 3, + [53101] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1988), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(4225), 1, + aux_sym_concatenation_token1, + ACTIONS(4227), 1, sym__concat, - sym_variable_name, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 3, + sym_file_descriptor, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1276), 37, + ACTIONS(3878), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103645,7 +102701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103661,17 +102716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52836] = 5, + [53249] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, - sym__special_character, - STATE(1248), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(4225), 1, + aux_sym_concatenation_token1, + ACTIONS(4227), 1, + sym__concat, + STATE(1297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, sym__brace_start, - ACTIONS(1352), 38, + ts_builtin_sym_end, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103680,11 +102738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103697,6 +102752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103710,15 +102766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [52890] = 3, + [53305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1326), 38, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103755,17 +102810,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [53355] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, sym_test_operator, - [52940] = 3, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1954), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 3, + ACTIONS(4231), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1326), 39, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(4229), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103773,9 +102915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103786,32 +102930,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + [53501] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1957), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52990] = 3, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1268), 39, + ts_builtin_sym_end, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103820,7 +103015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103851,14 +103045,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53040] = 3, + [53643] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4233), 1, + sym_word, + ACTIONS(4237), 1, + sym_test_operator, + STATE(1579), 1, + aux_sym__literal_repeat1, + STATE(2082), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4235), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1620), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1931), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1570), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103867,9 +103130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103895,17 +103159,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53090] = 3, + [53787] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(1942), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(4151), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, + ACTIONS(4149), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103914,9 +103245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103928,7 +103260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103945,17 +103276,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53140] = 5, + [53929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 1, - sym__special_character, - STATE(1248), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, + ACTIONS(4144), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3989), 38, + ACTIONS(4142), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103964,7 +103292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -103981,6 +103308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -103992,29 +103320,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53194] = 3, + [53979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(1264), 3, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4370), 39, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104038,23 +103368,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53244] = 6, + [54029] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1998), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(4239), 1, + sym__special_character, + STATE(1162), 1, + aux_sym__literal_repeat1, + ACTIONS(3854), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1242), 36, + ACTIONS(3850), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104065,6 +103459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104077,7 +103473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104089,17 +103484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53300] = 3, + [54175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1318), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104108,9 +103503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104138,14 +103534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53350] = 3, + [54225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(1322), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4374), 39, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104154,10 +103550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104169,6 +103564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104185,14 +103581,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53400] = 3, + [54275] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4090), 1, + sym__special_character, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1965), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2018), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1648), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1342), 39, + ACTIONS(1330), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104232,14 +103696,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53450] = 3, + [54417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1356), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, + ts_builtin_sym_end, + ACTIONS(1354), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104248,7 +103714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104276,17 +103741,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53500] = 3, + [54467] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1969), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(1332), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4374), 39, + ts_builtin_sym_end, + ACTIONS(1330), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104295,11 +103829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104311,6 +103842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104326,14 +103858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53550] = 3, + [54609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(1360), 5, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(4370), 39, + ts_builtin_sym_end, + ACTIONS(1358), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104342,11 +103876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104358,6 +103889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104373,14 +103905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53600] = 3, + [54659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1272), 39, + ts_builtin_sym_end, + ACTIONS(1346), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104389,7 +103923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104417,17 +103950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53650] = 3, + [54709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(4241), 1, + sym__special_character, + STATE(1266), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, sym_file_descriptor, - sym__concat, sym__brace_start, - ACTIONS(1334), 39, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104436,9 +103971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104450,9 +103987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104464,17 +103999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53700] = 3, + [54763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 3, + ACTIONS(1260), 4, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3659), 39, + ts_builtin_sym_end, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -104484,7 +104019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104514,14 +104048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53750] = 3, + [54813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1330), 39, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104561,14 +104095,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53800] = 3, + [54863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1322), 39, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104608,18 +104142,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53850] = 5, - ACTIONS(3), 1, + [54913] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2010), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55005] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym__special_character, - STATE(1268), 1, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, aux_sym__literal_repeat1, - ACTIONS(1357), 3, + STATE(1945), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(1352), 37, + ts_builtin_sym_end, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104628,7 +104295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104642,7 +104308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104657,14 +104325,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [53904] = 3, + [55147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1322), 39, + ACTIONS(3741), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104675,8 +104349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104688,7 +104360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104704,20 +104375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [53954] = 6, + [55203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4102), 1, aux_sym_concatenation_token1, - ACTIONS(4326), 1, + ACTIONS(4104), 1, sym__concat, - STATE(1217), 1, + STATE(1295), 1, aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, + ACTIONS(3747), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3989), 36, + ACTIONS(3745), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104754,14 +104425,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54010] = 3, + [55259] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4244), 1, + sym_word, + ACTIONS(4248), 1, + sym_test_operator, + STATE(1624), 1, + aux_sym__literal_repeat1, + STATE(2082), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4246), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1620), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1840), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1668), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1330), 39, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104801,16 +104541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54060] = 3, + [55403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 5, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 37, + ACTIONS(1346), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104819,6 +104557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -104846,16 +104585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54110] = 3, + [55453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1334), 39, + ACTIONS(1358), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104864,10 +104604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104893,15 +104632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54160] = 3, + [55503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1242), 40, + ts_builtin_sym_end, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -104910,11 +104652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -104926,6 +104665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104942,63 +104682,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54210] = 3, - ACTIONS(3), 1, + [55553] = 13, + ACTIONS(63), 1, sym_comment, - ACTIONS(1234), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(4194), 1, + sym_variable_name, + ACTIONS(4212), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(4252), 1, + anon_sym_LT_LT, + ACTIONS(4254), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4256), 1, + anon_sym_LT_LT_LT, + STATE(4130), 1, + sym_subscript, + ACTIONS(4250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(3177), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3109), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3166), 8, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3172), 19, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [54260] = 3, + [55623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 37, + ACTIONS(1354), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105007,6 +104755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105034,16 +104783,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [55673] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, - [54310] = 3, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(2002), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1272), 39, + ACTIONS(1350), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105052,10 +104870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105081,30 +104898,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [55815] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(143), 1, + sym_word, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_BANG, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1119), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1936), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1523), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55907] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(143), 1, + sym_word, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_BANG, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1119), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1937), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1523), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55999] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(143), 1, sym_word, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_BANG, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1119), 1, sym_test_operator, - [54360] = 3, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1640), 1, + sym__expression, + STATE(1653), 1, + aux_sym__literal_repeat1, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1523), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 3, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(3683), 39, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105130,14 +105155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54410] = 3, + [56147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, sym__concat, + STATE(1295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1258), 39, + ACTIONS(3878), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105148,8 +105179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105161,7 +105190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105177,15 +105205,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54460] = 3, + [56203] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(143), 1, + sym_word, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(156), 1, + anon_sym_BANG, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1119), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1814), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1523), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1314), 38, + ts_builtin_sym_end, + ACTIONS(1320), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105194,7 +105291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105224,19 +105320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54510] = 6, + [56345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1264), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1242), 37, + ACTIONS(1262), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105245,9 +105335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105272,19 +105364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54566] = 3, + [56395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(3886), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -105295,7 +105392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105321,33 +105417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54616] = 7, + [56451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(4258), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(4260), 1, sym__concat, - ACTIONS(4416), 1, - anon_sym_LPAREN, - STATE(1393), 1, + STATE(1311), 1, aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(3882), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 35, + ACTIONS(3878), 37, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105356,6 +105450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105372,15 +105467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54674] = 3, + [56507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, + STATE(1338), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1302), 38, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105389,7 +105488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105403,7 +105501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105417,16 +105514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54724] = 3, + [56563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4262), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1346), 39, + ACTIONS(1282), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105437,8 +105541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105450,7 +105552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105466,14 +105567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54774] = 3, + [56619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4264), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1342), 39, + ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105484,8 +105591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105497,7 +105602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105513,20 +105617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54824] = 6, + [56675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4225), 1, aux_sym_concatenation_token1, - ACTIONS(4326), 1, + ACTIONS(4266), 1, sym__concat, - STATE(1218), 1, + STATE(1160), 1, aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3985), 36, + ts_builtin_sym_end, + ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105563,15 +105667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54880] = 3, + [56731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, + ACTIONS(4225), 1, + aux_sym_concatenation_token1, + ACTIONS(4268), 1, sym__concat, - sym_variable_name, + STATE(1160), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, sym__brace_start, - ACTIONS(1294), 38, + ts_builtin_sym_end, + ACTIONS(1282), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105580,7 +105689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105594,7 +105702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105610,18 +105717,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [54930] = 5, - ACTIONS(3), 1, + [56787] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4090), 1, + sym__special_character, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1948), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2018), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1648), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56879] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1191), 1, + sym__special_character, + ACTIONS(1195), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1976), 1, + sym__expression, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1193), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56971] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym__special_character, - STATE(1268), 1, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, aux_sym__literal_repeat1, - ACTIONS(3779), 3, + STATE(1979), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + aux_sym_concatenation_token1, + ACTIONS(4227), 1, + sym__concat, + STATE(1297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3777), 37, + ts_builtin_sym_end, + ACTIONS(1262), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105630,7 +105943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105645,6 +105957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105656,17 +105969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [54984] = 3, + [57119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(1346), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105706,65 +106018,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55034] = 6, - ACTIONS(3), 1, + [57169] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 14, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2024), 1, + sym__expression, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57261] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(1985), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57353] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1992), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57445] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1191), 1, + sym__special_character, + ACTIONS(1195), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1984), 1, + sym__expression, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1193), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57537] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, sym_test_operator, - [55090] = 3, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2005), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1280), 38, + ts_builtin_sym_end, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105773,7 +106376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105803,15 +106405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55140] = 3, + [57679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4270), 1, sym__concat, - sym_variable_name, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1276), 38, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105834,7 +106440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105850,14 +106455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55190] = 3, + [57735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4272), 1, sym__concat, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1268), 39, + ACTIONS(1282), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105866,10 +106476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -105881,7 +106490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105897,19 +106505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55240] = 5, + [57791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 4, + ACTIONS(4274), 1, + aux_sym_concatenation_token1, + ACTIONS(4277), 1, + sym__concat, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 36, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105918,6 +106526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105932,6 +106541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -105943,65 +106553,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55294] = 3, - ACTIONS(3), 1, + [57847] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + sym__special_character, + ACTIONS(1223), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2030), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1217), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57939] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + sym__special_character, + ACTIONS(1223), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2034), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1221), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1217), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58031] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1121), 1, sym_word, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(1139), 1, sym_test_operator, - [55344] = 3, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1907), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1795), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1338), 38, + ACTIONS(1358), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106010,9 +106775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106040,15 +106806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55394] = 3, + [58173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, + STATE(1335), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3860), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1310), 38, + ACTIONS(3858), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106057,7 +106827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106071,7 +106840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106085,16 +106853,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55444] = 3, + [58229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3837), 39, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106103,11 +106877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106134,16 +106906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55494] = 3, + [58285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1334), 37, + ACTIONS(1338), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106181,62 +106953,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55544] = 3, - ACTIONS(3), 1, + [58335] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, sym__brace_start, - ACTIONS(1326), 39, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1191), 1, + sym__special_character, + ACTIONS(1195), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1640), 1, + sym__expression, + STATE(1653), 1, + aux_sym__literal_repeat1, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1193), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58427] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4090), 1, + sym__special_character, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1951), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2018), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1648), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58519] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1121), 1, sym_word, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(1139), 1, sym_test_operator, - [55594] = 3, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1827), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1795), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, + ts_builtin_sym_end, + ACTIONS(1316), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106245,7 +107175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106275,20 +107204,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55644] = 6, + [58661] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2020), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4430), 1, - sym__concat, - STATE(1311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 36, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106299,6 +107290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106310,6 +107303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106325,15 +107319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [55700] = 3, + [58803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 38, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106344,6 +107337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106369,40 +107364,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55750] = 3, + [58853] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2013), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 14, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106416,18 +107482,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55800] = 3, + [59001] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + ACTIONS(4288), 1, + sym_word, + ACTIONS(4292), 1, + sym_test_operator, + STATE(1598), 1, + aux_sym__literal_repeat1, + STATE(2082), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4290), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1620), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1855), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(4294), 1, + sym__special_character, + STATE(1185), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 38, + ACTIONS(3741), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106436,6 +107573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -106449,9 +107587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106466,15 +107602,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55850] = 3, + [59149] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(1953), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1272), 38, + ACTIONS(1288), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106510,18 +107715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55900] = 3, + [59291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 38, + ACTIONS(1354), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106532,6 +107735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106557,18 +107762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [55950] = 3, + [59341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 38, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106579,6 +107782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106604,23 +107809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56000] = 6, + [59391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(4432), 1, + ACTIONS(4296), 1, sym__concat, - STATE(1311), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1284), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 36, + ACTIONS(1282), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106655,33 +107858,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [59447] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_test_operator, - [56056] = 6, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(1972), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 1, - aux_sym_concatenation_token1, - ACTIONS(4437), 1, - sym__concat, - STATE(1311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(3542), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 36, + ACTIONS(3540), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106707,15 +107976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56112] = 3, + [59589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4298), 1, sym__concat, + STATE(1048), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 38, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106737,7 +108010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106754,15 +108026,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56162] = 3, + [59645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1264), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 38, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106771,8 +108042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106784,7 +108058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106798,64 +108071,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56212] = 3, - ACTIONS(3), 1, + [59695] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(361), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(365), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1121), 1, sym_word, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(1139), 1, sym_test_operator, - [56262] = 3, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1824), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1795), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(4300), 1, + sym__special_character, + STATE(1341), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1318), 39, + ts_builtin_sym_end, + ACTIONS(1364), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106866,8 +108164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106879,9 +108175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106893,17 +108187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56312] = 3, + [59841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1314), 38, + ACTIONS(1296), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106939,18 +108235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56362] = 3, + [59891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1310), 38, + ACTIONS(1312), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106986,18 +108282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56412] = 3, + [59941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1276), 38, + ACTIONS(1312), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107033,18 +108329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56462] = 3, + [59991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1268), 38, + ACTIONS(1292), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107080,18 +108376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56512] = 3, + [60041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1271), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1268), 38, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107127,19 +108423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56562] = 3, + [60091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 5, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1330), 37, + ACTIONS(1334), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107177,172 +108472,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [56612] = 11, + [60141] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4444), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3477), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3248), 19, - sym_file_descriptor, + ACTIONS(340), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1167), 1, sym_test_operator, - [56678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 38, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1640), 1, + sym__expression, + STATE(1684), 1, + aux_sym__literal_repeat1, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60233] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(306), 1, + sym_word, + ACTIONS(310), 1, + anon_sym_LPAREN, + ACTIONS(312), 1, + anon_sym_BANG, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym__special_character, + ACTIONS(1205), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1980), 1, + sym__expression, + ACTIONS(196), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56728] = 9, + ACTIONS(1203), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(198), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1947), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60325] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4444), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 5, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3304), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3306), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 13, + ACTIONS(340), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + sym__special_character, + ACTIONS(1223), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(1640), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [56790] = 3, + ACTIONS(1215), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1217), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1767), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(3542), 4, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1258), 38, + ACTIONS(3540), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -107352,6 +108697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107362,7 +108708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107376,29 +108721,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56840] = 3, + [60467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1260), 3, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 38, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107409,7 +108755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107423,18 +108768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56890] = 3, + [60517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, + sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1298), 38, + ACTIONS(1308), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107470,123 +108815,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [56940] = 13, + [60567] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4444), 1, - sym_variable_name, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - STATE(4379), 1, - sym_subscript, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3248), 19, - sym_file_descriptor, + ACTIONS(340), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1177), 1, + sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, sym_test_operator, - [57010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 39, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2001), 1, + sym__expression, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60659] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(160), 1, anon_sym_DOLLAR, + ACTIONS(166), 1, + aux_sym_number_token1, + ACTIONS(168), 1, + aux_sym_number_token2, + ACTIONS(172), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(186), 1, + sym__brace_start, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1191), 1, sym__special_character, + ACTIONS(1195), 1, + sym_test_operator, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + STATE(1653), 1, + aux_sym__literal_repeat1, + STATE(1968), 1, + sym__expression, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1103), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1193), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60751] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1143), 1, + sym_word, + ACTIONS(1147), 1, + anon_sym_BANG, + ACTIONS(1157), 1, anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_test_operator, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(4120), 1, + sym__special_character, + STATE(1684), 1, + aux_sym__literal_repeat1, + STATE(1981), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1159), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1151), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1665), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60843] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1121), 1, + sym_word, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_BANG, + ACTIONS(1139), 1, + sym_test_operator, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(4161), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1862), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1129), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1131), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1795), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1593), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60935] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(154), 1, + anon_sym_LPAREN, + ACTIONS(316), 1, + anon_sym_DOLLAR, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1177), 1, sym_word, + ACTIONS(1179), 1, + anon_sym_BANG, + ACTIONS(1185), 1, + sym__special_character, + ACTIONS(1189), 1, sym_test_operator, - [57060] = 3, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + STATE(1602), 1, + aux_sym__literal_repeat1, + STATE(2000), 1, + sym__expression, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1181), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1187), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1183), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1620), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(4294), 1, + sym__special_character, + STATE(1185), 1, + aux_sym__literal_repeat1, + ACTIONS(3694), 3, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 37, + ACTIONS(3692), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107595,6 +109177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -107608,9 +109191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107622,28 +109203,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57110] = 3, + [61081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(3655), 3, sym_file_descriptor, - sym__concat, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 38, + ACTIONS(3653), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107654,7 +109238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107668,19 +109251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57160] = 3, + [61131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1310), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107718,16 +109300,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57210] = 3, + [61181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(4231), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 38, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(4229), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107737,6 +109336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107747,38 +109348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [57260] = 6, + [61234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(4303), 1, + sym__special_character, + STATE(1366), 1, + aux_sym__literal_repeat1, + ACTIONS(3854), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, + ACTIONS(3850), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107787,6 +109367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -107801,7 +109382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107813,16 +109393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57316] = 3, + [61287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1264), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 39, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107846,7 +109427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107862,19 +109442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57366] = 5, + [61336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 4, + ACTIONS(3747), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3777), 36, + ACTIONS(3745), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107897,6 +109473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107911,19 +109488,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57420] = 6, + [61385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, + ACTIONS(4305), 1, + sym__special_character, + STATE(1366), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(3989), 37, + ACTIONS(1364), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107947,7 +109522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107959,16 +109533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57476] = 3, + [61438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(3747), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1294), 39, + ACTIONS(3745), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -107992,7 +109567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108008,31 +109582,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57526] = 6, + [61487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(4414), 1, + ACTIONS(4308), 1, sym__concat, - STATE(1354), 1, + STATE(799), 1, aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, + ACTIONS(1284), 3, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(3985), 37, + ACTIONS(1282), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108041,7 +109615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -108058,18 +109631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57582] = 3, + [61542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(4310), 1, sym__concat, - sym_variable_name, + STATE(799), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 37, + ACTIONS(1276), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -108077,8 +109654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108087,9 +109664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108105,28 +109680,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57632] = 3, + [61597] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4312), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1271), 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_test_operator, + [61650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 3, + ACTIONS(1264), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(1225), 39, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108152,18 +109774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57682] = 3, + [61699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 4, + ACTIONS(4151), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3683), 38, + ACTIONS(4149), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -108172,8 +109792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108199,14 +109820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57732] = 3, + [61748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(4144), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1338), 39, + ACTIONS(4142), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108230,7 +109851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108246,16 +109866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57782] = 3, + [61797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 5, + ACTIONS(4315), 1, + sym__special_character, + STATE(1397), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 37, + ACTIONS(3886), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108266,6 +109887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108277,9 +109900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108293,18 +109914,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57832] = 5, - ACTIONS(3), 1, + [61850] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4455), 1, + STATE(1489), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1264), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + sym_test_operator, + [61903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1386), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1352), 37, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108315,8 +109985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108329,6 +109997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108342,14 +110011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57886] = 3, + [61958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, sym__concat, + STATE(1389), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 2, + sym_file_descriptor, sym__brace_start, - ACTIONS(1310), 39, + ACTIONS(3878), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108360,8 +110034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108373,7 +110045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108389,14 +110060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [57936] = 3, + [62013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(4151), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + ACTIONS(4149), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108405,11 +110077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108434,20 +110103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [57986] = 5, + [62062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4317), 1, sym__special_character, - STATE(1268), 1, + STATE(1379), 1, aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(1369), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3841), 37, + ACTIONS(1364), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108482,17 +110152,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58040] = 3, + [62115] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1378), 1, + anon_sym_LPAREN, + STATE(1504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1260), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [62170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1298), 39, + ts_builtin_sym_end, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108503,8 +110222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108532,17 +110249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58090] = 5, + [62219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 1, - sym__special_character, - STATE(1350), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1352), 38, + ts_builtin_sym_end, + ACTIONS(1334), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108553,8 +110268,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -108566,7 +110279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108578,41 +110293,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58144] = 3, + [62268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(4282), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4280), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108628,18 +110344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58194] = 3, + [62323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1271), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 38, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -108649,7 +110364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108660,6 +110374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108675,19 +110390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58244] = 6, + [62372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4461), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(4322), 1, + sym__special_character, + STATE(1434), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1246), 37, + ts_builtin_sym_end, + ACTIONS(3741), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108696,7 +110411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -108711,7 +110425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108725,19 +110438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58300] = 6, + [62425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, + ACTIONS(4258), 1, aux_sym_concatenation_token1, - ACTIONS(4463), 1, + ACTIONS(4324), 1, sym__concat, - STATE(1356), 1, + STATE(1312), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1278), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1252), 37, + ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108746,7 +110459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -108775,111 +110487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58356] = 3, + [62480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 5, + ACTIONS(1264), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4465), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(1262), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108919,61 +110533,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3659), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58562] = 3, + [62529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1280), 39, + ts_builtin_sym_end, + ACTIONS(1296), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -108984,8 +110552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109013,16 +110579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58612] = 3, + [62578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4326), 1, sym__concat, - sym_variable_name, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, + sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 37, + ACTIONS(1282), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109044,7 +110613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109060,19 +110628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58662] = 5, + [62633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1386), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 36, + ACTIONS(1262), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109095,6 +110663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109106,17 +110675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [58716] = 3, + [62688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1276), 39, + ts_builtin_sym_end, + ACTIONS(1338), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109127,8 +110696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109156,15 +110723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58766] = 3, + [62737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1276), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109202,15 +110769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58815] = 3, + [62786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1272), 37, + ACTIONS(1308), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109248,69 +110815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58864] = 6, + [62835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3682), 1, sym__concat, - STATE(1392), 1, + STATE(1368), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1260), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 35, + ACTIONS(1251), 35, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -109346,14 +110864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [58974] = 3, + [62890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1264), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1242), 38, + ts_builtin_sym_end, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109362,7 +110881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -109392,14 +110910,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59023] = 3, + [62939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(1294), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3837), 38, + ts_builtin_sym_end, + ACTIONS(1292), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109410,8 +110929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109423,6 +110940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109438,22 +110956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59072] = 6, + [62988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, + ACTIONS(4328), 1, + sym__special_character, + STATE(1397), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, - ACTIONS(3673), 35, + ACTIONS(1364), 37, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -109461,8 +110976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109471,9 +110988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109487,18 +111004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59127] = 5, + [63041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - sym__special_character, - STATE(1419), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, + ACTIONS(3747), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3841), 36, + ACTIONS(3745), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109522,6 +111035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109533,17 +111047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59180] = 3, + [63090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 4, + ACTIONS(1352), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4370), 37, + ACTIONS(1350), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109552,6 +111066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -109565,6 +111080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109578,20 +111094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59229] = 5, + [63139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, - sym__special_character, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(1290), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1352), 37, + ts_builtin_sym_end, + ACTIONS(1288), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109600,7 +111113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -109614,7 +111126,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109626,22 +111140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59282] = 5, + [63188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, + ACTIONS(1318), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1352), 35, + ACTIONS(1316), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109663,7 +111172,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109677,15 +111188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59335] = 3, + [63237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1356), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, + ACTIONS(1354), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109694,6 +111204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -109707,6 +111218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109720,22 +111232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59384] = 6, + [63286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, + ACTIONS(4144), 4, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3985), 36, + ts_builtin_sym_end, + ACTIONS(4142), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109770,16 +111277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59439] = 3, + [63335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(1360), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(3837), 38, + ACTIONS(1358), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -109802,6 +111310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109815,25 +111324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59488] = 6, + [63384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, + ACTIONS(1322), 4, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(3683), 35, + ts_builtin_sym_end, + ACTIONS(1320), 37, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -109841,8 +111344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109851,7 +111354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109867,20 +111372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59543] = 6, + [63433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3682), 1, sym__concat, - STATE(1392), 1, + STATE(1369), 1, aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, + ACTIONS(1264), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(3663), 35, + ACTIONS(1262), 35, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -109916,116 +111421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59598] = 6, + [63488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, + ACTIONS(1348), 3, sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59653] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [59706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, sym__brace_start, - ACTIONS(1242), 36, + ACTIONS(1346), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110034,6 +111437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110047,55 +111451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110111,19 +111467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59816] = 6, + [63537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4482), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1252), 36, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110132,6 +111483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110145,6 +111497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110160,19 +111513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59871] = 6, + [63586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4484), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1246), 36, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110181,6 +111529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110194,6 +111543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110209,15 +111559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [59926] = 3, + [63635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 4, + ACTIONS(1332), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(4374), 37, + ACTIONS(1330), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110239,6 +111589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110252,20 +111603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [59975] = 5, + [63684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(3989), 37, + ts_builtin_sym_end, + ACTIONS(1312), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110276,8 +111624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -110289,7 +111635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110303,63 +111651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60028] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1369), 1, - anon_sym_LPAREN, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1225), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [60083] = 3, + [63733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(1264), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4370), 38, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110368,10 +111667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -110396,16 +111694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60132] = 3, + [63782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(1298), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, - ACTIONS(4374), 38, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110414,10 +111713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -110429,6 +111727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110444,17 +111743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60181] = 5, + [63831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 1, - sym__special_character, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 2, + ACTIONS(1332), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4032), 37, + ACTIONS(1330), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110477,7 +111773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110489,17 +111787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60234] = 3, + [63880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1322), 38, + ts_builtin_sym_end, + ACTIONS(1346), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110508,7 +111806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110538,31 +111835,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60283] = 6, + [63929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4492), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1322), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(1246), 35, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110571,7 +111863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110587,31 +111881,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60338] = 6, + [63978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1350), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(4494), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(1312), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, - ACTIONS(1252), 35, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110620,7 +112001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110636,15 +112019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60393] = 3, + [64125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 4, + ACTIONS(4322), 1, + sym__special_character, + STATE(1434), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 4, sym_file_descriptor, sym_variable_name, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3837), 37, + ACTIONS(3886), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110667,7 +112054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110679,18 +112065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60442] = 3, + [64178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 37, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110699,6 +112083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110728,15 +112113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60491] = 3, + [64227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(4331), 1, + sym__special_character, + STATE(1379), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 37, + ACTIONS(3741), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110745,6 +112133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110758,7 +112147,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3680), 1, aux_sym_concatenation_token1, + ACTIONS(3682), 1, + sym__concat, + STATE(1369), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3546), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3544), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110774,20 +112210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60540] = 6, + [64335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(3680), 1, aux_sym_concatenation_token1, - ACTIONS(3735), 1, + ACTIONS(3682), 1, sym__concat, - STATE(1392), 1, + STATE(1368), 1, aux_sym_concatenation_repeat1, - ACTIONS(178), 3, + ACTIONS(3542), 3, sym_file_descriptor, sym__bare_dollar, sym__brace_start, - ACTIONS(145), 35, + ACTIONS(3540), 35, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -110823,14 +112259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60595] = 3, + [64390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1330), 38, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110869,15 +112305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60644] = 3, + [64439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1271), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110886,6 +112321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110915,15 +112351,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60693] = 3, + [64488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(4333), 1, + sym__special_character, + STATE(1437), 1, + aux_sym__literal_repeat1, + ACTIONS(3854), 3, sym_file_descriptor, - sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1280), 37, + ACTIONS(3850), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110945,9 +112384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110959,17 +112396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60742] = 3, + [64541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 37, + ACTIONS(1334), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -110978,6 +112415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111007,17 +112445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60791] = 3, + [64590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, sym__concat, + STATE(1369), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3651), 3, + sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 37, + ACTIONS(3649), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -111025,8 +112468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111035,9 +112478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111053,15 +112494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60840] = 3, + [64645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(4144), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 37, + ACTIONS(4142), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111070,6 +112510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111083,7 +112524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111097,20 +112537,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60889] = 5, + [64694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, + sym__concat, + STATE(1368), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3655), 3, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3653), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, - STATE(1404), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1352), 36, + ACTIONS(1354), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111132,7 +112619,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111144,18 +112633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [60942] = 3, + [64798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 37, + ACTIONS(1288), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111164,6 +112651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111193,14 +112681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [60991] = 3, + [64847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(4335), 1, + sym__special_character, + STATE(1434), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1334), 38, + ts_builtin_sym_end, + ACTIONS(1364), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111209,7 +112702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111223,9 +112715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111239,31 +112729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61040] = 6, + [64900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, + ACTIONS(4331), 1, + sym__special_character, + STATE(1379), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, - ACTIONS(1225), 35, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111272,9 +112761,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111288,34 +112777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61095] = 5, + [64953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(3680), 1, + aux_sym_concatenation_token1, + ACTIONS(3682), 1, + sym__concat, + STATE(1369), 1, + aux_sym_concatenation_repeat1, + ACTIONS(182), 3, sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(3236), 17, + ACTIONS(149), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 21, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -111323,10 +112800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111335,16 +112810,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [61148] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(4338), 1, + sym__special_character, + STATE(1437), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1314), 37, + ACTIONS(1364), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111366,9 +112859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111380,16 +112871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [61197] = 3, + [65061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(4151), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1272), 38, + ACTIONS(4149), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111412,7 +112904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111426,16 +112917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [61246] = 3, + [65110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1346), 38, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111474,14 +112966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61295] = 3, + [65159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, sym__brace_start, - ACTIONS(1342), 38, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111520,99 +113012,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61344] = 7, + [65208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(4501), 1, - anon_sym_DQUOTE, - STATE(2238), 1, - sym_string, - ACTIONS(4503), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 27, + ts_builtin_sym_end, + ACTIONS(1358), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61401] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(4501), 1, - anon_sym_DQUOTE, - STATE(2238), 1, - sym_string, - ACTIONS(4503), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 27, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, @@ -111620,17 +113058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61458] = 5, + [65257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4505), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(1340), 3, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1352), 37, + ACTIONS(1338), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111639,10 +113074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -111654,7 +113088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111668,15 +113104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61511] = 5, + [65306] = 5, ACTIONS(63), 1, sym_comment, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4508), 2, - sym__concat, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(1258), 13, + STATE(1638), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -111690,7 +113125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1263), 25, + sym__special_character, + ACTIONS(1264), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -111710,43 +113147,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [61564] = 3, + [65358] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4341), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111762,14 +113200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61613] = 3, + [65414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(4144), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1268), 38, + ACTIONS(4142), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111792,7 +113230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111808,18 +113245,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61662] = 5, + [65462] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + sym_file_descriptor, + ACTIONS(4344), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4282), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [65518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 1, + ACTIONS(4347), 1, sym__special_character, - STATE(1419), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(1369), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1352), 36, + ACTIONS(1364), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111856,37 +113341,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61715] = 3, + [65570] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4350), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111902,18 +113390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61764] = 5, + [65626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(4353), 1, sym__special_character, - STATE(1404), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - ACTIONS(4034), 3, + ACTIONS(3888), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4032), 36, + ACTIONS(3886), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111922,6 +113409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111947,18 +113435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [61817] = 3, + [65678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(3747), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 37, + ACTIONS(3745), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -111967,6 +113453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -111980,7 +113467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111996,35 +113482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [61866] = 3, + [65726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 39, + ACTIONS(4231), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112039,17 +113507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [61915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(4229), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112057,11 +113517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112072,145 +113529,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61964] = 3, - ACTIONS(3), 1, + [65778] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, + STATE(1683), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, sym__concat, - sym__brace_start, - ACTIONS(1326), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + aux_sym_concatenation_token1, + ACTIONS(1262), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + anon_sym_CARET, + ACTIONS(1264), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [62013] = 3, + [65830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4355), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112226,14 +113625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62111] = 3, + [65886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1264), 3, sym_file_descriptor, - sym__concat, sym__brace_start, - ACTIONS(1318), 38, + ts_builtin_sym_end, + ACTIONS(1262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -112242,7 +113641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -112256,7 +113654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112270,85 +113667,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62160] = 3, + [65934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4358), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112364,25 +113719,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62258] = 3, + [65990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(4361), 1, sym__concat, + STATE(902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1284), 38, + ACTIONS(1276), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112392,9 +113750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112408,27 +113764,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62307] = 3, + [66044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(4363), 1, + sym__concat, + STATE(902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(4374), 38, + ACTIONS(1282), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -112438,7 +113798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112456,14 +113815,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62356] = 3, + [66098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, + ACTIONS(4365), 1, + sym__special_character, + STATE(1471), 1, + aux_sym__literal_repeat1, + ACTIONS(3888), 3, sym_file_descriptor, - sym__concat, sym__brace_start, - ACTIONS(1338), 38, + ts_builtin_sym_end, + ACTIONS(3886), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -112472,7 +113835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -112486,9 +113848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112502,35 +113862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62405] = 3, + [66150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(4231), 1, sym_file_descriptor, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4370), 38, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112545,18 +113886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [62454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(4229), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112577,100 +113909,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62503] = 3, + [66202] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4367), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112686,85 +113958,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62601] = 5, + [66258] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 4, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112780,37 +114007,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62703] = 3, + [66314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4373), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112826,37 +114056,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62752] = 3, + [66370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4376), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112872,37 +114105,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62801] = 3, + [66426] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4379), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112918,85 +114154,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62850] = 5, + [66482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - sym__special_character, - STATE(1419), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4382), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113012,37 +114203,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [62952] = 3, + [66538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4385), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113058,131 +114252,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63001] = 5, - ACTIONS(3), 1, + [66594] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4516), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1350), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_CARET, + ACTIONS(1352), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [63054] = 3, + [66642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(4280), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113198,37 +114345,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63152] = 3, + [66696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(4285), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4388), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ACTIONS(1310), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113244,17 +114394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63201] = 7, + [66752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4518), 1, + ACTIONS(4391), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113263,7 +114413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113275,7 +114425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113293,14 +114443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63257] = 3, + [66808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(4394), 1, + sym__special_character, + STATE(1471), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(4374), 37, + ts_builtin_sym_end, + ACTIONS(1364), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -113309,7 +114463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -113324,7 +114477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113338,17 +114490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63305] = 7, + [66860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4521), 1, + ACTIONS(4397), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113357,7 +114509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113369,7 +114521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113387,17 +114539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63361] = 7, + [66916] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4524), 1, + ACTIONS(4400), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113406,7 +114558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113418,7 +114570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113436,35 +114588,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63417] = 3, + [66972] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1629), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1153), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(1264), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [67024] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 4, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4403), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113481,17 +114684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63465] = 7, + [67080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4527), 1, + ACTIONS(4406), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113500,7 +114703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113512,7 +114715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113530,17 +114733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63521] = 7, + [67136] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4530), 1, + ACTIONS(4409), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113549,7 +114752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113561,7 +114764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113579,35 +114782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63577] = 3, + [67192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4412), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4370), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -113624,15 +114831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63625] = 5, + [67248] = 3, ACTIONS(63), 1, sym_comment, - STATE(1606), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, + ACTIONS(1304), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113646,8 +114848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1306), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113667,114 +114869,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [63677] = 5, - ACTIONS(63), 1, + [67296] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3673), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3675), 24, + ACTIONS(1264), 2, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [63729] = 5, + [67344] = 3, ACTIONS(63), 1, sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3683), 13, - anon_sym_EQ_EQ, + ACTIONS(1300), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1302), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3685), 24, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [67392] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4415), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4282), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [63781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4392), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3236), 17, + anon_sym_AMP, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113792,37 +115015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4390), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [63833] = 7, + [67448] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4533), 1, + ACTIONS(4418), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113831,7 +115034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113843,7 +115046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113861,80 +115064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [63889] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4542), 1, - anon_sym_DOLLAR, - ACTIONS(4545), 1, - sym__special_character, - ACTIONS(4548), 1, - anon_sym_DQUOTE, - ACTIONS(4554), 1, - aux_sym_number_token1, - ACTIONS(4557), 1, - aux_sym_number_token2, - ACTIONS(4560), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4566), 1, - anon_sym_BQUOTE, - ACTIONS(4569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4575), 1, - sym_test_operator, - ACTIONS(4578), 1, - sym__brace_start, - STATE(2495), 1, - aux_sym__literal_repeat1, - ACTIONS(4539), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4551), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4572), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2094), 7, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63973] = 7, + [67504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4581), 1, + ACTIONS(4421), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -113943,7 +115083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113955,7 +115095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -113973,253 +115113,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64029] = 5, - ACTIONS(3), 1, + [67560] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4584), 1, - sym__special_character, - STATE(1465), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1354), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64081] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4587), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, + anon_sym_CARET, + ACTIONS(1356), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [64137] = 6, + [67608] = 3, ACTIONS(63), 1, sym_comment, - STATE(2495), 1, - aux_sym__literal_repeat1, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [64191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1330), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [64239] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4590), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, + anon_sym_CARET, + ACTIONS(1332), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [64295] = 5, + [67656] = 5, ACTIONS(63), 1, sym_comment, - STATE(1470), 1, + STATE(1611), 1, aux_sym_concatenation_repeat1, - ACTIONS(4593), 2, + ACTIONS(1153), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1258), 14, + ACTIONS(1262), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114230,12 +115222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1263), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1264), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -114255,64 +115245,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + sym__special_character, sym_test_operator, - [64347] = 5, + [67708] = 6, ACTIONS(63), 1, sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - ACTIONS(3663), 13, - anon_sym_EQ_EQ, + ACTIONS(4424), 1, + sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 14, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3665), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1284), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [64399] = 5, + [67762] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - STATE(1594), 1, + ACTIONS(4426), 1, + sym__concat, + STATE(1521), 1, aux_sym_concatenation_repeat1, - ACTIONS(1242), 14, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114323,12 +115318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 24, - sym__concat, + ACTIONS(1278), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -114348,14 +115343,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [64451] = 3, + [67816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3745), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [67864] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 13, + ACTIONS(1358), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114369,7 +115408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1296), 27, + ACTIONS(1360), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -114397,17 +115436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [64499] = 7, + [67912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4596), 1, + ACTIONS(4428), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114416,7 +115455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114428,7 +115467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114446,64 +115485,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64555] = 5, + [67968] = 3, ACTIONS(63), 1, sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3659), 13, - anon_sym_EQ_EQ, + ACTIONS(1346), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3661), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1348), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [64607] = 7, + [68016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4599), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(4431), 1, + ts_builtin_sym_end, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114512,7 +115549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114524,7 +115561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114542,39 +115579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64663] = 7, + [68072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(1264), 4, sym_file_descriptor, - ACTIONS(4602), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ts_builtin_sym_end, + ACTIONS(1262), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114591,17 +115624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64719] = 7, + [68120] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4605), 1, + ACTIONS(4433), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114610,7 +115643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114622,7 +115655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114640,17 +115673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64775] = 7, + [68176] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4608), 1, + ACTIONS(4436), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114659,7 +115692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114671,7 +115704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114689,10 +115722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64831] = 3, + [68232] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 13, + ACTIONS(1320), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114706,7 +115739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1300), 27, + ACTIONS(1322), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -114734,17 +115767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [64879] = 7, + [68280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4611), 1, + ACTIONS(4439), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114753,7 +115786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114765,7 +115798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114783,62 +115816,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [64935] = 3, + [68336] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1264), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [64983] = 7, + [68388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4614), 1, + ACTIONS(4442), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -114847,7 +115882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114859,7 +115894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114877,15 +115912,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65039] = 5, + [68444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(3248), 2, + ACTIONS(4445), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(3236), 17, + ACTIONS(4282), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -114903,309 +115961,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - ACTIONS(4390), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [65091] = 3, + [68500] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ, + STATE(1503), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4448), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [65139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1271), 24, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [65187] = 3, - ACTIONS(3), 1, + [68552] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(4320), 1, + aux_sym_concatenation_token1, + ACTIONS(4451), 1, + sym__concat, + STATE(1503), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1284), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [65235] = 3, + [68606] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 13, - anon_sym_EQ, + ACTIONS(4320), 1, + aux_sym_concatenation_token1, + ACTIONS(4453), 1, + sym__concat, + STATE(1503), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [65283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 24, sym_file_descriptor, - ACTIONS(4617), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [65339] = 7, - ACTIONS(3), 1, + [68660] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4620), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, + STATE(1504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1260), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [65395] = 3, + [68712] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 13, + STATE(1625), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115219,8 +116173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1304), 27, - sym__concat, + sym__special_character, + ACTIONS(1264), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115240,24 +116194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, sym_test_operator, - [65443] = 7, + [68764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4623), 1, + ACTIONS(4455), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115266,7 +116217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115278,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -115296,66 +116247,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65499] = 7, - ACTIONS(3), 1, + [68820] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4626), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(149), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(182), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [65555] = 7, + [68872] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4629), 1, + ACTIONS(4458), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115364,7 +116313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115376,7 +116325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -115394,35 +116343,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65611] = 3, + [68928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 4, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4461), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4370), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115439,40 +116392,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65659] = 5, + [68984] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, - sym__special_character, - STATE(1496), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4464), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115486,15 +116441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65711] = 5, + [69040] = 5, ACTIONS(63), 1, sym_comment, - STATE(1706), 1, + STATE(1677), 1, aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, + ACTIONS(1153), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1242), 13, + ACTIONS(1262), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115508,7 +116463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 24, + ACTIONS(1264), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115533,17 +116488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym__special_character, sym_test_operator, - [65763] = 7, + [69092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4635), 1, + ACTIONS(4467), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115552,7 +116507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115564,7 +116519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -115582,17 +116537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65819] = 7, + [69148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4638), 1, - ts_builtin_sym_end, - ACTIONS(3248), 2, + ACTIONS(4470), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115601,7 +116556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115613,7 +116568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -115631,39 +116586,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65875] = 7, + [69204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(1264), 3, sym_file_descriptor, - ACTIONS(4640), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(1262), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -115680,17 +116631,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65931] = 7, + [69252] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1340), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [69300] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4643), 1, + ACTIONS(4473), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -115699,7 +116695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115711,7 +116707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -115729,104 +116725,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [65987] = 3, - ACTIONS(3), 1, + [69356] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1316), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_CARET, + ACTIONS(1318), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [66035] = 7, - ACTIONS(3), 1, + [69404] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, + STATE(2375), 1, + aux_sym__literal_repeat1, + STATE(1530), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2053), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2224), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2055), 20, sym_file_descriptor, - ACTIONS(4646), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [66091] = 3, + [69458] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 13, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4476), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115837,11 +116837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 27, - sym__concat, + ACTIONS(1271), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115861,17 +116862,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, sym_test_operator, - [66139] = 3, + [69510] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + sym_file_descriptor, + ACTIONS(4479), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4282), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [69566] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 13, + STATE(1488), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115882,11 +116933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 27, - sym__concat, + ACTIONS(1373), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115906,17 +116958,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + sym_test_operator, + [69618] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, aux_sym_concatenation_token1, + ACTIONS(3653), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3655), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [66187] = 3, + [69670] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 13, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3649), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3651), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [69722] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1288), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115930,7 +117072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1278), 27, + ACTIONS(1290), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -115958,37 +117100,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [66235] = 6, + [69770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4482), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(1242), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116003,69 +117147,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [66289] = 7, - ACTIONS(3), 1, + [69826] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, + STATE(2375), 1, + aux_sym__literal_repeat1, + STATE(1530), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1913), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2224), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1915), 20, sym_file_descriptor, - ACTIONS(4649), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [66345] = 7, + [69880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4652), 1, + ACTIONS(4485), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116074,7 +117216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116086,7 +117228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -116104,17 +117246,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66401] = 7, + [69936] = 21, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4488), 1, + sym_word, + ACTIONS(4494), 1, + anon_sym_DOLLAR, + ACTIONS(4497), 1, + sym__special_character, + ACTIONS(4500), 1, + anon_sym_DQUOTE, + ACTIONS(4506), 1, + aux_sym_number_token1, + ACTIONS(4509), 1, + aux_sym_number_token2, + ACTIONS(4512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4515), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4518), 1, + anon_sym_BQUOTE, + ACTIONS(4521), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4527), 1, + sym_test_operator, + ACTIONS(4530), 1, + sym__brace_start, + STATE(2375), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4503), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4524), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1530), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2214), 7, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(2224), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4655), 1, + ACTIONS(4533), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116123,7 +117328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116135,7 +117340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -116153,10 +117358,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66457] = 3, + [70076] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 13, + ACTIONS(1296), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1298), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + sym_test_operator, + [70124] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116170,7 +117420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1312), 27, + ACTIONS(1314), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -116198,17 +117448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [66505] = 7, + [70172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4658), 1, + ACTIONS(4536), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116217,7 +117467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116229,7 +117479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -116247,15 +117497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66561] = 5, + [70228] = 3, ACTIONS(63), 1, sym_comment, - STATE(1626), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, + ACTIONS(1312), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116269,7 +117514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 24, + ACTIONS(1314), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116290,21 +117536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [66613] = 7, + [70276] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4661), 1, + ACTIONS(4539), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116313,7 +117561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116325,7 +117573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -116343,37 +117591,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66669] = 6, + [70332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4542), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(3841), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116388,42 +117638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [66723] = 7, + [70388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, + STATE(1457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3688), 3, sym_file_descriptor, - ACTIONS(4664), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(3684), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116438,22 +117685,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [66779] = 6, + [70442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4154), 1, + ACTIONS(3973), 1, sym__concat, - STATE(1565), 1, + STATE(1456), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(3694), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(3837), 34, + ACTIONS(3692), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116488,64 +117736,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [66833] = 5, + [70496] = 3, ACTIONS(63), 1, sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ_EQ, + ACTIONS(1292), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1294), 27, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [66885] = 5, + [70544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, - sym__special_character, - STATE(1465), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, + ACTIONS(4151), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(3989), 36, + ACTIONS(4149), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -116569,6 +117812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116582,63 +117826,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [66937] = 6, + [70592] = 5, ACTIONS(63), 1, sym_comment, - STATE(2495), 1, - aux_sym__literal_repeat1, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 8, + STATE(1504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4320), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3540), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 20, + ACTIONS(3542), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [66991] = 5, + [70644] = 5, ACTIONS(63), 1, sym_comment, - STATE(1521), 1, + STATE(1505), 1, aux_sym_concatenation_repeat1, - ACTIONS(4669), 2, + ACTIONS(4320), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1258), 13, + ACTIONS(3544), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -116652,7 +117895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 24, + ACTIONS(3546), 24, sym_file_descriptor, sym__bare_dollar, sym__brace_start, @@ -116677,62 +117920,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [67043] = 3, - ACTIONS(63), 1, + [70696] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, + sym__concat, + STATE(1457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3745), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1316), 27, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [70750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 1, + aux_sym_concatenation_token1, + ACTIONS(3973), 1, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + STATE(1456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3741), 34, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [67091] = 7, + [70804] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4672), 1, + ACTIONS(4545), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116741,7 +118035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116753,7 +118047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -116771,113 +118065,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67147] = 6, - ACTIONS(63), 1, + [70860] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(3971), 1, aux_sym_concatenation_token1, - ACTIONS(4675), 1, + ACTIONS(3973), 1, sym__concat, - STATE(1521), 1, + STATE(1456), 1, aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, + ACTIONS(1264), 3, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, sym__brace_start, + ACTIONS(1262), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [67201] = 6, - ACTIONS(63), 1, + [70914] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - aux_sym_concatenation_token1, - ACTIONS(4677), 1, - sym__concat, - STATE(1521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, + ACTIONS(4285), 1, + sym_file_descriptor, + ACTIONS(4548), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, + sym__brace_start, + ACTIONS(4282), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1248), 24, + sym_test_operator, + [70970] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(4551), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, + sym_variable_name, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4282), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [67255] = 7, + [71026] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4679), 1, + ACTIONS(4554), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -116886,7 +118230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116898,8 +118242,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [71082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 4, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4142), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -116916,15 +118305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67311] = 5, + [71130] = 3, ACTIONS(63), 1, sym_comment, - STATE(1648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1123), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, + ACTIONS(1266), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116938,8 +118322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, + ACTIONS(1271), 27, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116959,14 +118343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [67363] = 3, + [71178] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 13, + ACTIONS(1334), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116980,7 +118367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1320), 27, + ACTIONS(1336), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117008,77 +118395,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [67411] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4682), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67467] = 6, + [71226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, + ACTIONS(1264), 2, sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(3777), 34, + ACTIONS(1262), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117088,6 +118422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117105,17 +118440,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [67521] = 7, + [71274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4685), 1, + ACTIONS(4557), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -117124,7 +118459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117136,7 +118471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -117154,84 +118489,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67577] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [67629] = 6, + [71330] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, + ACTIONS(4285), 1, sym_file_descriptor, + ACTIONS(4560), 1, + anon_sym_RPAREN, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(3781), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(4280), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3166), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117246,20 +118536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [67683] = 7, + [71386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4688), 1, + ACTIONS(4563), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -117268,7 +118557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117280,7 +118569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -117298,17 +118587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67739] = 7, + [71442] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4691), 1, + ACTIONS(4566), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -117317,7 +118606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117329,7 +118618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -117347,17 +118636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67795] = 7, + [71498] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4694), 1, + ACTIONS(4569), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -117366,7 +118655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117378,7 +118667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -117396,10 +118685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67851] = 3, + [71554] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(1308), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117413,7 +118702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1282), 27, + ACTIONS(1310), 27, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117441,39 +118730,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [67899] = 7, + [71602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4151), 4, sym_file_descriptor, - ACTIONS(4697), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ts_builtin_sym_end, + ACTIONS(4149), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117490,64 +118775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [67955] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(145), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(178), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [68007] = 7, + [71650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4700), 1, + ACTIONS(4572), 1, anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -117556,7 +118794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117568,7 +118806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -117586,39 +118824,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68063] = 7, + [71706] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4703), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4583), 1, + anon_sym_esac, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4453), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2103), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4579), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [71795] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + anon_sym_DQUOTE, + STATE(2325), 1, + sym_string, + ACTIONS(4615), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(4611), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 23, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [71850] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3745), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117635,10 +118984,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68119] = 3, + [71903] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 13, + ACTIONS(1350), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1352), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [71950] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117649,11 +119042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1324), 27, + ACTIONS(1348), 25, sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117673,71 +119068,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [68167] = 7, - ACTIONS(3), 1, + [71997] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4706), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(1266), 14, + anon_sym_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1271), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [72044] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(4619), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_CARET, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [68223] = 5, + [72099] = 7, ACTIONS(63), 1, sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(1225), 13, + ACTIONS(4621), 1, + anon_sym_RBRACK, + ACTIONS(4623), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [72154] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1354), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -117751,8 +119229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1234), 24, + ACTIONS(1356), 26, sym_file_descriptor, + sym__concat, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -117767,6 +119246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -117776,10 +119256,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [68275] = 3, + [72201] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4627), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4450), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2106), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4625), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72290] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(4629), 1, + sym__special_character, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117793,7 +119342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1332), 27, + ACTIONS(350), 24, sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117814,23 +119363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, sym_test_operator, - [68323] = 6, + [72341] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4709), 1, - sym__concat, - STATE(1470), 1, + STATE(1645), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 14, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117841,11 +119386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(1373), 23, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117869,16 +119413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [68377] = 6, + [72392] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4711), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 14, + ACTIONS(1330), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117893,7 +119431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(1332), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117916,18 +119455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [68431] = 3, + [72439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 4, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4374), 36, + ACTIONS(3741), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -117935,7 +119479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117945,7 +119488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -117962,108 +119504,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68479] = 7, - ACTIONS(3), 1, + [72492] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4631), 1, + aux_sym_concatenation_token1, + ACTIONS(4633), 1, + sym__concat, + STATE(1617), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1284), 24, sym_file_descriptor, - ACTIONS(4713), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [68535] = 7, - ACTIONS(3), 1, + [72545] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4631), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, + sym__concat, + STATE(1617), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1278), 24, sym_file_descriptor, - ACTIONS(4716), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [68591] = 3, + [72598] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1207), 1, + anon_sym_RBRACK, + ACTIONS(4629), 1, + sym__special_character, + ACTIONS(4637), 1, + sym__concat, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118077,8 +119623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 27, - sym__concat, + ACTIONS(350), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118098,45 +119643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, sym_test_operator, - [68639] = 7, + [72653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4231), 1, sym_file_descriptor, - ACTIONS(4719), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -118148,215 +119666,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [68695] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4722), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4229), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [72704] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [68751] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, + ACTIONS(1360), 26, sym_file_descriptor, - ACTIONS(4725), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [68807] = 5, - ACTIONS(3), 1, + [72751] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4728), 1, + STATE(1649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4639), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3886), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym__special_character, - STATE(1496), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3888), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [68859] = 7, - ACTIONS(3), 1, + [72802] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4639), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3882), 24, sym_file_descriptor, - ACTIONS(4730), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [68915] = 5, + [72853] = 3, ACTIONS(63), 1, sym_comment, - STATE(1547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 14, + ACTIONS(1350), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118371,49 +119846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [68967] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 27, + ACTIONS(1352), 25, sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118433,24 +119868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [69015] = 7, + [72900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4285), 1, sym_file_descriptor, - ACTIONS(4733), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, + ACTIONS(3172), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(4282), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -118459,7 +119889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, + anon_sym_BQUOTE, + ACTIONS(4280), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118471,7 +119902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, + ACTIONS(3166), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -118483,61 +119914,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [69071] = 3, - ACTIONS(3), 1, + [72953] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(1346), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(3837), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [69119] = 3, + [73000] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(1334), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118548,11 +119977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1328), 27, + ACTIONS(1336), 25, sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118572,208 +120003,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [69167] = 7, - ACTIONS(3), 1, + [73047] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4736), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, + ACTIONS(1312), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [69223] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, + ACTIONS(1314), 26, sym_file_descriptor, - ACTIONS(4739), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [69279] = 3, - ACTIONS(3), 1, + [73094] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4631), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 12, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [69327] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4742), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1264), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, - ACTIONS(1252), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, sym_test_operator, - [69381] = 3, + [73145] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(4641), 1, + sym__special_character, + STATE(1590), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118784,11 +120115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1348), 27, - sym__concat, + ACTIONS(1369), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118808,115 +120140,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, sym_test_operator, - [69429] = 7, - ACTIONS(3), 1, + [73196] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4744), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, + ACTIONS(1312), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [69485] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, + ACTIONS(1314), 26, sym_file_descriptor, - ACTIONS(4747), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4422), 8, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [69541] = 3, + [73243] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118927,11 +120201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1344), 27, + ACTIONS(1314), 25, sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118951,45 +120227,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, sym_test_operator, - [69589] = 6, + [73290] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [73341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(1264), 3, sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, sym__brace_start, - ACTIONS(4422), 8, + ts_builtin_sym_end, + ACTIONS(1262), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4420), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -119006,224 +120321,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [69643] = 7, - ACTIONS(3), 1, + [73388] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4750), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4753), 1, + anon_sym_CARET, + ACTIONS(1322), 25, sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 34, - anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [73435] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [69753] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1596), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, + ACTIONS(1332), 26, sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4036), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [69806] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4759), 1, - sym__regex_no_space, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1929), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69895] = 5, + [73482] = 6, ACTIONS(63), 1, sym_comment, - STATE(1926), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(1242), 13, + ACTIONS(4644), 1, + sym__concat, + STATE(1626), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119237,7 +120432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 23, + ACTIONS(1284), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119257,315 +120452,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [69946] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [70052] = 6, - ACTIONS(3), 1, + [73535] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + ACTIONS(1127), 1, + anon_sym_RBRACK, + ACTIONS(4629), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, + ACTIONS(4646), 1, sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 33, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(350), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [70211] = 5, + [73590] = 5, ACTIONS(63), 1, sym_comment, - STATE(1695), 1, + STATE(1616), 1, aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, + ACTIONS(1153), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3837), 12, + ACTIONS(1253), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3839), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [70262] = 5, + [73641] = 3, ACTIONS(63), 1, sym_comment, - STATE(1696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 12, + ACTIONS(1320), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3843), 24, + ACTIONS(1322), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119579,6 +120584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -119588,15 +120594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [70313] = 5, + [73688] = 7, ACTIONS(63), 1, sym_comment, - STATE(1668), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(1227), 13, + ACTIONS(4648), 1, + anon_sym_RBRACK, + ACTIONS(4650), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119610,7 +120619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, + ACTIONS(1373), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119632,16 +120641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [70364] = 5, + [73743] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(4652), 1, + sym__special_character, + STATE(1614), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119655,8 +120663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 24, - sym__concat, + ACTIONS(350), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119676,22 +120683,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [70415] = 7, + [73794] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4765), 1, + STATE(1577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4631), 2, sym__concat, - STATE(1600), 1, + aux_sym_concatenation_token1, + ACTIONS(3684), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(3688), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [73845] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4654), 1, + sym__special_character, + STATE(1604), 1, aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(1364), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119705,7 +120755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 22, + ACTIONS(1369), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119725,17 +120776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [70470] = 5, + [73896] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4767), 1, - sym__special_character, - STATE(1664), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119746,10 +120794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 24, + ACTIONS(1310), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119769,23 +120820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [70521] = 7, + [73943] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4769), 1, - anon_sym_RBRACK, - ACTIONS(4771), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119796,10 +120838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(1290), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119821,16 +120866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [70576] = 5, + [73990] = 5, ACTIONS(63), 1, sym_comment, - STATE(1695), 1, + STATE(1578), 1, aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, + ACTIONS(4631), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3781), 12, + ACTIONS(3692), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119843,7 +120889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3783), 24, + ACTIONS(3694), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -119868,15 +120914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [70627] = 5, + [74041] = 5, ACTIONS(63), 1, sym_comment, - STATE(1696), 1, + STATE(1577), 1, aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, + ACTIONS(4631), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3777), 12, + ACTIONS(3745), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119889,7 +120935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3779), 24, + ACTIONS(3747), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -119914,12 +120960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [70678] = 4, + [74092] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4777), 1, - anon_sym_LBRACK, - ACTIONS(4775), 13, + STATE(1675), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1153), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119933,9 +120982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4773), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1373), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -119959,24 +121006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, sym_test_operator, - [70727] = 3, + [74143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 3, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1242), 37, + ACTIONS(3878), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -119986,7 +121037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -120003,80 +121053,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [70774] = 24, + [74196] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, + ACTIONS(1153), 1, + aux_sym_concatenation_token1, + ACTIONS(4657), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1278), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [74249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(3886), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(246), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(4781), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2080), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70863] = 5, + sym_word, + sym_test_operator, + [74302] = 3, ACTIONS(63), 1, sym_comment, - STATE(1630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, + ACTIONS(1312), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1314), 25, sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - ACTIONS(1227), 13, + sym_test_operator, + [74349] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4659), 1, + sym__special_character, + STATE(1614), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120090,7 +121212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, + ACTIONS(1369), 24, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120113,17 +121235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [70914] = 6, + [74400] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4783), 1, - sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120134,10 +121251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(1302), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120157,20 +121277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [70967] = 6, + [74447] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1153), 1, aux_sym_concatenation_token1, - ACTIONS(4785), 1, + ACTIONS(4662), 1, sym__concat, - STATE(1602), 1, + STATE(1370), 1, aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120184,7 +121304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(1284), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120204,112 +121324,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71020] = 6, - ACTIONS(3), 1, + [74500] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4787), 1, - sym__concat, - STATE(1185), 1, + STATE(1617), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(4664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1271), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(1252), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [74551] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, anon_sym_BQUOTE, + ACTIONS(4601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4669), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4330), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + STATE(2107), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [71073] = 6, + ACTIONS(4667), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74640] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4789), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4587), 1, sym__special_character, + ACTIONS(4589), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, anon_sym_BQUOTE, + ACTIONS(4601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4673), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4329), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + STATE(2115), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [71126] = 5, + ACTIONS(4671), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74729] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4791), 1, - sym__special_character, - STATE(1598), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 14, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120324,7 +121522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1357), 23, + ACTIONS(1373), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -120345,18 +121543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [71177] = 5, + [74776] = 6, ACTIONS(63), 1, sym_comment, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, + ACTIONS(1153), 1, aux_sym_concatenation_token1, - ACTIONS(1227), 13, + ACTIONS(4675), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120370,7 +121571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, + ACTIONS(1284), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120394,14 +121595,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71228] = 5, + [74829] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4679), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4308), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2108), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4677), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74918] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4683), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4347), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2095), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4681), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75007] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(1197), 1, + anon_sym_RBRACK, + ACTIONS(4629), 1, sym__special_character, - STATE(1600), 1, + ACTIONS(4685), 1, + sym__concat, + STATE(1604), 1, aux_sym__literal_repeat1, - ACTIONS(1352), 13, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120415,8 +121750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1357), 24, - sym__concat, + ACTIONS(350), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120436,16 +121770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71279] = 4, + [75062] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(4687), 1, sym__concat, - ACTIONS(4799), 13, + STATE(1626), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120459,9 +121796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4797), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1278), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120481,19 +121816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [71328] = 5, + [75115] = 5, ACTIONS(63), 1, sym_comment, - STATE(1602), 1, + STATE(1626), 1, aux_sym_concatenation_repeat1, - ACTIONS(4803), 2, + ACTIONS(4689), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1258), 13, + ACTIONS(1266), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120507,7 +121842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1263), 23, + ACTIONS(1271), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120531,18 +121866,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71379] = 7, + [75166] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + anon_sym_DQUOTE, + STATE(2325), 1, + sym_string, + ACTIONS(4615), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + ACTIONS(4611), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 23, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [75221] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(4806), 1, - anon_sym_RBRACK, - ACTIONS(4808), 1, + ACTIONS(4692), 1, sym__concat, - STATE(1595), 1, + STATE(1626), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120556,7 +121937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(1284), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120576,21 +121957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71434] = 7, + [75274] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1183), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4810), 1, + ACTIONS(1153), 1, + aux_sym_concatenation_token1, + ACTIONS(4694), 1, sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120604,7 +121984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 22, + ACTIONS(1278), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120624,63 +122004,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71489] = 3, + [75327] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4698), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4563), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2093), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4696), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75416] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, + ACTIONS(1316), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 25, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [71536] = 6, + [75463] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4812), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(4702), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120691,10 +122131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(4700), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -120715,19 +122156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [71589] = 6, + [75510] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4814), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + ACTIONS(4706), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120738,10 +122175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(4704), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -120762,65 +122200,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [71642] = 24, + [75557] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4581), 1, anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_esac, - ACTIONS(4826), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4828), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4830), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4832), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(4836), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4599), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, + ACTIONS(4605), 1, sym_test_operator, - ACTIONS(4848), 1, + ACTIONS(4607), 1, sym_extglob_pattern, - ACTIONS(4850), 1, + ACTIONS(4609), 1, sym__brace_start, - STATE(4057), 1, + ACTIONS(4710), 1, + anon_sym_esac, + STATE(3852), 1, aux_sym__literal_repeat1, - STATE(4183), 1, + STATE(3968), 1, sym_concatenation, - STATE(4583), 1, + STATE(4560), 1, sym_last_case_item, - ACTIONS(4818), 2, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, + ACTIONS(4603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2237), 2, + STATE(2091), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, + ACTIONS(4575), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(4820), 4, + ACTIONS(4708), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - STATE(4027), 9, + STATE(3788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -120830,119 +122270,105 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [71731] = 24, - ACTIONS(3), 1, + [75646] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(1288), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, + sym_word, + ACTIONS(1290), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4854), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4866), 1, - sym_last_case_item, - ACTIONS(4818), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2191), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4852), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71820] = 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [75693] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 14, - anon_sym_EQ, + STATE(1636), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4712), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1271), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [71867] = 3, + [75744] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 14, + STATE(1699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1153), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120953,13 +122379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1263), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1264), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -120981,18 +122404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, + sym__special_character, sym_test_operator, - [71914] = 6, + [75795] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(4856), 1, + ACTIONS(4715), 1, sym__concat, - STATE(1416), 1, + STATE(1626), 1, aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121006,7 +122429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(1278), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121026,79 +122449,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [71967] = 24, - ACTIONS(63), 1, + [75848] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(1264), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1262), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(246), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72056] = 3, + sym_word, + sym_test_operator, + [75895] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(4719), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121113,8 +122515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1278), 25, - sym__concat, + ACTIONS(4717), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -121135,79 +122536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72103] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, + anon_sym_COLON, sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - ACTIONS(4862), 1, - sym__regex_no_space, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2093), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72192] = 3, + [75942] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(4719), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121222,8 +122559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1282), 25, - sym__concat, + ACTIONS(4717), 25, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -121244,16 +122580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_COLON, sym_test_operator, - [72239] = 4, + [75989] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4868), 1, - sym__concat, - ACTIONS(4866), 13, + ACTIONS(1358), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121264,12 +122599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4864), 25, + ACTIONS(1360), 25, + sym__concat, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121291,40 +122627,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [72288] = 6, + [76036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4104), 1, + sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, sym_file_descriptor, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(4422), 9, + ACTIONS(1262), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_BQUOTE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 16, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -121335,21 +122670,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [72341] = 6, + [76089] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1318), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [76136] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - ACTIONS(4870), 1, + ACTIONS(4721), 1, sym__concat, - STATE(1416), 1, + STATE(1521), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121363,7 +122743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(1284), 23, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121383,41 +122764,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [72394] = 5, + [76189] = 3, ACTIONS(63), 1, sym_comment, - STATE(1694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 12, + ACTIONS(1292), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3987), 24, + ACTIONS(1294), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -121425,6 +122801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121433,80 +122811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [72445] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4876), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2214), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4874), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72534] = 5, + [76236] = 6, ACTIONS(63), 1, sym_comment, - STATE(1692), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, + ACTIONS(4639), 1, aux_sym_concatenation_token1, - ACTIONS(3989), 12, + ACTIONS(4723), 1, + sym__concat, + STATE(1636), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -121519,7 +122833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3991), 24, + ACTIONS(1284), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -121544,10 +122858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [72585] = 3, + [76289] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1227), 14, + STATE(1628), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121558,12 +122877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 25, - anon_sym_RPAREN_RPAREN, + ACTIONS(1373), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121583,38 +122900,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [72632] = 3, + [76340] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ_EQ, + ACTIONS(4639), 1, + aux_sym_concatenation_token1, + ACTIONS(4725), 1, + sym__concat, + STATE(1636), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1324), 26, + ACTIONS(1278), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -121622,8 +122943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121632,10 +122951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [72679] = 3, + [76393] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 14, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(4727), 1, + anon_sym_RBRACK, + ACTIONS(4729), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121646,13 +122973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1373), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121674,124 +122998,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [72726] = 6, + [76448] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4878), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, + ACTIONS(1308), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72779] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, sym__brace_start, - ACTIONS(4882), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(4818), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2210), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4880), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72868] = 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [76495] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 14, + ACTIONS(1169), 1, + anon_sym_RBRACK, + ACTIONS(4629), 1, + sym__special_character, + ACTIONS(4731), 1, + sym__concat, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121802,12 +123065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4884), 25, - anon_sym_RPAREN_RPAREN, + ACTIONS(350), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121827,15 +123088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [72915] = 3, + [76550] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 14, + ACTIONS(4733), 1, + sym__special_character, + STATE(1590), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121850,7 +123113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4884), 25, + ACTIONS(350), 23, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -121871,21 +123134,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [72962] = 6, + [76601] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4888), 1, + ACTIONS(1173), 1, + anon_sym_RBRACK, + ACTIONS(4629), 1, + sym__special_character, + ACTIONS(4735), 1, sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + STATE(1604), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121899,7 +123162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(350), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121919,14 +123182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [73015] = 3, + [76656] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(1300), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -121940,7 +123202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1332), 26, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, sym__bare_dollar, @@ -121967,10 +123229,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [73062] = 3, + [76703] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4631), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3741), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(3743), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [76754] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4739), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4580), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2098), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4737), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76843] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4743), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4576), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2094), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4741), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76932] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4639), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1264), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [76983] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -121984,7 +123468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 26, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym__bare_dollar, @@ -122011,10 +123495,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [73109] = 3, + [77030] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4605), 1, + sym_test_operator, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4747), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4373), 1, + sym_last_case_item, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2114), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4745), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77119] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4892), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122029,7 +123578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4890), 25, + ACTIONS(1294), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122050,15 +123600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [73156] = 3, + [77166] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 14, + ACTIONS(1338), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122073,7 +123622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1312), 25, + ACTIONS(1340), 25, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, @@ -122099,15 +123648,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_concatenation_token1, sym_test_operator, - [73203] = 5, + [77213] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 26, + sym_file_descriptor, + sym__concat, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [77260] = 5, ACTIONS(63), 1, sym_comment, - STATE(1651), 1, + STATE(1621), 1, aux_sym_concatenation_repeat1, - ACTIONS(1123), 2, + ACTIONS(1153), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1227), 13, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122121,7 +123714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, + ACTIONS(1373), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122141,112 +123734,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [73254] = 5, - ACTIONS(63), 1, + [77311] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, - sym__special_character, - STATE(1598), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73305] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, + ACTIONS(4749), 1, + sym__concat, + STATE(1048), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, + ACTIONS(1282), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -122254,7 +123759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122264,7 +123768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -122279,56 +123782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [73403] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73450] = 3, + [77364] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4898), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122343,7 +123803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4896), 25, + ACTIONS(1298), 25, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -122364,19 +123825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [73497] = 5, + [77411] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4763), 1, - sym__special_character, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(4751), 1, + anon_sym_RBRACK, + ACTIONS(4753), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122390,8 +123854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 24, - sym__concat, + ACTIONS(1373), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122411,131 +123874,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [73548] = 24, - ACTIONS(63), 1, + [77466] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4118), 1, + sym__concat, + STATE(1674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1262), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(162), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4900), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73637] = 24, - ACTIONS(63), 1, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [77519] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(150), 1, + ACTIONS(4581), 1, anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(246), 1, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4599), 1, + anon_sym_BQUOTE, + ACTIONS(4601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, + ACTIONS(4605), 1, sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4902), 1, - sym__special_character, - STATE(1629), 1, - sym__expression, - STATE(1831), 1, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4757), 1, + anon_sym_esac, + STATE(3852), 1, aux_sym__literal_repeat1, - ACTIONS(1149), 2, + STATE(3968), 1, + sym_concatenation, + STATE(4375), 1, + sym_last_case_item, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(4603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + STATE(2118), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4575), 3, sym_raw_string, sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, + sym_word, + ACTIONS(4755), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(3788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -122545,98 +123989,104 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [73726] = 3, - ACTIONS(63), 1, + [77608] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4759), 1, sym__concat, - sym__bare_dollar, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(1282), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [73773] = 3, - ACTIONS(63), 1, + [77661] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 26, - sym_file_descriptor, + ACTIONS(4102), 1, + aux_sym_concatenation_token1, + ACTIONS(4761), 1, sym__concat, - sym__bare_dollar, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, sym__brace_start, + ACTIONS(1276), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [73820] = 3, + [77714] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1296), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -122650,7 +124100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 26, + ACTIONS(1298), 26, sym_file_descriptor, sym__concat, sym__bare_dollar, @@ -122677,60 +124127,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [73867] = 3, - ACTIONS(63), 1, + [77761] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, + ACTIONS(4116), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, sym__concat, - sym__bare_dollar, + STATE(1048), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(1276), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, sym_test_operator, - [73914] = 6, + [77814] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1153), 1, aux_sym_concatenation_token1, - ACTIONS(4904), 1, + ACTIONS(4765), 1, sym__concat, - STATE(1602), 1, + STATE(1370), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122744,7 +124197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(1284), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122764,235 +124217,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym_test_operator, - [73967] = 3, + [77867] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 14, - anon_sym_EQ, + ACTIONS(1266), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1296), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [74014] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4908), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4434), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2202), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4906), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74103] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4910), 1, + ACTIONS(1271), 26, + sym_file_descriptor, sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [74156] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4914), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4435), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2195), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4912), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74245] = 3, + sym_test_operator, + [77914] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 14, + ACTIONS(1153), 1, + aux_sym_concatenation_token1, + ACTIONS(4767), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123003,13 +124285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1278), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123031,12 +124310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_COLON, sym_test_operator, - [74292] = 3, + [77967] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(1334), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -123050,7 +124329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1328), 26, + ACTIONS(1336), 26, sym_file_descriptor, sym__concat, sym__bare_dollar, @@ -123077,18 +124356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [74339] = 7, + [78014] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1119), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4916), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(1354), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123099,10 +124370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 22, + ACTIONS(1356), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123124,20 +124398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [74394] = 6, + [78061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(4342), 1, + ACTIONS(4118), 1, sym__concat, - STATE(1597), 1, + STATE(1674), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(3854), 2, sym_file_descriptor, sym__brace_start, - ACTIONS(1242), 34, + ACTIONS(3850), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123172,18 +124447,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, sym_test_operator, - [74447] = 7, - ACTIONS(63), 1, + [78114] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(4116), 1, aux_sym_concatenation_token1, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(4920), 1, + ACTIONS(4118), 1, sym__concat, - STATE(1595), 1, + STATE(1666), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(3860), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3858), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [78167] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123194,10 +124508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(1306), 25, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123219,11 +124536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [74502] = 3, + [78214] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 14, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(4769), 1, + sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123234,12 +124558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1316), 25, - sym__concat, + ACTIONS(1278), 23, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -123262,105 +124584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [74549] = 3, + [78267] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4922), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4771), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [74649] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4928), 1, - sym__concat, - ACTIONS(4926), 13, + STATE(1742), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123374,9 +124606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4924), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(350), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123396,63 +124626,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [74698] = 6, - ACTIONS(3), 1, + [78317] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4930), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(4773), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(3544), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3546), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [74751] = 4, + [78367] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4936), 1, - sym__concat, - ACTIONS(4934), 13, + ACTIONS(1320), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123466,9 +124692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4932), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1322), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123488,83 +124713,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [74800] = 5, + [78413] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4938), 1, - sym__special_character, - STATE(1664), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, - anon_sym_EQ, + STATE(1776), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4775), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [74851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3882), 24, sym_file_descriptor, - ACTIONS(3248), 2, sym_variable_name, sym__brace_start, - ACTIONS(3236), 16, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - ACTIONS(4390), 20, - anon_sym_SEMI, + [78463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3882), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(3878), 33, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -123572,7 +124784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -123582,35 +124793,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [74902] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [78515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ_EQ, + ACTIONS(1350), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1316), 26, + ACTIONS(1352), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123619,7 +124844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123628,60 +124852,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [74949] = 3, - ACTIONS(63), 1, + [78561] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, sym__concat, - sym__bare_dollar, + STATE(1732), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3888), 2, + sym_file_descriptor, sym__brace_start, + ACTIONS(3886), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [74996] = 6, + [78613] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4941), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + ACTIONS(4777), 1, + sym__special_character, + STATE(1691), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123695,7 +124919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 23, + ACTIONS(1369), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123715,37 +124939,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [75049] = 3, + [78663] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ_EQ, + ACTIONS(1354), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 26, + ACTIONS(1356), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123754,7 +124978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123763,33 +124986,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75096] = 3, + [78709] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ_EQ, + ACTIONS(4784), 1, + sym__concat, + ACTIONS(4782), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4780), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [78757] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4786), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 26, + ACTIONS(3882), 23, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123797,8 +125067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123807,10 +125075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75143] = 3, + [78807] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 14, + ACTIONS(1288), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123821,13 +125089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1320), 25, + ACTIONS(1290), 25, sym__concat, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123847,20 +125113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, sym_test_operator, - [75190] = 3, + [78853] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 13, - anon_sym_EQ_EQ, + STATE(1718), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4775), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3886), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, @@ -123868,10 +125138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1296), 26, + ACTIONS(3888), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -123885,7 +125154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -123895,92 +125163,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75237] = 24, + [78903] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75326] = 3, + ACTIONS(1346), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1348), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [78949] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(1338), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1340), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + sym_test_operator, + [78995] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_concatenation_token1, + ACTIONS(4788), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1278), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [79047] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(1360), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [79093] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [79139] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1320), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -124004,10 +125424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75373] = 3, + [79185] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 14, + ACTIONS(1153), 1, + aux_sym_concatenation_token1, + ACTIONS(4790), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124018,13 +125444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1328), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1284), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124046,29 +125469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [75420] = 3, + [79237] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 13, - anon_sym_EQ_EQ, + ACTIONS(1316), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 26, + ACTIONS(1318), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -124092,10 +125513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75467] = 3, + [79283] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1316), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124106,13 +125527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 25, + ACTIONS(1318), 25, sym__concat, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124132,14 +125551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, sym_test_operator, - [75514] = 3, + [79329] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(4796), 1, + sym__concat, + ACTIONS(4794), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124150,13 +125572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, + ACTIONS(4792), 24, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124178,29 +125599,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75561] = 3, + anon_sym_COLON, + [79377] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 13, - anon_sym_EQ_EQ, + ACTIONS(1330), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 26, + ACTIONS(1332), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -124224,27 +125643,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75608] = 3, + [79423] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ_EQ, + ACTIONS(1288), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1340), 26, + ACTIONS(1290), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -124268,33 +125686,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75655] = 3, + [79469] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ_EQ, + STATE(1709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4798), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 26, + ACTIONS(1271), 23, sym_file_descriptor, - sym__concat, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124302,8 +125723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124312,81 +125731,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75702] = 3, + [79519] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 14, - anon_sym_EQ, + ACTIONS(1304), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 26, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [75749] = 5, + [79565] = 5, ACTIONS(63), 1, sym_comment, - STATE(1692), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, + ACTIONS(4801), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 24, + ACTIONS(1369), 24, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124398,79 +125814,62 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [75800] = 24, + [79615] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, + ACTIONS(1312), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(162), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4900), 1, anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1109), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75889] = 3, + sym_test_operator, + [79661] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 14, + ACTIONS(4804), 1, + sym__special_character, + STATE(1691), 1, + aux_sym__literal_repeat1, + ACTIONS(147), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124481,13 +125880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1348), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(350), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124507,170 +125903,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [75936] = 24, - ACTIONS(3), 1, + [79711] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + STATE(1718), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4775), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, + sym_word, + ACTIONS(1264), 24, + sym_file_descriptor, + sym_variable_name, sym__brace_start, - ACTIONS(4945), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(4818), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2204), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4943), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76025] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [79761] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, + ACTIONS(1312), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4032), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [79807] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 12, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [79853] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4806), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1271), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, sym_test_operator, - [76078] = 3, + [79903] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(4775), 1, + aux_sym_concatenation_token1, + ACTIONS(4809), 1, + sym__concat, + STATE(1746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [76125] = 3, + [79955] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 14, + ACTIONS(1296), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124681,13 +126143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 25, + ACTIONS(1298), 25, sym__concat, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124707,108 +126167,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, sym_test_operator, - [76172] = 3, + [80001] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 14, - anon_sym_EQ, + ACTIONS(1312), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [76219] = 3, + [80047] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 14, - anon_sym_EQ, + ACTIONS(1334), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 26, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [76266] = 6, + [80093] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4872), 1, - aux_sym_concatenation_token1, - ACTIONS(4947), 1, - sym__concat, - STATE(1703), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, + ACTIONS(1266), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -124821,8 +126274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 24, + ACTIONS(1271), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -124838,6 +126292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124846,15 +126301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76319] = 5, + [80139] = 3, ACTIONS(63), 1, sym_comment, - STATE(1693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4949), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, + ACTIONS(1300), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -124867,8 +126317,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 24, + ACTIONS(1302), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -124883,6 +126334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -124892,30 +126344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76370] = 6, + [80185] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4872), 1, - aux_sym_concatenation_token1, - ACTIONS(4952), 1, - sym__concat, - STATE(1703), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, + ACTIONS(1312), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 24, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -124923,7 +126370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124931,6 +126377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124939,37 +126387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76423] = 6, + [80231] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4786), 1, aux_sym_concatenation_token1, - ACTIONS(4954), 1, + ACTIONS(4811), 1, sym__concat, - STATE(1693), 1, + STATE(1709), 1, aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, + ACTIONS(1282), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 24, + ACTIONS(1284), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124977,7 +126425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124986,37 +126433,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76476] = 6, + [80283] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4786), 1, aux_sym_concatenation_token1, - ACTIONS(4956), 1, + ACTIONS(4813), 1, sym__concat, - STATE(1693), 1, + STATE(1709), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, + ACTIONS(1276), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1248), 24, + ACTIONS(1278), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -125024,7 +126471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125033,15 +126479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76529] = 5, + [80335] = 6, ACTIONS(63), 1, sym_comment, - STATE(1696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, + ACTIONS(4815), 1, aux_sym_concatenation_token1, - ACTIONS(1242), 12, + ACTIONS(4817), 1, + sym__concat, + STATE(1717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -125054,9 +126501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 24, + ACTIONS(1284), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -125079,18 +126525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [76580] = 7, + [80387] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4958), 1, - anon_sym_RBRACK, - ACTIONS(4960), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(1354), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125104,7 +126542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(1356), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125124,21 +126563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [76635] = 7, + [80433] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1137), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4962), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(4823), 1, + anon_sym_LBRACK, + ACTIONS(4821), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125152,7 +126587,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 22, + ACTIONS(4819), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125174,224 +126611,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [76690] = 24, - ACTIONS(3), 1, + anon_sym_COLON, + [80481] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(1296), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4828), 1, sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4966), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4618), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2232), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4964), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76779] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, + ACTIONS(1298), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(4970), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4617), 1, - sym_last_case_item, - ACTIONS(4818), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2230), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4968), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76868] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4974), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2223), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4972), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76957] = 5, + sym_test_operator, + [80527] = 5, ACTIONS(63), 1, sym_comment, - STATE(1703), 1, + STATE(1718), 1, aux_sym_concatenation_repeat1, - ACTIONS(4976), 2, + ACTIONS(4775), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1258), 12, + ACTIONS(3741), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 24, + ACTIONS(3743), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -125400,7 +126684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -125408,6 +126691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125416,146 +126700,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [77008] = 24, + [80577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4825), 1, + sym__concat, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1276), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(4828), 1, sym__special_character, - ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(4832), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, anon_sym_BQUOTE, - ACTIONS(4842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4981), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2236), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(4979), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77097] = 24, - ACTIONS(3), 1, + sym_test_operator, + [80629] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4985), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2227), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4983), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77186] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4987), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(1292), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125569,7 +126763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 23, + ACTIONS(1294), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125589,179 +126784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [77239] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4989), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 23, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [77294] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4989), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 23, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [77349] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, + aux_sym_concatenation_token1, sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2052), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77435] = 6, + [80675] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4995), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, + ACTIONS(1358), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125775,7 +126806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1254), 22, + ACTIONS(1360), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125795,73 +126827,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [77487] = 5, + [80721] = 5, ACTIONS(63), 1, sym_comment, - STATE(1710), 1, + STATE(1726), 1, aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, + ACTIONS(4786), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, + ACTIONS(1262), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1264), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [77537] = 3, + [80771] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 12, + STATE(1776), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4775), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3745), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 26, + ACTIONS(3747), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -125869,7 +126906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -125877,7 +126913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125886,286 +126922,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [77583] = 3, + [80821] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, + ACTIONS(1338), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 26, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [77629] = 23, + [80867] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1348), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1159), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1163), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2051), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77715] = 8, + sym_test_operator, + [80913] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4997), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - STATE(4232), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, + ACTIONS(1358), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1360), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [77771] = 8, + [80959] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5009), 1, - anon_sym_RPAREN_RPAREN, - STATE(4293), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, + ACTIONS(1296), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [77827] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1298), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1159), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1163), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, + [81005] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4773), 1, sym__special_character, - STATE(1831), 1, + STATE(1711), 1, aux_sym__literal_repeat1, - STATE(2056), 1, - sym__expression, - ACTIONS(1149), 2, + ACTIONS(149), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(182), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77913] = 8, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [81055] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5011), 1, - anon_sym_RPAREN_RPAREN, - STATE(4266), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4827), 1, + sym__special_character, + STATE(1742), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126179,7 +127160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1369), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126197,60 +127180,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [77969] = 8, + [81105] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5013), 1, - anon_sym_RPAREN_RPAREN, - STATE(4249), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, + ACTIONS(4773), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(3649), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3651), 24, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [78025] = 3, + [81155] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1300), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126263,7 +127245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -126290,23 +127272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78071] = 3, + [81201] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1354), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 26, + ACTIONS(1356), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -126316,7 +127298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126325,6 +127306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126333,64 +127315,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78117] = 3, + [81247] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, + STATE(1746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4830), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1271), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [78163] = 8, + [81297] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5015), 1, - anon_sym_RPAREN_RPAREN, - STATE(4222), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1262), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126404,7 +127377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1264), 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126422,12 +127397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, sym_test_operator, - [78219] = 3, + [81343] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 13, + ACTIONS(1266), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126441,9 +127420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1320), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1271), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126463,125 +127441,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [78265] = 23, + [81389] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(1330), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1929), 1, - sym__expression, - ACTIONS(598), 2, + sym_word, + ACTIONS(1332), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78351] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5017), 1, - anon_sym_RPAREN_RPAREN, - STATE(4268), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [78407] = 3, + [81435] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1308), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126594,7 +127505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1296), 26, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -126621,33 +127532,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78453] = 3, + [81481] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + STATE(1777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4815), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3850), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1340), 26, + ACTIONS(3854), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126655,7 +127568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126664,28 +127577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78499] = 5, + [81531] = 5, ACTIONS(63), 1, sym_comment, - STATE(1780), 1, + STATE(1727), 1, aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, + ACTIONS(4815), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1242), 12, + ACTIONS(3858), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 23, + ACTIONS(3860), 23, sym_file_descriptor, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -126693,7 +127606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126701,6 +127613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126709,21 +127622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78549] = 8, + [81581] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5021), 1, - anon_sym_RPAREN_RPAREN, - STATE(4205), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1334), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126737,7 +127639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1336), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126755,31 +127660,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [78605] = 5, + [81627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(145), 12, - anon_sym_EQ_EQ, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(178), 24, + ACTIONS(1340), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -126793,80 +127698,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [78655] = 8, + [81673] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5025), 1, - anon_sym_RPAREN_RPAREN, - STATE(4246), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, + ACTIONS(1292), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [78711] = 3, + [81719] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + STATE(1777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4815), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1264), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [81769] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1350), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1300), 26, + ACTIONS(1352), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -126876,7 +127822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -126885,18 +127830,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [81815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4833), 1, + sym__concat, + STATE(1312), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1282), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [78757] = 3, + [81867] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126910,9 +127902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1328), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1264), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126932,88 +127924,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [78803] = 23, - ACTIONS(63), 1, + [81913] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, + ACTIONS(4258), 1, + aux_sym_concatenation_token1, + ACTIONS(4260), 1, + sym__concat, + STATE(1732), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, + sym__brace_start, + ACTIONS(1262), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, + sym_test_operator, + [81965] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1288), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(162), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1290), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(1101), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(1105), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(4900), 1, + [82011] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1320), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2107), 1, - sym__expression, - ACTIONS(1095), 2, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1143), 2, + sym_test_operator, + [82057] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78889] = 8, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [82103] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5027), 1, - anon_sym_RPAREN_RPAREN, - STATE(4212), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1300), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127027,7 +128120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1302), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127045,23 +128141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [78945] = 8, + [82149] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5029), 1, - anon_sym_RPAREN_RPAREN, - STATE(4158), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4839), 1, + sym__concat, + ACTIONS(4837), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127075,7 +128165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4835), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127094,65 +128188,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [79001] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [82197] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(4845), 1, + sym__concat, + ACTIONS(4843), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4841), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79047] = 8, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [82245] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5031), 1, - anon_sym_RPAREN_RPAREN, - STATE(4230), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + STATE(1703), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1153), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127166,7 +128256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127185,212 +128277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [79103] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5033), 1, - sym_word, - ACTIONS(5037), 1, - sym_test_operator, - STATE(1655), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5035), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1973), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1657), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79191] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2085), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79277] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2139), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79363] = 8, + [82295] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5039), 1, - anon_sym_RPAREN_RPAREN, - STATE(4178), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1308), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127404,7 +128296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1310), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127422,12 +128317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [79419] = 3, + [82341] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5043), 13, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127438,12 +128336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5041), 25, + ACTIONS(1264), 24, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127465,17 +128363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + sym__special_character, sym_test_operator, - [79465] = 5, + [82387] = 3, ACTIONS(63), 1, sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 11, + ACTIONS(1304), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -127486,9 +128379,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 24, + ACTIONS(1306), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -127503,6 +128398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -127512,129 +128408,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79515] = 3, + [82433] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1304), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1306), 25, sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79561] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(2003), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79647] = 3, + [82479] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(1308), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1316), 26, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -127644,7 +128477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -127653,6 +128485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127661,10 +128494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [79693] = 3, + [82525] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5049), 13, + ACTIONS(1312), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127678,9 +128511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5047), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1314), 25, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127700,25 +128532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, sym_test_operator, - [79739] = 8, + [82571] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5051), 1, - anon_sym_RPAREN_RPAREN, - STATE(4198), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127732,7 +128554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1332), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127750,23 +128575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [79795] = 8, + [82617] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5053), 1, - anon_sym_RPAREN_RPAREN, - STATE(4193), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1312), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127780,7 +128597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1314), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127798,212 +128618,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [79851] = 23, + [82663] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(4775), 1, + aux_sym_concatenation_token1, + ACTIONS(4847), 1, + sym__concat, + STATE(1746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2125), 1, - sym__expression, - ACTIONS(1149), 2, + sym_word, + ACTIONS(1284), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79937] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2122), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80023] = 23, + sym_test_operator, + [82715] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, + ACTIONS(4815), 1, + aux_sym_concatenation_token1, + ACTIONS(4849), 1, + sym__concat, + STATE(1717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(162), 1, aux_sym_number_token1, - ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1278), 23, + sym_file_descriptor, sym__brace_start, - ACTIONS(1101), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1105), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2038), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80109] = 8, + sym_test_operator, + [82767] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5055), 1, - anon_sym_RPAREN_RPAREN, - STATE(4234), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1350), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128017,7 +128732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1352), 25, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128035,17 +128753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, sym_test_operator, - [80165] = 5, + [82813] = 3, ACTIONS(63), 1, sym_comment, - STATE(1790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4036), 12, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128058,8 +128774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4038), 23, + ACTIONS(1336), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -128073,6 +128791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -128082,10 +128801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80215] = 3, + [82859] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1266), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128098,7 +128817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 26, + ACTIONS(1271), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -128125,15 +128844,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80261] = 5, + [82905] = 5, ACTIONS(63), 1, sym_comment, - STATE(1788), 1, + STATE(1726), 1, aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, + ACTIONS(4786), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4032), 12, + ACTIONS(3886), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3888), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [82955] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128144,10 +128903,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4034), 23, + ACTIONS(1294), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -128161,6 +128921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -128170,21 +128931,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80311] = 8, + [83000] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5059), 1, - anon_sym_RPAREN_RPAREN, - STATE(4255), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(1308), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [83045] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4794), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128198,7 +128990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4792), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128217,22 +129013,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [83090] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1304), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [83135] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [80367] = 8, + [83180] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4851), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5061), 1, - anon_sym_RPAREN_RPAREN, - STATE(4176), 1, + STATE(3961), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128246,7 +129127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128265,85 +129146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [80423] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2133), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80509] = 8, + [83235] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5063), 1, + ACTIONS(4863), 1, anon_sym_RPAREN_RPAREN, - STATE(4218), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(4875), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4865), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128357,7 +129176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128368,45 +129187,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, sym_test_operator, - [80565] = 5, + [83290] = 3, ACTIONS(63), 1, sym_comment, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 12, + ACTIONS(1296), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3987), 23, + ACTIONS(1298), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -128414,6 +129225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128422,93 +129235,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80615] = 24, + [83335] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(3653), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5065), 1, sym_word, - ACTIONS(5069), 1, - sym_test_operator, - STATE(1604), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, + ACTIONS(3655), 25, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5067), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2028), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1603), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80703] = 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [83380] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3663), 12, - anon_sym_EQ_EQ, + STATE(1895), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4877), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3665), 24, + ACTIONS(1264), 23, sym_file_descriptor, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -128522,19 +129312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80753] = 3, + [83429] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(1266), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128545,9 +129335,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1340), 26, + ACTIONS(1271), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -128574,10 +129363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80799] = 3, + [83474] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(4879), 1, + sym__special_character, + STATE(1799), 1, + aux_sym__literal_repeat1, + ACTIONS(3692), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128587,10 +129380,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 26, + ACTIONS(3694), 24, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [83523] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1336), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -128617,21 +129449,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [80845] = 8, + [83568] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [83613] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5071), 1, + ACTIONS(4881), 1, anon_sym_RPAREN_RPAREN, - STATE(4188), 1, + STATE(3928), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128645,7 +129519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128664,124 +129538,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [80901] = 23, + [83668] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2075), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80987] = 5, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4883), 1, + anon_sym_RPAREN_RPAREN, + STATE(4007), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [83723] = 8, ACTIONS(63), 1, sym_comment, - STATE(1780), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 12, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(4875), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4865), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4869), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [81037] = 5, + [83778] = 5, ACTIONS(63), 1, sym_comment, - STATE(1827), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 11, + ACTIONS(4887), 1, + sym__special_character, + STATE(1799), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128791,9 +129649,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3839), 24, + ACTIONS(1369), 24, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -128809,24 +129667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81087] = 5, + [83827] = 3, ACTIONS(63), 1, sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 11, + ACTIONS(1304), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -128838,8 +129691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3843), 24, + ACTIONS(1306), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -128854,6 +129708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -128863,36 +129718,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81137] = 5, + [83872] = 8, ACTIONS(63), 1, sym_comment, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5073), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4890), 1, + anon_sym_RPAREN_RPAREN, + STATE(3942), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [83927] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1251), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 23, + ACTIONS(1260), 25, sym_file_descriptor, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -128900,92 +129797,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81187] = 23, + [83972] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2037), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81273] = 8, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_RPAREN_RPAREN, + STATE(4064), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [84027] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5076), 1, + ACTIONS(4894), 1, anon_sym_RPAREN_RPAREN, - STATE(4166), 1, + STATE(4036), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -128999,7 +129882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129018,11 +129901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [81329] = 3, + [84082] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1304), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129035,10 +129917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 26, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129062,21 +129943,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81375] = 8, + [84127] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5078), 1, + ACTIONS(1354), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1356), 24, anon_sym_RPAREN_RPAREN, - STATE(4291), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [84172] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129090,7 +130002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1332), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129109,38 +130025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [81431] = 6, + anon_sym_QMARK, + anon_sym_COLON, + [84217] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5019), 1, - aux_sym_concatenation_token1, - ACTIONS(5080), 1, - sym__concat, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 23, + ACTIONS(1336), 25, sym_file_descriptor, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129148,6 +130059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129156,93 +130069,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81483] = 23, + [84262] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(1266), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2128), 1, - sym__expression, - ACTIONS(1149), 2, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1271), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1167), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81569] = 6, + sym_test_operator, + [84307] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5019), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(4648), 1, + anon_sym_RBRACK, + ACTIONS(4896), 1, sym__concat, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [84356] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4898), 1, + sym__special_character, + STATE(1811), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 23, + ACTIONS(1369), 25, sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129261,25 +130194,57 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81621] = 8, + [84405] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5084), 1, + ACTIONS(1358), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1360), 24, anon_sym_RPAREN_RPAREN, - STATE(4208), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [84450] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129293,7 +130258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(1348), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129312,33 +130281,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [84495] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4903), 1, + anon_sym_RPAREN, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(4865), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4869), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [81677] = 3, + [84546] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1334), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 26, + ACTIONS(1336), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129347,7 +130362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129356,15 +130370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81723] = 5, + [84591] = 3, ACTIONS(63), 1, sym_comment, - STATE(1788), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, + ACTIONS(1296), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129377,8 +130386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 23, + ACTIONS(1298), 25, sym_file_descriptor, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129392,6 +130402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -129401,10 +130412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81773] = 3, + [84636] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 12, + ACTIONS(1266), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129417,10 +130428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1320), 26, + ACTIONS(1271), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129444,205 +130454,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [81819] = 23, + [84681] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2080), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81905] = 23, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4905), 1, + anon_sym_RPAREN_RPAREN, + STATE(3962), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [84736] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2140), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81991] = 23, + ACTIONS(4782), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4780), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [84781] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, + ACTIONS(4727), 1, + anon_sym_RBRACK, + ACTIONS(4907), 1, + sym__concat, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2060), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82077] = 6, + [84830] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5057), 1, - aux_sym_concatenation_token1, - ACTIONS(5086), 1, - sym__concat, - STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, + ACTIONS(1338), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129655,8 +130603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1248), 23, + ACTIONS(1340), 25, sym_file_descriptor, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129670,6 +130619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -129679,32 +130629,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82129] = 3, + [84875] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1296), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1296), 26, + ACTIONS(1298), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129713,7 +130663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129722,16 +130671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82175] = 6, + [84920] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5057), 1, - aux_sym_concatenation_token1, - ACTIONS(5088), 1, - sym__concat, + ACTIONS(4879), 1, + sym__special_character, STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, + aux_sym__literal_repeat1, + ACTIONS(3741), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -129741,11 +130688,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 23, + ACTIONS(3743), 24, sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -129759,32 +130706,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82227] = 3, + [84969] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4915), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4909), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4913), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [85018] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1288), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1328), 26, + ACTIONS(1290), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -129794,7 +130784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129803,6 +130792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129811,33 +130801,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82273] = 3, + [85063] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4917), 1, + anon_sym_RPAREN_RPAREN, + STATE(4016), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [85118] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4915), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4909), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4913), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [85167] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 26, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -129846,6 +130925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129854,56 +130934,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82319] = 6, - ACTIONS(3), 1, + [85212] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(5090), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1338), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 25, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(1252), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [82371] = 3, + [85257] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4919), 1, + anon_sym_RPAREN_RPAREN, + STATE(4025), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -129917,11 +131004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5092), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129940,56 +131023,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [82417] = 3, + [85312] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(4923), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1300), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4921), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82463] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [85357] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130003,8 +131082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1286), 25, - sym__concat, + sym__special_character, + ACTIONS(1264), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -130027,126 +131106,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [82509] = 6, - ACTIONS(3), 1, + [85402] = 8, + ACTIONS(63), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(5096), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4925), 1, + anon_sym_RPAREN_RPAREN, + STATE(3931), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [82561] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82647] = 5, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [85457] = 3, ACTIONS(63), 1, sym_comment, - STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5098), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, + ACTIONS(1308), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130159,8 +131170,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 23, + ACTIONS(1310), 25, sym_file_descriptor, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -130174,6 +131186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -130183,10 +131196,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82697] = 3, + [85502] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4927), 1, + anon_sym_RPAREN_RPAREN, + STATE(4012), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [85557] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130197,9 +131257,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1304), 26, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -130226,84 +131285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [82743] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2100), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82829] = 8, + [85602] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5101), 1, + ACTIONS(4929), 1, anon_sym_RPAREN_RPAREN, - STATE(4165), 1, + STATE(4027), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130317,7 +131313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130336,97 +131332,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [82885] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2181), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82971] = 3, + [85657] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(3540), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 26, + ACTIONS(3542), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130434,42 +131364,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83017] = 3, + [85702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1292), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 26, + ACTIONS(1294), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130478,6 +131407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130486,73 +131416,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83063] = 23, + [85747] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, + ACTIONS(4751), 1, + anon_sym_RBRACK, + ACTIONS(4931), 1, + sym__concat, + ACTIONS(1253), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2097), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83149] = 3, + [85796] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 12, + STATE(1894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4877), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130563,12 +131479,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1312), 26, + ACTIONS(3882), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -130582,7 +131495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -130592,73 +131504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83195] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2130), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83281] = 3, + [85845] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 12, + STATE(1895), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4877), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3886), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130669,12 +131523,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1316), 26, + ACTIONS(3888), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -130688,7 +131539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -130698,10 +131548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83327] = 3, + [85894] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4933), 1, + anon_sym_RPAREN_RPAREN, + STATE(4010), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130715,8 +131576,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1296), 25, - sym__concat, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [85949] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4937), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4935), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -130736,83 +131634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [83373] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1990), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83459] = 5, + anon_sym_COLON, + [85994] = 3, ACTIONS(63), 1, sym_comment, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5103), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 11, + ACTIONS(1288), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -130823,10 +131651,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 24, + ACTIONS(1290), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -130840,6 +131669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -130849,10 +131679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83509] = 3, + [86039] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4939), 1, + anon_sym_RPAREN_RPAREN, + STATE(3951), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -130866,10 +131707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1274), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130887,101 +131725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [83555] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1989), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83641] = 3, + [86094] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(1316), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 26, + ACTIONS(1318), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -130990,6 +131759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130998,10 +131768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83687] = 3, + [86139] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1308), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -131014,10 +131784,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 26, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -131041,84 +131810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [83733] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2144), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83819] = 8, + [86184] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5106), 1, + ACTIONS(4941), 1, anon_sym_RPAREN_RPAREN, - STATE(4256), 1, + STATE(3955), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131132,7 +131838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131151,86 +131857,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [83875] = 24, - ACTIONS(63), 1, + [86239] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(4945), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, + STATE(2643), 1, + sym_string, + ACTIONS(1237), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4947), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4943), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, - sym_test_operator, - STATE(1699), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5110), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1974), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1698), 9, - sym_arithmetic_expansion, - sym_brace_expression, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86292] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4945), 1, + anon_sym_DQUOTE, + STATE(2643), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83963] = 8, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4947), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4943), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86345] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5114), 1, + ACTIONS(4949), 1, anon_sym_RPAREN_RPAREN, - STATE(4204), 1, + STATE(4046), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131244,7 +131977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131263,22 +131996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84019] = 8, + [86400] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5116), 1, - anon_sym_RPAREN_RPAREN, - STATE(4179), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4937), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131292,7 +132013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4935), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131311,54 +132036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84075] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84121] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [86445] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + ACTIONS(4953), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131369,12 +132052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 24, + ACTIONS(4951), 24, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -131396,16 +132079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [84167] = 5, + anon_sym_COLON, + [86490] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5118), 1, - sym__special_character, - STATE(1824), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, + sym__concat, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131419,7 +132101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1357), 23, + ACTIONS(1373), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -131439,25 +132121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [84217] = 8, + [86539] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5121), 1, - anon_sym_RPAREN_RPAREN, - STATE(4236), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4959), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131471,7 +132141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4957), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131490,102 +132164,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84273] = 5, + anon_sym_QMARK, + anon_sym_COLON, + [86584] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3673), 12, - anon_sym_EQ_EQ, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4961), 1, + anon_sym_RPAREN_RPAREN, + STATE(3967), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3675), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84323] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5045), 1, - aux_sym_concatenation_token1, - ACTIONS(5123), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 11, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84375] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [86639] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + ACTIONS(4965), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131599,9 +132230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 24, - sym__concat, + ACTIONS(4963), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -131621,25 +132252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [84421] = 8, + anon_sym_COLON, + [86684] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5125), 1, + ACTIONS(4967), 1, anon_sym_RPAREN_RPAREN, - STATE(4277), 1, + STATE(4052), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131653,7 +132283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131672,31 +132302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84477] = 6, + [86739] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5045), 1, - aux_sym_concatenation_token1, - ACTIONS(5127), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 11, + ACTIONS(1262), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 24, + ACTIONS(1264), 25, sym_file_descriptor, - sym_variable_name, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -131715,18 +132339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84529] = 5, + [86784] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5129), 1, - sym__special_character, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(4702), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131740,7 +132361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 23, + ACTIONS(4700), 24, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -131760,14 +132382,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [84579] = 3, + [86829] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(4719), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4717), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [86874] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1288), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -131780,10 +132444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1336), 26, + ACTIONS(1290), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -131807,23 +132470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84625] = 3, + [86919] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 12, + ACTIONS(1316), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1332), 26, + ACTIONS(1318), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -131833,7 +132495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -131842,6 +132503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131850,64 +132512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [84671] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [84717] = 8, + [86964] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5131), 1, + ACTIONS(4969), 1, anon_sym_RPAREN_RPAREN, - STATE(4185), 1, + STATE(3943), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -131921,7 +132540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131940,85 +132559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84773] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84859] = 8, + [87019] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5133), 1, - anon_sym_RPAREN_RPAREN, - STATE(4173), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4719), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132032,7 +132576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4717), 24, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132050,23 +132597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [84915] = 8, + [87064] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5135), 1, + ACTIONS(4971), 1, anon_sym_RPAREN_RPAREN, - STATE(4189), 1, + STATE(4034), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132080,7 +132629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132099,11 +132648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [84971] = 3, + [87119] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4799), 13, + ACTIONS(4973), 6, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132117,11 +132672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4797), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132140,119 +132691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [85017] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2102), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85149] = 3, + [87166] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4975), 1, + anon_sym_RPAREN_RPAREN, + STATE(4044), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132266,10 +132719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132287,26 +132737,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85195] = 8, + [87221] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5137), 1, + ACTIONS(4977), 1, anon_sym_RPAREN_RPAREN, - STATE(4250), 1, + STATE(4050), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132320,7 +132766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132339,33 +132785,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [85251] = 3, + [87276] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 12, + ACTIONS(1300), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1320), 26, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -132374,7 +132819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132383,60 +132827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85297] = 3, + [87321] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85343] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5139), 6, + ACTIONS(4979), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + STATE(3954), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132450,7 +132855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132469,117 +132874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [85391] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1967), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85477] = 3, + [87376] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5141), 25, - anon_sym_RPAREN_RPAREN, + ACTIONS(4853), 1, anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4981), 1, + anon_sym_RPAREN_RPAREN, + STATE(4059), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [85523] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132593,10 +132902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132614,26 +132920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85569] = 8, + [87431] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5145), 1, + ACTIONS(4983), 1, anon_sym_RPAREN_RPAREN, - STATE(4219), 1, + STATE(4026), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132647,7 +132949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132666,33 +132968,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [85625] = 3, + [87486] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1292), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1328), 26, + ACTIONS(1294), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -132701,7 +133002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132710,10 +133010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85671] = 3, + [87531] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_RPAREN_RPAREN, + STATE(3958), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132727,10 +133038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132748,83 +133056,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85717] = 3, + [87586] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ, + ACTIONS(1316), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [85763] = 5, + [87631] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5147), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 12, - anon_sym_EQ_EQ, + ACTIONS(1350), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1357), 24, + ACTIONS(1352), 25, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -132832,82 +133132,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [85813] = 23, + [87676] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, + ACTIONS(1320), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(162), 1, aux_sym_number_token1, - ACTIONS(164), 1, aux_sym_number_token2, - ACTIONS(168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1985), 1, - sym__expression, - ACTIONS(1095), 2, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1109), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85899] = 3, + sym_test_operator, + [87721] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4987), 1, + anon_sym_RPAREN_RPAREN, + STATE(3937), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -132921,10 +133211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1263), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132942,247 +133229,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85945] = 3, + [87776] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ, + ACTIONS(1320), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85991] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86077] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2063), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86163] = 23, + sym_test_operator, + [87821] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + STATE(1882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2106), 1, - sym__expression, - ACTIONS(1149), 2, + sym_word, + ACTIONS(1271), 23, + sym_file_descriptor, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1167), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86249] = 3, + sym_test_operator, + [87870] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5152), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4992), 1, + anon_sym_RPAREN_RPAREN, + STATE(4031), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133196,11 +133344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5150), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133219,13 +133363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86295] = 3, + [87925] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5152), 13, + ACTIONS(1262), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133239,9 +133380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5150), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1264), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -133261,25 +133401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [86341] = 8, + [87970] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5154), 1, + ACTIONS(4994), 1, anon_sym_RPAREN_RPAREN, - STATE(4274), 1, + STATE(3932), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133293,7 +133433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133312,11 +133452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [86397] = 3, + [88025] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1330), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -133329,10 +133468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 26, + ACTIONS(1332), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -133356,10 +133494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [86443] = 3, + [88070] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1330), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -133370,9 +133508,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 26, + ACTIONS(1332), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -133399,21 +133536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [86489] = 8, + [88115] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4875), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(4885), 1, anon_sym_RPAREN_RPAREN, - STATE(4238), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4996), 1, + anon_sym_RPAREN, + ACTIONS(4867), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4865), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133427,7 +133566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133438,19 +133577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, sym_test_operator, - [86545] = 3, + [88170] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1350), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133464,7 +133600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1274), 25, + ACTIONS(1352), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133489,85 +133625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym_test_operator, - [86591] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2149), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86677] = 8, + [88215] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_RPAREN_RPAREN, - STATE(4276), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(5000), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133581,7 +133642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4998), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133600,74 +133665,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [86733] = 23, + anon_sym_QMARK, + anon_sym_COLON, + [88260] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(1354), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2054), 1, - sym__expression, - ACTIONS(1149), 2, + sym_word, + ACTIONS(1356), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1167), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86819] = 3, + sym_test_operator, + [88305] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5002), 1, + anon_sym_RPAREN_RPAREN, + STATE(4065), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133681,11 +133737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5160), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133704,24 +133756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86865] = 8, + [88360] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5164), 1, + ACTIONS(5004), 1, anon_sym_RPAREN_RPAREN, - STATE(4195), 1, + STATE(3935), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133735,7 +133784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133754,22 +133803,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + [88415] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4877), 1, + aux_sym_concatenation_token1, + ACTIONS(5006), 1, + sym__concat, + STATE(1882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1284), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [88466] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4877), 1, + aux_sym_concatenation_token1, + ACTIONS(5008), 1, + sym__concat, + STATE(1882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [86921] = 8, + [88517] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5166), 1, + ACTIONS(5010), 1, anon_sym_RPAREN_RPAREN, - STATE(4282), 1, + STATE(3949), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133783,7 +133921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133802,22 +133940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [86977] = 8, + [88572] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5168), 1, + ACTIONS(5012), 1, anon_sym_RPAREN_RPAREN, - STATE(4253), 1, + STATE(3956), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133831,7 +133968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133850,11 +133987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [87033] = 3, + [88627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(1312), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -133867,10 +134003,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 26, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -133894,10 +134029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [87079] = 3, + [88672] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1312), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -133910,10 +134045,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1348), 26, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -133937,10 +134071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [87125] = 3, + [88717] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(5016), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -133954,8 +134088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1278), 25, - sym__concat, + ACTIONS(5014), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -133975,72 +134110,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87171] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + [88762] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, + ACTIONS(1358), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 25, sym_file_descriptor, + sym__concat, sym__brace_start, - ACTIONS(3985), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [87223] = 8, + [88807] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5170), 1, + ACTIONS(5018), 1, anon_sym_RPAREN_RPAREN, - STATE(4270), 1, + STATE(4022), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134054,7 +134183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134073,100 +134202,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [87279] = 6, - ACTIONS(3), 1, + [88862] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, + ACTIONS(1312), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(3989), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [87331] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1316), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [87377] = 3, + [88907] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 12, + ACTIONS(1312), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -134177,9 +134258,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 26, + ACTIONS(1314), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -134206,116 +134286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [87423] = 3, + [88952] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 25, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_RPAREN_RPAREN, + STATE(3964), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - sym_test_operator, - [87469] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(2004), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87555] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134329,10 +134314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1282), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134350,26 +134332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87601] = 8, + [89007] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5172), 1, + ACTIONS(5022), 1, anon_sym_RPAREN_RPAREN, - STATE(4209), 1, + STATE(3986), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134383,7 +134361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134402,22 +134380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [87657] = 8, + [89062] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5174), 1, - anon_sym_RPAREN_RPAREN, - STATE(4272), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4915), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 5, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4909), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134431,7 +134407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4913), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134442,145 +134418,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, sym_test_operator, - [87713] = 23, + [89111] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2093), 1, - sym__expression, - ACTIONS(598), 2, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1348), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(631), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87799] = 23, + sym_test_operator, + [89156] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, + ACTIONS(1358), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2096), 1, - sym__expression, - ACTIONS(598), 2, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1360), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(631), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87885] = 3, + sym_test_operator, + [89201] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5024), 1, + anon_sym_RPAREN_RPAREN, + STATE(4017), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134594,10 +134536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1320), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134615,40 +134554,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87931] = 5, + [89256] = 3, ACTIONS(63), 1, sym_comment, - STATE(1827), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 11, + ACTIONS(1320), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3987), 24, + ACTIONS(1322), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -134656,7 +134588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134665,10 +134597,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [87981] = 3, + [89301] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5026), 1, + anon_sym_RPAREN_RPAREN, + STATE(3966), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [89356] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -134679,9 +134658,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1336), 26, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -134708,10 +134686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [88027] = 3, + [89401] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 12, + ACTIONS(1358), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -134722,9 +134700,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1332), 26, + ACTIONS(1360), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -134751,15 +134728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [88073] = 5, + [89446] = 3, ACTIONS(63), 1, sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 11, + ACTIONS(1354), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -134770,10 +134742,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3991), 24, + ACTIONS(1356), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -134787,6 +134760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -134796,84 +134770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [88123] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2062), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88209] = 8, + [89491] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5176), 1, + ACTIONS(5028), 1, anon_sym_RPAREN_RPAREN, - STATE(4284), 1, + STATE(4006), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134887,7 +134798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134906,22 +134817,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + [89546] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [88265] = 8, + [89591] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5178), 1, + ACTIONS(5030), 1, anon_sym_RPAREN_RPAREN, - STATE(4283), 1, + STATE(3981), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -134935,7 +134887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134954,74 +134906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [88321] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2057), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88407] = 3, + [89646] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4866), 13, + ACTIONS(4953), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135035,7 +134923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4864), 25, + ACTIONS(4951), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -135060,11 +134948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym_test_operator, - [88453] = 3, + [89691] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 13, + ACTIONS(1320), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135078,8 +134965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1312), 25, - sym__concat, + ACTIONS(1322), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -135099,15 +134987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [88499] = 3, + anon_sym_COLON, + [89736] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 12, + ACTIONS(1350), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -135120,10 +135006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1324), 26, + ACTIONS(1352), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -135147,107 +135032,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [88545] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [88591] = 3, + [89781] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, + ACTIONS(1354), 11, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 25, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1356), 26, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [88637] = 8, + [89826] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5180), 1, + ACTIONS(5032), 1, anon_sym_RPAREN_RPAREN, - STATE(4206), 1, + STATE(3971), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135261,7 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135280,22 +135121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [88693] = 8, + [89881] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5182), 1, + ACTIONS(5034), 1, anon_sym_RPAREN_RPAREN, - STATE(4260), 1, + STATE(4014), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135309,7 +135149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135328,74 +135168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [88749] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2163), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88835] = 3, + [89936] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 13, + ACTIONS(5038), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135409,8 +135185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1324), 25, - sym__concat, + ACTIONS(5036), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -135430,15 +135207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [88881] = 3, + anon_sym_COLON, + [89981] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(5042), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135452,7 +135227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1332), 25, + ACTIONS(5040), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -135477,22 +135252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym_test_operator, - [88927] = 8, + [90026] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5184), 1, + ACTIONS(5044), 1, anon_sym_RPAREN_RPAREN, - STATE(4252), 1, + STATE(3998), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135506,7 +135280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135525,15 +135299,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + [90081] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1350), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1352), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [90126] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [88983] = 5, + [90171] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5046), 1, sym__special_character, - STATE(1910), 1, + STATE(1811), 1, aux_sym__literal_repeat1, - ACTIONS(1352), 13, + ACTIONS(3886), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3888), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [90220] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4621), 1, + anon_sym_RBRACK, + ACTIONS(5048), 1, + sym__concat, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135547,7 +135448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1357), 23, + ACTIONS(1373), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -135567,252 +135468,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [89033] = 8, + [90269] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5189), 1, - anon_sym_RPAREN_RPAREN, - STATE(4235), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, + ACTIONS(1312), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [89089] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(246), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(248), 1, aux_sym_number_token2, - ACTIONS(252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2092), 1, - sym__expression, - ACTIONS(1149), 2, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1167), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89175] = 24, + sym_test_operator, + [90314] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(1346), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, anon_sym_BQUOTE, - ACTIONS(5191), 1, sym_word, - ACTIONS(5195), 1, - sym_test_operator, - STATE(1585), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, + ACTIONS(1348), 25, + sym_file_descriptor, + sym__concat, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5193), 2, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1982), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1587), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89263] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2129), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89349] = 3, + sym_test_operator, + [90359] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5050), 1, + anon_sym_RPAREN_RPAREN, + STATE(3993), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135826,11 +135583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1344), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135849,13 +135602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89395] = 3, + [90414] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5052), 1, + anon_sym_RPAREN_RPAREN, + STATE(4033), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -135869,11 +135630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135892,185 +135649,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89441] = 23, + [90469] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2120), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5054), 1, + anon_sym_RPAREN, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(4865), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [89579] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4869), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1629), 1, - sym__expression, - STATE(1831), 1, - aux_sym__literal_repeat1, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89665] = 3, + [90520] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 13, + ACTIONS(5054), 1, + anon_sym_RPAREN, + ACTIONS(4871), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(4865), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136084,10 +135722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136098,33 +135733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, sym_test_operator, - [89711] = 8, + [90571] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5197), 1, + ACTIONS(5056), 1, anon_sym_RPAREN_RPAREN, - STATE(4289), 1, + STATE(4009), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136138,7 +135767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136157,78 +135786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [89767] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89853] = 5, + [90626] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5199), 1, - sym__special_character, - STATE(1824), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5058), 1, + anon_sym_RPAREN_RPAREN, + STATE(3980), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136242,9 +135814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(600), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136262,14 +135832,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [89903] = 3, + [90681] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(5203), 13, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5060), 1, + anon_sym_RPAREN_RPAREN, + STATE(4037), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136283,11 +135861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5201), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136306,13 +135880,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + [90736] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1262), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1264), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [89949] = 3, + [90780] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5207), 13, + ACTIONS(5066), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5062), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136326,11 +135947,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5205), 25, + ACTIONS(5064), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [90828] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4885), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5074), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5072), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5068), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5070), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136341,27 +136003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, sym_test_operator, - [89995] = 6, + [90880] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(5209), 1, + ACTIONS(5076), 1, sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, + ACTIONS(4794), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136375,7 +136028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 22, + ACTIONS(4792), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -136395,24 +136048,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [90047] = 8, + [90926] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, + ACTIONS(5086), 1, + anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_QMARK, - ACTIONS(5211), 1, - anon_sym_RPAREN_RPAREN, - STATE(4170), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, + ACTIONS(5080), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5078), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136426,7 +136079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(5082), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136437,32 +136090,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, sym_test_operator, - [90103] = 3, + [90978] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1300), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -136471,7 +136120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -136480,6 +136128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136488,10 +136137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90148] = 3, + [91022] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 13, + ACTIONS(1253), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -136505,8 +136154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4884), 24, - sym__concat, + ACTIONS(1373), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -136526,158 +136174,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [90193] = 3, + [91066] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 12, + ACTIONS(5094), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5090), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 25, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5092), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [91114] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4706), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4704), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym_test_operator, + [91158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5098), 1, + anon_sym_DQUOTE, + STATE(2716), 1, + sym_string, + ACTIONS(5100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5096), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90238] = 5, + anon_sym_AMP, + [91210] = 5, ACTIONS(63), 1, sym_comment, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5213), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 11, + ACTIONS(5094), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5090), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 23, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5092), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [91258] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5098), 1, + anon_sym_DQUOTE, + STATE(2716), 1, + sym_string, + ACTIONS(5100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5096), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_AMP, + [91310] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(77), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5102), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5066), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5062), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5064), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [90287] = 6, + [91362] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5216), 1, - aux_sym_concatenation_token1, - ACTIONS(5218), 1, - sym__concat, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 11, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5112), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5104), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5106), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [91414] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5114), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(4855), 13, + anon_sym_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4859), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [91464] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5116), 1, + anon_sym_LBRACK, + ACTIONS(4821), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4819), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [91510] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_QMARK, + ACTIONS(5118), 1, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5078), 13, + anon_sym_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [90338] = 3, + [91562] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1304), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 25, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -136686,7 +136640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -136695,6 +136648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136703,25 +136657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90383] = 3, + [91606] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(5120), 1, + sym__special_character, + STATE(1959), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 25, + ACTIONS(1369), 24, sym_file_descriptor, - sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -136736,25 +136691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90428] = 6, + [91654] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5216), 1, - aux_sym_concatenation_token1, - ACTIONS(5220), 1, - sym__concat, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 11, + ACTIONS(1334), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136766,8 +136715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 23, + ACTIONS(1336), 25, sym_file_descriptor, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -136781,6 +136731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -136790,10 +136741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90479] = 3, + [91698] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 12, + ACTIONS(1266), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136804,9 +136755,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1336), 25, + ACTIONS(1271), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -136832,10 +136782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90524] = 3, + [91742] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 12, + ACTIONS(1292), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -136846,9 +136796,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1332), 25, + ACTIONS(1294), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -136874,149 +136823,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90569] = 3, + [91786] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 12, + ACTIONS(5123), 1, + sym__concat, + ACTIONS(4782), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4780), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90614] = 3, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [91832] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 12, + ACTIONS(4702), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4700), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [90659] = 3, + [91876] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 12, + ACTIONS(4719), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90704] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5232), 1, - anon_sym_RPAREN, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4717), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5230), 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(5224), 13, + anon_sym_QMARK, + sym_test_operator, + [91920] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4719), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137030,7 +136964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(4717), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137041,16 +136977,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [90759] = 3, + [91964] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 11, + ACTIONS(5125), 1, + sym__special_character, + STATE(1978), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137060,11 +137005,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1324), 26, + ACTIONS(3888), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -137079,112 +137022,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90804] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90849] = 3, + [92012] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 12, + ACTIONS(5072), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5068), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5070), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [90894] = 6, + [92060] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5007), 1, + ACTIONS(5110), 1, anon_sym_QMARK, - ACTIONS(5003), 2, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(4867), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5236), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(5001), 13, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137198,7 +137102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137209,32 +137113,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, sym_test_operator, - [90945] = 3, + [92112] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1316), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 25, + ACTIONS(1318), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -137243,7 +137143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137252,6 +137151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137260,23 +137160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [90990] = 3, + [92156] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1296), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 25, + ACTIONS(1298), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -137285,7 +137184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137294,6 +137192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137302,23 +137201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91035] = 8, + [92200] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5238), 1, - anon_sym_RPAREN, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5230), 3, + ACTIONS(5066), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5224), 13, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5062), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137332,7 +137227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(5064), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137349,10 +137244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [91090] = 3, + [92248] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 11, + ACTIONS(1338), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137364,10 +137259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1332), 26, + ACTIONS(1340), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -137391,57 +137285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91135] = 3, + [92292] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5129), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91180] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1935), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 11, + STATE(1959), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137451,9 +137302,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 23, + ACTIONS(3888), 24, sym_file_descriptor, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -137461,6 +137311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -137468,19 +137319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91229] = 3, + [92340] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 11, + ACTIONS(1320), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137492,10 +137343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 26, + ACTIONS(1322), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -137519,65 +137369,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91274] = 3, + [92384] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(5072), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5068), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5070), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [91319] = 8, + [92432] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5238), 1, - anon_sym_RPAREN, - ACTIONS(5240), 1, + ACTIONS(4863), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(5226), 2, + ACTIONS(5074), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5230), 3, + ACTIONS(5072), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5224), 13, + ACTIONS(5068), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137591,7 +137440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(5070), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137608,52 +137457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [91374] = 3, + [92484] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5131), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91419] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 11, + STATE(1978), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137663,11 +137474,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1344), 26, + ACTIONS(1369), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -137682,146 +137491,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91464] = 3, + [92532] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 12, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [91509] = 3, + [92580] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 11, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [91554] = 3, + [92628] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 11, + ACTIONS(129), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5102), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5066), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5062), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5064), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [91599] = 3, + [92680] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(1330), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -137832,9 +137645,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1316), 25, + ACTIONS(1332), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -137860,12 +137672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91644] = 4, + [92724] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5242), 1, - sym__concat, - ACTIONS(4866), 13, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(5136), 1, + anon_sym_QMARK, + ACTIONS(5134), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5094), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5090), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137879,9 +137700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4864), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5092), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137892,23 +137711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [91691] = 4, + [92776] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5244), 1, - sym__concat, - ACTIONS(4926), 13, + ACTIONS(5072), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5068), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -137922,9 +137743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4924), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5070), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137935,63 +137754,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [91738] = 3, + [92824] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(5066), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(5062), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5064), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [91783] = 3, + [92872] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 12, + ACTIONS(4149), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138001,12 +137816,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1344), 25, + ACTIONS(4151), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -138020,22 +137834,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [91828] = 4, + [92916] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5246), 1, - sym__concat, - ACTIONS(4934), 13, + ACTIONS(4719), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138049,7 +137861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4932), 23, + ACTIONS(4717), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -138073,62 +137885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [91875] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91920] = 5, + [92960] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, + ACTIONS(4719), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138142,7 +137902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5252), 16, + ACTIONS(4717), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138153,20 +137915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [91969] = 5, + [93004] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1983), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, + ACTIONS(4142), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138176,8 +137939,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3991), 25, + ACTIONS(4144), 25, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -138186,7 +137950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -138194,6 +137957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138203,10 +137967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92018] = 3, + [93048] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 11, + ACTIONS(1312), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138218,10 +137982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1320), 26, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -138245,25 +138008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92063] = 3, + [93092] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1225), 12, - anon_sym_EQ_EQ, + ACTIONS(1312), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1234), 25, + ACTIONS(1314), 25, sym_file_descriptor, - sym__bare_dollar, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -138277,64 +138039,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92108] = 3, + [93136] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [92153] = 4, + [93184] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5258), 1, - anon_sym_LBRACK, - ACTIONS(4775), 13, + ACTIONS(4706), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138348,7 +138109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4773), 23, + ACTIONS(4704), 23, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -138372,14 +138133,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, sym_test_operator, - [92200] = 5, + [93228] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(5260), 1, - sym__concat, - ACTIONS(1227), 13, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5138), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138393,9 +138161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138406,24 +138172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [92249] = 5, + [93280] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4958), 1, - anon_sym_RBRACK, - ACTIONS(5262), 1, + ACTIONS(5140), 1, sym__concat, - ACTIONS(1227), 13, + ACTIONS(4837), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138437,7 +138197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(4835), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -138457,59 +138217,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [92298] = 3, + [93326] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(141), 1, + anon_sym_RBRACK, + ACTIONS(5136), 1, + anon_sym_QMARK, + ACTIONS(5134), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5094), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5090), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5092), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [92343] = 5, + [93378] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5264), 1, + ACTIONS(5142), 1, sym__special_character, - STATE(1993), 1, + STATE(1997), 1, aux_sym__literal_repeat1, - ACTIONS(3841), 11, + ACTIONS(1364), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138521,9 +138284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3843), 24, + ACTIONS(1369), 23, sym_file_descriptor, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -138546,52 +138308,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92392] = 3, + [93426] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(5088), 1, + anon_sym_QMARK, + ACTIONS(5145), 1, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [92437] = 3, + [93478] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1227), 13, + ACTIONS(5094), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5090), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138605,10 +138379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5092), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138619,157 +138390,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [92482] = 3, + [93526] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5104), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92527] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - sym__brace_start, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(5274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5268), 2, - anon_sym_LF, - aux_sym__simple_variable_name_token1, - STATE(4398), 3, - sym_arithmetic_expansion, - sym_number, - sym_expansion, - ACTIONS(3948), 26, - anon_sym_SEMI, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5106), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, sym_test_operator, - [92584] = 3, + [93574] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4911), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5104), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5106), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [92629] = 5, + [93622] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_RBRACK, - ACTIONS(5276), 1, - sym__concat, - ACTIONS(1227), 13, + ACTIONS(141), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5102), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5066), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5062), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138783,9 +138510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5064), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138796,24 +138521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [92678] = 5, + [93674] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5278), 1, - sym__special_character, - STATE(1983), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, + ACTIONS(1346), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138823,17 +138540,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1357), 25, + ACTIONS(1348), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -138841,19 +138558,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92727] = 3, + [93718] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 11, + ACTIONS(3745), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -138863,11 +138581,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1304), 26, + ACTIONS(3747), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -138882,31 +138599,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92772] = 6, + [93762] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5147), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -138920,7 +138637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138937,96 +138654,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [92823] = 5, + [93814] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5264), 1, - sym__special_character, - STATE(1993), 1, - aux_sym__literal_repeat1, - ACTIONS(3777), 11, + ACTIONS(5074), 1, + anon_sym_QMARK, + ACTIONS(5149), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5072), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5068), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3779), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5070), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [92872] = 3, + [93866] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(4702), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4700), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [92917] = 3, + [93910] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 11, + ACTIONS(1358), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139038,10 +138755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1296), 26, + ACTIONS(1360), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -139065,21 +138781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [92962] = 6, + [93954] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5151), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -139093,7 +138809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139110,21 +138826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [93013] = 6, + [94006] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5285), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -139138,7 +138854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5228), 16, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139155,124 +138871,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [93064] = 3, + [94058] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3659), 12, - anon_sym_EQ_EQ, + ACTIONS(4280), 2, anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(4282), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + ACTIONS(3166), 6, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3661), 25, + ACTIONS(4285), 6, sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93109] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(4431), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93154] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5287), 1, - sym__special_character, - STATE(1993), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1357), 24, - sym_file_descriptor, + ACTIONS(3172), 13, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, sym_raw_string, @@ -139283,156 +138916,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93203] = 3, + [94110] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(5088), 1, + anon_sym_QMARK, + ACTIONS(5155), 1, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93248] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [93293] = 3, + [94162] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(5088), 1, + anon_sym_QMARK, + ACTIONS(5157), 1, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5078), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5082), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [93338] = 7, + [94214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(4945), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2643), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1233), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(5294), 2, + ACTIONS(4947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, + ACTIONS(4943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 22, + ACTIONS(1225), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139440,7 +139037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -139455,23 +139051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [93391] = 3, + [94266] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1350), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 25, + ACTIONS(1352), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -139480,7 +139075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -139489,48 +139083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93436] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139539,10 +139092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93481] = 3, + [94310] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1354), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139554,10 +139107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1300), 26, + ACTIONS(1356), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -139581,30 +139133,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93526] = 7, + [94354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(4945), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2643), 1, sym_string, - ACTIONS(1213), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(5294), 2, + ACTIONS(4947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, + ACTIONS(4943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 22, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139612,7 +139164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -139627,62 +139178,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [93579] = 3, + [94406] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1253), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1373), 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym_test_operator, - [93624] = 5, + [94450] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5254), 3, + ACTIONS(129), 1, + anon_sym_RBRACK, + ACTIONS(5136), 1, + anon_sym_QMARK, + ACTIONS(5134), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5094), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5283), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, + ACTIONS(5090), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -139696,7 +139247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5252), 16, + ACTIONS(5092), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139713,20 +139264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [93673] = 5, + [94502] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(5254), 3, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5159), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5283), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -139740,7 +139292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5252), 16, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139757,52 +139309,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [93722] = 3, + [94554] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(5161), 1, + sym__concat, + ACTIONS(4843), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4841), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93767] = 3, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [94600] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 11, + ACTIONS(5125), 1, + sym__special_character, + STATE(1978), 1, + aux_sym__literal_repeat1, + ACTIONS(3741), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139812,11 +139368,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(3743), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -139831,20 +139385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93812] = 3, + [94648] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1308), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139855,9 +139408,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1328), 25, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -139883,52 +139435,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93857] = 3, + [94692] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 12, + ACTIONS(5110), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_COLON, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5104), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5106), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [93902] = 3, + [94744] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + ACTIONS(5108), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4901), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(5104), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -139942,10 +139506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5106), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139956,21 +139517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [93947] = 3, + [94792] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1262), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -139980,12 +139536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 25, + ACTIONS(1264), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -139999,20 +139554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [93992] = 3, + [94836] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1288), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140023,9 +139578,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 25, + ACTIONS(1290), 25, sym_file_descriptor, sym__concat, sym__brace_start, @@ -140051,10 +139605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94037] = 3, + [94880] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 11, + ACTIONS(5165), 1, + sym__special_character, + STATE(1997), 1, + aux_sym__literal_repeat1, + ACTIONS(3850), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -140064,12 +139622,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 26, + ACTIONS(3854), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -140083,79 +139639,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94082] = 3, + [94928] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5169), 1, + anon_sym_esac, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4548), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [94127] = 3, + STATE(2096), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95013] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3683), 12, + ACTIONS(4911), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5191), 3, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5187), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5189), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + sym_test_operator, + [95060] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3166), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3685), 25, + ACTIONS(4229), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(4231), 11, sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140166,6 +139778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(3172), 14, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -140177,178 +139793,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [94172] = 3, - ACTIONS(63), 1, + [95107] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 11, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94217] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_AMP, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1320), 25, + [95158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1237), 2, sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94262] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 11, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94307] = 3, + anon_sym_AMP, + anon_sym_BQUOTE, + [95209] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(4911), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(5191), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(5187), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5189), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_STAR_STAR, sym_test_operator, - [94352] = 3, + [95256] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + ACTIONS(4965), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -140362,8 +139940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, + ACTIONS(4963), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -140383,146 +139960,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [94397] = 5, - ACTIONS(63), 1, + [95299] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1932), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 23, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 3, sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94446] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1935), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 11, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94495] = 3, - ACTIONS(63), 1, + anon_sym_AMP, + [95350] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(5197), 2, aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1300), 25, + aux_sym__multiline_variable_name_token1, + ACTIONS(1233), 3, sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94540] = 4, + anon_sym_AMP, + [95401] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5296), 1, - sym__concat, - ACTIONS(4799), 13, + ACTIONS(4782), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -140536,7 +140068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4797), 23, + ACTIONS(4780), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -140559,96 +140091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [94587] = 3, + [95444] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5298), 1, - sym__concat, - ACTIONS(4799), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_QMARK, + ACTIONS(5199), 1, anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4797), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94679] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 13, + ACTIONS(4857), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -140662,10 +140115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4890), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140683,61 +140133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [94724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 1, - sym__concat, - ACTIONS(4866), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4864), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94771] = 5, + [95493] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACK, - ACTIONS(5302), 1, - sym__concat, - ACTIONS(1227), 13, + ACTIONS(1320), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -140751,7 +140151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 22, + ACTIONS(1322), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -140771,225 +140171,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [94820] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94865] = 4, + [95536] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - sym__concat, - ACTIONS(4934), 17, - anon_sym_EQ, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1237), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4932), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94912] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94957] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 11, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5306), 1, - sym__concat, - ACTIONS(4926), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4924), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95049] = 3, + anon_sym_AMP, + [95587] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 13, + ACTIONS(4959), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141003,8 +140235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4884), 24, - sym__concat, + ACTIONS(4957), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141024,55 +140255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [95094] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3839), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95138] = 3, + [95630] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(1330), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141086,7 +140275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5092), 23, + ACTIONS(1332), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141109,22 +140298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [95182] = 7, + [95673] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5316), 1, - anon_sym_COLON, - ACTIONS(5226), 2, + ACTIONS(4901), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5312), 3, + anon_sym_QMARK, + ACTIONS(5191), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(5308), 13, + ACTIONS(5187), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141138,7 +140323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5310), 16, + ACTIONS(5189), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141155,19 +140340,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, sym_test_operator, - [95234] = 5, - ACTIONS(63), 1, + [95720] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5318), 13, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95771] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4698), 1, + anon_sym_esac, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4563), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2093), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95856] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4953), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141181,7 +140462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5320), 16, + ACTIONS(4951), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141192,57 +140475,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [95282] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95899] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(4710), 1, + anon_sym_esac, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4560), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95326] = 3, + STATE(2091), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95984] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5049), 13, + ACTIONS(5016), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141256,7 +140563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5047), 23, + ACTIONS(5014), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141279,18 +140586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [95370] = 6, + [96027] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5324), 1, - anon_sym_COLON, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, + ACTIONS(5000), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141304,7 +140603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(4998), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141322,12 +140623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - sym_test_operator, - [95420] = 3, + anon_sym_QMARK, + [96070] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(4794), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141341,7 +140643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1336), 23, + ACTIONS(4792), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141364,104 +140666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [95464] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4797), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95552] = 7, + [96113] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(5326), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, + ACTIONS(4861), 1, anon_sym_QMARK, - ACTIONS(5226), 2, + ACTIONS(5201), 1, + anon_sym_COLON, + ACTIONS(4857), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, + ACTIONS(4855), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141475,7 +140690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5320), 16, + ACTIONS(4859), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141486,77 +140701,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [95604] = 3, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + [96162] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(4866), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4585), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4864), 19, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4683), 1, + anon_sym_esac, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4347), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95648] = 3, + STATE(2095), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96247] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 11, + ACTIONS(1262), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 25, + ACTIONS(1264), 24, sym_file_descriptor, - sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -141564,102 +140801,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [95692] = 3, + [96290] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 11, + ACTIONS(4937), 13, + anon_sym_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4935), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96333] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(4673), 1, + anon_sym_esac, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5185), 1, sym_test_operator, - [95736] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4329), 1, + sym_last_case_item, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5175), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95780] = 3, + STATE(2115), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96418] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4898), 13, + ACTIONS(4953), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141673,7 +140928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4896), 23, + ACTIONS(4951), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -141696,151 +140951,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [95824] = 5, - ACTIONS(63), 1, + [96461] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(5098), 1, + anon_sym_DQUOTE, + STATE(2716), 1, + sym_string, + ACTIONS(5100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5096), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95872] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5338), 1, - anon_sym_RPAREN, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95924] = 5, + [96512] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(5342), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3843), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4679), 1, + anon_sym_esac, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4308), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95972] = 5, + STATE(2108), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96597] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, + ACTIONS(5042), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141854,7 +141073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5310), 16, + ACTIONS(5040), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141865,68 +141086,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [96020] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96640] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4585), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1270), 19, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + ACTIONS(5203), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4549), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96064] = 7, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96725] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, + ACTIONS(1346), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -141940,50 +141174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96116] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, + ACTIONS(1348), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141994,16 +141187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [96164] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96768] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4799), 13, + ACTIONS(1358), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142017,7 +141214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4797), 23, + ACTIONS(1360), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142040,11 +141237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [96208] = 3, + [96811] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5207), 13, + ACTIONS(5038), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142058,7 +141254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5205), 23, + ACTIONS(5036), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142081,54 +141277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [96252] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96300] = 3, + [96854] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4866), 13, + ACTIONS(1354), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142142,7 +141294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4864), 23, + ACTIONS(1356), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142165,22 +141317,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + [96897] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(4669), 1, + anon_sym_esac, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, sym_test_operator, - [96344] = 7, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4330), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2107), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96982] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(5211), 1, + anon_sym_RPAREN, + ACTIONS(5213), 1, anon_sym_QMARK, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(5226), 2, + ACTIONS(5207), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, + ACTIONS(5205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142194,7 +141402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5310), 16, + ACTIONS(5209), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142205,191 +141413,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [96396] = 7, + anon_sym_EQ_TILDE, + [97031] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5354), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, + ACTIONS(4149), 10, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4151), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [96448] = 3, + [97074] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5043), 13, - anon_sym_EQ, + ACTIONS(1262), 10, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5041), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1264), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [96492] = 3, + [97117] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + ACTIONS(5215), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4225), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2087), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97202] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(5098), 1, + anon_sym_DQUOTE, + STATE(2716), 1, + sym_string, + ACTIONS(5100), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5096), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96536] = 3, + [97253] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5203), 13, - anon_sym_EQ, + ACTIONS(4142), 10, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5201), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4144), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [96580] = 6, + [97296] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5356), 1, - anon_sym_COLON, - ACTIONS(5003), 2, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + ACTIONS(5217), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4328), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2105), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97381] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + ACTIONS(5219), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4194), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2097), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97466] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + ACTIONS(5221), 1, + anon_sym_esac, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4320), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2090), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97551] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4973), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5001), 13, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(5205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142403,7 +141851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5005), 19, + ACTIONS(5209), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142422,56 +141870,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - sym_test_operator, - [96630] = 3, - ACTIONS(3), 1, + [97596] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(5049), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(4280), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(4282), 3, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_AMP_GT, + ACTIONS(3166), 5, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5047), 19, + ACTIONS(4431), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4285), 6, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3172), 14, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [97647] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3745), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3747), 25, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96674] = 5, + [97690] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5358), 1, + ACTIONS(5223), 1, sym__special_character, - STATE(2069), 1, + STATE(2079), 1, aux_sym__literal_repeat1, - ACTIONS(1352), 10, + ACTIONS(1364), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -142482,7 +141972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1357), 24, + ACTIONS(1369), 23, sym_file_descriptor, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -142490,7 +141980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -142507,10 +141996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96722] = 3, + [97737] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 11, + ACTIONS(1262), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -142520,11 +142009,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1320), 25, + ACTIONS(1264), 24, sym_file_descriptor, - sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -142538,20 +142026,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [96766] = 3, + [97780] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4892), 13, + ACTIONS(5213), 1, + anon_sym_QMARK, + ACTIONS(5226), 1, + anon_sym_RPAREN, + ACTIONS(5207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142565,9 +142060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4890), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5209), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142585,14 +142078,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96810] = 3, + [97829] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 13, + ACTIONS(5228), 1, + anon_sym_QMARK, + ACTIONS(4867), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4915), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4909), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142606,9 +142105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1320), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4913), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142619,21 +142116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, sym_test_operator, - [96854] = 3, + [97878] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1227), 13, + ACTIONS(4923), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142647,7 +142139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1364), 23, + ACTIONS(4921), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -142667,25 +142159,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + [97921] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5230), 1, + sym__special_character, + STATE(2079), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3888), 23, + sym_file_descriptor, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [96898] = 7, + [97968] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, + ACTIONS(4937), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142699,7 +142221,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5365), 16, + ACTIONS(4935), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142710,27 +142234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [96950] = 7, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [98011] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, + ACTIONS(1350), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -142744,7 +142261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(5346), 16, + ACTIONS(1352), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142755,491 +142274,868 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [97002] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [98054] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(4374), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4376), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5185), 1, sym_test_operator, - [97046] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4224), 1, + sym_last_case_item, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5175), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97090] = 3, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98136] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 17, - anon_sym_EQ, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1237), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98186] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4585), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5041), 19, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4529), 1, + sym_last_case_item, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(5175), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98268] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4307), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97134] = 7, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98350] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, sym_test_operator, - [97186] = 3, - ACTIONS(63), 1, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4548), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98432] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5234), 1, anon_sym_SLASH, + ACTIONS(5236), 1, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5242), 1, + anon_sym_RBRACE3, + ACTIONS(5244), 1, + anon_sym_AT, + ACTIONS(5246), 1, + anon_sym_STAR2, + STATE(3822), 1, + aux_sym__expansion_body_repeat1, + STATE(4396), 1, + sym__expansion_regex, + STATE(4397), 1, + sym__expansion_operator, + STATE(4398), 1, + sym__expansion_max_length, + STATE(4399), 1, + sym__expansion_regex_removal, + STATE(4402), 1, + sym__expansion_regex_replacement, + STATE(4404), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97230] = 5, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [98508] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5371), 1, - sym__special_character, - STATE(2081), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1357), 23, - sym_file_descriptor, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4549), 1, + sym_last_case_item, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(5175), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98590] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4560), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97278] = 3, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98672] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4328), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97322] = 3, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98754] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__special_character, + ACTIONS(5173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4528), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97366] = 3, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98836] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4226), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98918] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4563), 1, + sym_last_case_item, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99000] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5264), 1, sym__special_character, + ACTIONS(5266), 1, anon_sym_DQUOTE, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5276), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5282), 1, + sym_test_operator, + ACTIONS(5284), 1, + sym__brace_start, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5258), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5280), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2111), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5256), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + ACTIONS(5260), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2796), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99074] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5264), 1, + sym__special_character, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5272), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5276), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5282), 1, + sym_test_operator, + ACTIONS(5284), 1, + sym__brace_start, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5258), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5280), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97410] = 7, - ACTIONS(63), 1, + STATE(2111), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5256), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5286), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2796), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99148] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5374), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97462] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97506] = 3, - ACTIONS(63), 1, + [99198] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(5296), 1, anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 23, + ACTIONS(5298), 1, + anon_sym_LF, + ACTIONS(5294), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -143247,6 +143143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143258,16 +143155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97550] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143275,58 +143162,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4890), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + [99242] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, sym_test_operator, - [97594] = 7, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4329), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5378), 1, + ACTIONS(5290), 1, anon_sym_DQUOTE, - STATE(2889), 1, + STATE(2755), 1, sym_string, - ACTIONS(5380), 2, + ACTIONS(1237), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(5292), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 22, + ACTIONS(1235), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143334,11 +143256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143349,29 +143268,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [97646] = 7, + [99374] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4312), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99456] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4308), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99538] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4320), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99620] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4194), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99702] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5264), 1, + sym__special_character, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5276), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5282), 1, + sym_test_operator, + ACTIONS(5284), 1, + sym__brace_start, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5258), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5280), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2111), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5256), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5300), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2796), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1237), 1, sym_file_descriptor, - ACTIONS(5378), 1, + ACTIONS(5290), 1, anon_sym_DQUOTE, - STATE(2889), 1, + STATE(2755), 1, sym_string, - ACTIONS(5380), 2, + ACTIONS(5292), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 22, + ACTIONS(1235), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143379,11 +143589,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143394,141 +143602,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_LT_LT_LT, anon_sym_AMP, - [97698] = 3, - ACTIONS(63), 1, + [99826] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5160), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(5308), 1, + anon_sym_DOLLAR, + ACTIONS(5311), 1, + sym__special_character, + ACTIONS(5314), 1, + anon_sym_DQUOTE, + ACTIONS(5317), 1, + aux_sym_number_token1, + ACTIONS(5320), 1, + aux_sym_number_token2, + ACTIONS(5323), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5329), 1, + anon_sym_BQUOTE, + ACTIONS(5332), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5338), 1, sym_test_operator, - [97742] = 7, - ACTIONS(63), 1, + ACTIONS(5341), 1, + sym__brace_start, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5305), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5335), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2111), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5302), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2179), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + STATE(2796), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99900] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5382), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + [99950] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [100000] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, sym_test_operator, - [97794] = 3, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4330), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100082] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(3968), 1, + sym_concatenation, + STATE(4225), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100164] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BQUOTE, + [100214] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97838] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [100264] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4581), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4591), 1, + aux_sym_number_token1, + ACTIONS(4593), 1, + aux_sym_number_token2, + ACTIONS(4597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4607), 1, + sym_extglob_pattern, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, sym__special_character, - STATE(2069), 1, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, + anon_sym_BQUOTE, + ACTIONS(5181), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5185), 1, + sym_test_operator, + STATE(3852), 1, aux_sym__literal_repeat1, - ACTIONS(3989), 10, + STATE(3968), 1, + sym_concatenation, + STATE(4347), 1, + sym_last_case_item, + ACTIONS(5167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100346] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1262), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -143539,7 +144020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3991), 24, + ACTIONS(1264), 24, sym_file_descriptor, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -143547,7 +144028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -143555,6 +144035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143564,65 +144045,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [97886] = 7, - ACTIONS(63), 1, + [100388] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, + ACTIONS(3112), 1, + anon_sym_DOLLAR, + ACTIONS(3114), 1, + sym__special_character, + ACTIONS(3116), 1, + anon_sym_DQUOTE, + ACTIONS(3120), 1, + aux_sym_number_token1, + ACTIONS(3122), 1, + aux_sym_number_token2, + ACTIONS(3124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3126), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3128), 1, + anon_sym_BQUOTE, + ACTIONS(3130), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3140), 1, + sym__brace_start, + ACTIONS(5344), 1, + sym_word, + ACTIONS(5346), 1, + anon_sym_LPAREN, + ACTIONS(5350), 1, + sym__comment_word, + ACTIONS(5352), 1, + sym_test_operator, + ACTIONS(5354), 1, + sym__empty_value, + STATE(1823), 1, + aux_sym__literal_repeat1, + ACTIONS(3110), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3132), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5348), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2004), 2, + sym_concatenation, + sym_array, + STATE(1608), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + anon_sym_LF, + ACTIONS(1350), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97938] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143630,76 +144136,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + [100508] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + sym_word, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, + anon_sym_DOLLAR, + ACTIONS(5364), 1, + sym__special_character, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, + aux_sym_number_token1, + ACTIONS(5372), 1, + aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, + anon_sym_BQUOTE, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5384), 1, + sym__comment_word, + ACTIONS(5386), 1, + sym_test_operator, + ACTIONS(5388), 1, + sym__empty_value, + ACTIONS(5390), 1, + sym__brace_start, + STATE(2630), 1, + aux_sym__literal_repeat1, + ACTIONS(5358), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5368), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5382), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2829), 2, + sym_concatenation, + sym_array, + STATE(2826), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100587] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_word, + ACTIONS(5396), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + ACTIONS(5400), 1, + sym__special_character, + ACTIONS(5402), 1, + anon_sym_DQUOTE, + ACTIONS(5406), 1, + aux_sym_number_token1, + ACTIONS(5408), 1, + aux_sym_number_token2, + ACTIONS(5410), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5412), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5414), 1, + anon_sym_BQUOTE, + ACTIONS(5416), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5420), 1, + sym__comment_word, + ACTIONS(5422), 1, sym_test_operator, - [97986] = 5, + ACTIONS(5424), 1, + sym__empty_value, + ACTIONS(5426), 1, + sym__brace_start, + STATE(1422), 1, + aux_sym__literal_repeat1, + ACTIONS(5394), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5404), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5418), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1450), 2, + sym_concatenation, + sym_array, + STATE(1274), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100666] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5428), 1, + sym_word, + ACTIONS(5434), 1, + anon_sym_LPAREN, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5440), 1, + sym__special_character, + ACTIONS(5443), 1, + anon_sym_DQUOTE, + ACTIONS(5449), 1, + aux_sym_number_token1, + ACTIONS(5452), 1, + aux_sym_number_token2, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5458), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5461), 1, + anon_sym_BQUOTE, + ACTIONS(5464), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5470), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym_extglob_pattern, + ACTIONS(5476), 1, + sym__brace_start, + STATE(3835), 1, + aux_sym__literal_repeat1, + STATE(4029), 1, + sym_concatenation, + ACTIONS(5431), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5446), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5467), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2124), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3776), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100745] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 1, anon_sym_SLASH, + ACTIONS(5236), 1, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5479), 1, + anon_sym_RBRACE3, + ACTIONS(5481), 1, + anon_sym_AT, + STATE(3830), 1, + aux_sym__expansion_body_repeat1, + STATE(4506), 1, + sym__expansion_operator, + STATE(4507), 1, + sym__expansion_max_length, + STATE(4510), 1, + sym__expansion_regex_removal, + STATE(4511), 1, + sym__expansion_regex_replacement, + STATE(4513), 1, + sym__expansion_regex, + STATE(4515), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(5365), 16, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [100818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LF, + ACTIONS(1330), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98034] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143707,19 +144399,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, + [100859] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5483), 1, + sym_word, + ACTIONS(5487), 1, + anon_sym_LPAREN, + ACTIONS(5489), 1, + anon_sym_DOLLAR, + ACTIONS(5491), 1, + sym__special_character, + ACTIONS(5493), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, + aux_sym_number_token1, + ACTIONS(5499), 1, + aux_sym_number_token2, + ACTIONS(5501), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5505), 1, + anon_sym_BQUOTE, + ACTIONS(5507), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5511), 1, + sym__comment_word, + ACTIONS(5513), 1, + sym_test_operator, + ACTIONS(5515), 1, + sym__empty_value, + ACTIONS(5517), 1, + sym__brace_start, + STATE(2022), 1, + aux_sym__literal_repeat1, + ACTIONS(5485), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5495), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5509), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2078), 2, + sym_concatenation, + sym_array, + STATE(1736), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100938] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 1, + anon_sym_SLASH, + ACTIONS(5236), 1, + anon_sym_PERCENT, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5481), 1, + anon_sym_AT, + ACTIONS(5519), 1, + anon_sym_RBRACE3, + STATE(3832), 1, + aux_sym__expansion_body_repeat1, + STATE(4530), 1, + sym__expansion_operator, + STATE(4531), 1, + sym__expansion_max_length, + STATE(4532), 1, + sym__expansion_regex_removal, + STATE(4533), 1, + sym__expansion_regex_replacement, + STATE(4534), 1, + sym__expansion_regex, + STATE(4535), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(1324), 23, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [101011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5527), 1, + anon_sym_LF, + ACTIONS(5523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5521), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(5525), 27, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143731,21 +144544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98078] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5139), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5386), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143753,17 +144551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, + [101056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5531), 1, + anon_sym_LF, + ACTIONS(5529), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143775,23 +144581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [98124] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -143799,171 +144588,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98172] = 3, - ACTIONS(63), 1, + [101097] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(5533), 1, + sym_word, + ACTIONS(5537), 1, + anon_sym_LPAREN, + ACTIONS(5539), 1, anon_sym_DOLLAR, + ACTIONS(5541), 1, + sym__special_character, + ACTIONS(5543), 1, + anon_sym_DQUOTE, + ACTIONS(5547), 1, aux_sym_number_token1, + ACTIONS(5549), 1, aux_sym_number_token2, + ACTIONS(5551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5553), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5555), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(5557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5561), 1, + sym__comment_word, + ACTIONS(5563), 1, + sym_test_operator, + ACTIONS(5565), 1, + sym__empty_value, + ACTIONS(5567), 1, sym__brace_start, + STATE(2606), 1, + aux_sym__literal_repeat1, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5545), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98216] = 5, - ACTIONS(63), 1, + STATE(2869), 2, + sym_concatenation, + sym_array, + STATE(2642), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101176] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + ACTIONS(1639), 1, + anon_sym_DOLLAR, + ACTIONS(1645), 1, + aux_sym_number_token1, + ACTIONS(1647), 1, + aux_sym_number_token2, + ACTIONS(1651), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1665), 1, + sym__brace_start, + ACTIONS(5569), 1, + sym_word, + ACTIONS(5573), 1, + anon_sym_LPAREN, + ACTIONS(5575), 1, + sym__special_character, + ACTIONS(5577), 1, + anon_sym_DQUOTE, + ACTIONS(5581), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5583), 1, + anon_sym_BQUOTE, + ACTIONS(5585), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5589), 1, + sym__comment_word, + ACTIONS(5591), 1, sym_test_operator, - [98264] = 3, - ACTIONS(63), 1, + ACTIONS(5593), 1, + sym__empty_value, + STATE(1020), 1, + aux_sym__literal_repeat1, + ACTIONS(5571), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5579), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5587), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1225), 2, + sym_concatenation, + sym_array, + STATE(797), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101255] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(5595), 1, + sym_word, + ACTIONS(5599), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, anon_sym_DOLLAR, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, aux_sym_number_token1, + ACTIONS(5611), 1, aux_sym_number_token2, + ACTIONS(5613), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5615), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5617), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(5619), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5623), 1, + sym__comment_word, + ACTIONS(5625), 1, + sym_test_operator, + ACTIONS(5627), 1, + sym__empty_value, + ACTIONS(5629), 1, sym__brace_start, + STATE(3297), 1, + aux_sym__literal_repeat1, + ACTIONS(5597), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5607), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98308] = 3, - ACTIONS(63), 1, + STATE(3347), 2, + sym_concatenation, + sym_array, + STATE(3240), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101334] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 23, + ACTIONS(1318), 1, + anon_sym_LF, + ACTIONS(1316), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -143971,6 +144778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -143982,115 +144790,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98352] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4420), 2, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4422), 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3236), 6, + anon_sym_AMP, + [101375] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1889), 1, aux_sym_number_token1, + ACTIONS(1891), 1, aux_sym_number_token2, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4425), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4638), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 13, - sym_variable_name, + ACTIONS(1909), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5631), 1, + sym_word, + ACTIONS(5635), 1, + anon_sym_LPAREN, + ACTIONS(5637), 1, + sym__special_character, + ACTIONS(5639), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5651), 1, + sym__comment_word, + ACTIONS(5653), 1, + sym_test_operator, + ACTIONS(5655), 1, + sym__empty_value, + STATE(1330), 1, + aux_sym__literal_repeat1, + ACTIONS(5633), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5641), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98404] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5390), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, + STATE(1398), 2, + sym_concatenation, + sym_array, + STATE(1091), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101454] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, + anon_sym_DOLLAR, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, + aux_sym_number_token1, + ACTIONS(5372), 1, + aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, + anon_sym_BQUOTE, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5384), 1, + sym__comment_word, + ACTIONS(5388), 1, + sym__empty_value, + ACTIONS(5390), 1, + sym__brace_start, + ACTIONS(5657), 1, + sym_word, + ACTIONS(5659), 1, + sym__special_character, + ACTIONS(5663), 1, + sym_test_operator, + STATE(2630), 1, + aux_sym__literal_repeat1, + ACTIONS(5358), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5382), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5661), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2829), 2, + sym_concatenation, + sym_array, + STATE(2780), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101533] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + anon_sym_DOLLAR, + ACTIONS(1889), 1, + aux_sym_number_token1, + ACTIONS(1891), 1, + aux_sym_number_token2, + ACTIONS(1895), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5635), 1, + anon_sym_LPAREN, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, + anon_sym_BQUOTE, + ACTIONS(5647), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5651), 1, + sym__comment_word, + ACTIONS(5655), 1, + sym__empty_value, + ACTIONS(5665), 1, + sym_word, + ACTIONS(5667), 1, + sym__special_character, + ACTIONS(5671), 1, + sym_test_operator, + STATE(1330), 1, + aux_sym__literal_repeat1, + ACTIONS(5633), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5649), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5669), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1398), 2, + sym_concatenation, + sym_array, + STATE(885), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5675), 1, + anon_sym_LF, + ACTIONS(5673), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98456] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5318), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144098,132 +145006,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, + [101653] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + sym__brace_start, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + STATE(2923), 1, + sym_string, + ACTIONS(5679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5677), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101702] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5683), 1, + anon_sym_LF, + ACTIONS(5523), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5681), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(5525), 27, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98504] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 11, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + [101747] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, anon_sym_DOLLAR, + ACTIONS(1787), 1, aux_sym_number_token1, + ACTIONS(1789), 1, aux_sym_number_token2, + ACTIONS(1793), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(1807), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5685), 1, + sym_word, + ACTIONS(5689), 1, + anon_sym_LPAREN, + ACTIONS(5691), 1, sym__special_character, + ACTIONS(5693), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5697), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5699), 1, + anon_sym_BQUOTE, + ACTIONS(5701), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5705), 1, + sym__comment_word, + ACTIONS(5707), 1, + sym_test_operator, + ACTIONS(5709), 1, + sym__empty_value, + STATE(1163), 1, + aux_sym__literal_repeat1, + ACTIONS(5687), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5695), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5703), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98548] = 7, + STATE(1365), 2, + sym_concatenation, + sym_array, + STATE(844), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(1237), 1, + sym__brace_start, + ACTIONS(5266), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2923), 1, sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, + ACTIONS(5679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, + ACTIONS(5677), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 21, + ACTIONS(1235), 19, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - [98600] = 3, - ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101875] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 23, + ACTIONS(5711), 1, + sym_word, + ACTIONS(5715), 1, + anon_sym_LPAREN, + ACTIONS(5717), 1, + anon_sym_DOLLAR, + ACTIONS(5719), 1, + sym__special_character, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + aux_sym_number_token1, + ACTIONS(5727), 1, + aux_sym_number_token2, + ACTIONS(5729), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5733), 1, + anon_sym_BQUOTE, + ACTIONS(5735), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5739), 1, + sym__comment_word, + ACTIONS(5741), 1, + sym_test_operator, + ACTIONS(5743), 1, + sym__empty_value, + ACTIONS(5745), 1, + sym__brace_start, + STATE(1385), 1, + aux_sym__literal_repeat1, + ACTIONS(5713), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5723), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5737), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1490), 2, + sym_concatenation, + sym_array, + STATE(1154), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101954] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + ACTIONS(5402), 1, + anon_sym_DQUOTE, + ACTIONS(5406), 1, + aux_sym_number_token1, + ACTIONS(5408), 1, + aux_sym_number_token2, + ACTIONS(5410), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5412), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5414), 1, + anon_sym_BQUOTE, + ACTIONS(5416), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5420), 1, + sym__comment_word, + ACTIONS(5424), 1, + sym__empty_value, + ACTIONS(5426), 1, + sym__brace_start, + ACTIONS(5747), 1, + sym_word, + ACTIONS(5749), 1, + sym__special_character, + ACTIONS(5753), 1, + sym_test_operator, + STATE(1422), 1, + aux_sym__literal_repeat1, + ACTIONS(5394), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5418), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5751), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1450), 2, + sym_concatenation, + sym_array, + STATE(1565), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LF, + ACTIONS(1312), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144231,6 +145320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144242,16 +145332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98644] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4898), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144259,12 +145339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4896), 23, + [102074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LF, + ACTIONS(1312), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144272,6 +145358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144283,27 +145370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98688] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5240), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144311,163 +145377,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [98740] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98784] = 3, - ACTIONS(63), 1, + [102115] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(1419), 1, anon_sym_DOLLAR, + ACTIONS(1425), 1, aux_sym_number_token1, + ACTIONS(1427), 1, aux_sym_number_token2, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1447), 1, + sym__brace_start, + ACTIONS(5755), 1, sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5759), 1, + anon_sym_LPAREN, + ACTIONS(5761), 1, + sym__special_character, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + ACTIONS(5767), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5769), 1, + anon_sym_BQUOTE, + ACTIONS(5771), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5775), 1, + sym__comment_word, + ACTIONS(5777), 1, + sym_test_operator, + ACTIONS(5779), 1, + sym__empty_value, + STATE(859), 1, + aux_sym__literal_repeat1, + ACTIONS(5757), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5765), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5773), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1151), 2, + sym_concatenation, + sym_array, + STATE(691), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102194] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + ACTIONS(5402), 1, + anon_sym_DQUOTE, + ACTIONS(5406), 1, + aux_sym_number_token1, + ACTIONS(5408), 1, + aux_sym_number_token2, + ACTIONS(5410), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5412), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5414), 1, + anon_sym_BQUOTE, + ACTIONS(5416), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5420), 1, + sym__comment_word, + ACTIONS(5424), 1, + sym__empty_value, + ACTIONS(5426), 1, sym__brace_start, + ACTIONS(5781), 1, + sym_word, + ACTIONS(5783), 1, + sym__special_character, + ACTIONS(5787), 1, + sym_test_operator, + STATE(1422), 1, + aux_sym__literal_repeat1, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5418), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5785), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1450), 2, + sym_concatenation, + sym_array, + STATE(1094), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102273] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_AMP, + [102322] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5789), 1, + sym_word, + ACTIONS(5793), 1, + anon_sym_LPAREN, + ACTIONS(5795), 1, + anon_sym_DOLLAR, + ACTIONS(5797), 1, sym__special_character, + ACTIONS(5799), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5803), 1, + aux_sym_number_token1, + ACTIONS(5805), 1, + aux_sym_number_token2, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5809), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5811), 1, anon_sym_BQUOTE, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5817), 1, + sym__comment_word, + ACTIONS(5819), 1, + sym_test_operator, + ACTIONS(5821), 1, + sym__empty_value, + ACTIONS(5823), 1, + sym__brace_start, + STATE(1193), 1, + aux_sym__literal_repeat1, + ACTIONS(5791), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5801), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98828] = 3, + STATE(1367), 2, + sym_concatenation, + sym_array, + STATE(840), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102401] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 17, - anon_sym_EQ, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(5290), 1, + anon_sym_DQUOTE, + STATE(2755), 1, + sym_string, + ACTIONS(5292), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5288), 9, anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [102450] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5825), 1, + sym_word, + ACTIONS(5829), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5831), 1, anon_sym_DOLLAR, + ACTIONS(5833), 1, sym__special_character, + ACTIONS(5835), 1, + anon_sym_DQUOTE, + ACTIONS(5839), 1, aux_sym_number_token1, + ACTIONS(5841), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, + ACTIONS(5843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5845), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1270), 19, + ACTIONS(5847), 1, + anon_sym_BQUOTE, + ACTIONS(5849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5853), 1, + sym__comment_word, + ACTIONS(5855), 1, + sym_test_operator, + ACTIONS(5857), 1, + sym__empty_value, + ACTIONS(5859), 1, sym__brace_start, + STATE(2357), 1, + aux_sym__literal_repeat1, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(5837), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98872] = 6, - ACTIONS(63), 1, + STATE(2408), 2, + sym_concatenation, + sym_array, + STATE(2178), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102529] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5394), 1, - anon_sym_RPAREN, - ACTIONS(5396), 1, - anon_sym_QMARK, - ACTIONS(5392), 2, + ACTIONS(5863), 1, + anon_sym_LF, + ACTIONS(5861), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5386), 13, - anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144475,17 +145727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, + [102570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5867), 1, + anon_sym_LF, + ACTIONS(5865), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144497,14 +145758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [98922] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1227), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144512,12 +145765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, + [102611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_LF, + ACTIONS(5869), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144525,6 +145784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144536,59 +145796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98966] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5398), 1, - sym__special_character, - STATE(2081), 1, - aux_sym__literal_repeat1, - ACTIONS(4032), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4034), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99014] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144596,12 +145803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 23, + [102652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LF, + ACTIONS(1320), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -144609,6 +145822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -144620,27 +145834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99058] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5400), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144648,87 +145841,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, + [102693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 1, + anon_sym_LF, + ACTIONS(1300), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99110] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, anon_sym_AMP, - [99162] = 5, - ACTIONS(63), 1, + [102734] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, + anon_sym_DOLLAR, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, + aux_sym_number_token1, + ACTIONS(5372), 1, + aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, + anon_sym_BQUOTE, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5384), 1, + sym__comment_word, + ACTIONS(5388), 1, + sym__empty_value, + ACTIONS(5390), 1, + sym__brace_start, + ACTIONS(5873), 1, + sym_word, + ACTIONS(5875), 1, + sym__special_character, + ACTIONS(5879), 1, + sym_test_operator, + STATE(2630), 1, + aux_sym__literal_repeat1, + ACTIONS(5358), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5382), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5877), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2829), 2, + sym_concatenation, + sym_array, + STATE(3133), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + anon_sym_LF, + ACTIONS(1292), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -144736,296 +145974,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, + [102854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + anon_sym_LF, + ACTIONS(1354), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99210] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + anon_sym_AMP, + [102895] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, aux_sym_number_token1, + ACTIONS(5372), 1, aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5378), 1, + anon_sym_BQUOTE, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5384), 1, + sym__comment_word, + ACTIONS(5388), 1, + sym__empty_value, + ACTIONS(5390), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5881), 1, + sym_word, + ACTIONS(5883), 1, + sym__special_character, + ACTIONS(5887), 1, + sym_test_operator, + STATE(2630), 1, + aux_sym__literal_repeat1, + ACTIONS(5358), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [99254] = 3, - ACTIONS(63), 1, + ACTIONS(5885), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2829), 2, + sym_concatenation, + sym_array, + STATE(2702), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102974] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(1883), 1, anon_sym_DOLLAR, + ACTIONS(1889), 1, aux_sym_number_token1, + ACTIONS(1891), 1, aux_sym_number_token2, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4372), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1909), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(5635), 1, + anon_sym_LPAREN, + ACTIONS(5639), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5651), 1, + sym__comment_word, + ACTIONS(5655), 1, + sym__empty_value, + ACTIONS(5889), 1, + sym_word, + ACTIONS(5891), 1, + sym__special_character, + ACTIONS(5895), 1, + sym_test_operator, + STATE(1330), 1, + aux_sym__literal_repeat1, + ACTIONS(5633), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [99298] = 5, - ACTIONS(63), 1, + ACTIONS(5893), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1398), 2, + sym_concatenation, + sym_array, + STATE(1544), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103053] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5234), 1, anon_sym_SLASH, + ACTIONS(5236), 1, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5242), 1, + anon_sym_RBRACE3, + ACTIONS(5481), 1, + anon_sym_AT, + STATE(3814), 1, + aux_sym__expansion_body_repeat1, + STATE(4386), 1, + sym__expansion_operator, + STATE(4387), 1, + sym__expansion_max_length, + STATE(4390), 1, + sym__expansion_regex_removal, + STATE(4391), 1, + sym__expansion_regex_replacement, + STATE(4392), 1, + sym__expansion_regex, + STATE(4393), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99346] = 3, - ACTIONS(63), 1, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [103126] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(5360), 1, + anon_sym_LPAREN, + ACTIONS(5362), 1, anon_sym_DOLLAR, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, aux_sym_number_token1, + ACTIONS(5372), 1, aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5384), 1, + sym__comment_word, + ACTIONS(5388), 1, + sym__empty_value, + ACTIONS(5390), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5897), 1, + sym_word, + ACTIONS(5899), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5903), 1, sym_test_operator, - [99390] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, + STATE(2630), 1, + aux_sym__literal_repeat1, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [99434] = 7, - ACTIONS(63), 1, + ACTIONS(5901), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2829), 2, + sym_concatenation, + sym_array, + STATE(2926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103205] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5402), 1, - anon_sym_COLON, - ACTIONS(5226), 2, + ACTIONS(1360), 1, + anon_sym_LF, + ACTIONS(1358), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99486] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145033,42 +146275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, + [103246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + anon_sym_LF, + ACTIONS(1346), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99538] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145076,46 +146313,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + [103287] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 1, + anon_sym_LPAREN, + ACTIONS(5539), 1, + anon_sym_DOLLAR, + ACTIONS(5543), 1, + anon_sym_DQUOTE, + ACTIONS(5547), 1, + aux_sym_number_token1, + ACTIONS(5549), 1, + aux_sym_number_token2, + ACTIONS(5551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(5557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5561), 1, + sym__comment_word, + ACTIONS(5565), 1, + sym__empty_value, + ACTIONS(5567), 1, + sym__brace_start, + ACTIONS(5905), 1, + sym_word, + ACTIONS(5907), 1, + sym__special_character, + ACTIONS(5911), 1, sym_test_operator, - [99586] = 3, - ACTIONS(63), 1, + STATE(2606), 1, + aux_sym__literal_repeat1, + ACTIONS(5535), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5559), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5909), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2869), 2, + sym_concatenation, + sym_array, + STATE(2578), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103366] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5234), 1, anon_sym_SLASH, + ACTIONS(5236), 1, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5481), 1, + anon_sym_AT, + ACTIONS(5913), 1, + anon_sym_RBRACE3, + STATE(3810), 1, + aux_sym__expansion_body_repeat1, + STATE(4408), 1, + sym__expansion_operator, + STATE(4409), 1, + sym__expansion_max_length, + STATE(4410), 1, + sym__expansion_regex_removal, + STATE(4411), 1, + sym__expansion_regex_replacement, + STATE(4414), 1, + sym__expansion_regex, + STATE(4415), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(4884), 23, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [103439] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5915), 1, + sym_word, + ACTIONS(5919), 1, + anon_sym_LPAREN, + ACTIONS(5921), 1, + anon_sym_DOLLAR, + ACTIONS(5923), 1, + sym__special_character, + ACTIONS(5925), 1, + anon_sym_DQUOTE, + ACTIONS(5929), 1, + aux_sym_number_token1, + ACTIONS(5931), 1, + aux_sym_number_token2, + ACTIONS(5933), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5935), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5937), 1, + anon_sym_BQUOTE, + ACTIONS(5939), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5943), 1, + sym__comment_word, + ACTIONS(5945), 1, + sym_test_operator, + ACTIONS(5947), 1, + sym__empty_value, + ACTIONS(5949), 1, + sym__brace_start, + STATE(1070), 1, + aux_sym__literal_repeat1, + ACTIONS(5917), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5927), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5941), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1190), 2, + sym_concatenation, + sym_array, + STATE(788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_LF, + ACTIONS(5869), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -145123,6 +146500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145134,16 +146512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99630] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145151,12 +146519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 23, + [103559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_LF, + ACTIONS(5869), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -145164,6 +146538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145175,25 +146550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99674] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145201,87 +146557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [99722] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5342), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99770] = 7, + anon_sym_AMP, + [103600] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5406), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, + ACTIONS(5951), 1, anon_sym_EQ, + ACTIONS(5294), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145289,81 +146574,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, + ACTIONS(5298), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99822] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99866] = 6, + [103642] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5396), 1, - anon_sym_QMARK, - ACTIONS(5408), 1, - anon_sym_RPAREN, - ACTIONS(5392), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 13, + ACTIONS(5953), 1, anon_sym_EQ, + ACTIONS(5294), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145371,17 +146612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, + ACTIONS(5298), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145393,66 +146636,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [99916] = 3, + anon_sym_RPAREN, + [103684] = 9, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 11, - anon_sym_LT_LT, + ACTIONS(5965), 1, + sym_file_descriptor, + ACTIONS(5968), 1, + sym_variable_name, + STATE(4112), 1, + sym_subscript, + ACTIONS(5962), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, + STATE(2174), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(5955), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5959), 5, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5957), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [99960] = 7, + [103736] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5410), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, + ACTIONS(1350), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145460,42 +146691,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, + ACTIONS(1352), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100012] = 5, + [103775] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, + ACTIONS(5869), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145503,173 +146727,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, + ACTIONS(5871), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100060] = 3, + [103814] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(2214), 1, + anon_sym_RPAREN, + ACTIONS(5971), 1, + sym_word, + ACTIONS(5977), 1, anon_sym_DOLLAR, + ACTIONS(5980), 1, + sym__special_character, + ACTIONS(5983), 1, + anon_sym_DQUOTE, + ACTIONS(5989), 1, aux_sym_number_token1, + ACTIONS(5992), 1, aux_sym_number_token2, + ACTIONS(5995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5998), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6001), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6004), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6010), 1, + sym_test_operator, + ACTIONS(6013), 1, sym__brace_start, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(5974), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5986), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6007), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [100104] = 5, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103887] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5412), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, + STATE(2218), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6016), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3745), 9, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1357), 24, + ACTIONS(3747), 19, sym_file_descriptor, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [100152] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100204] = 7, + [103930] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, - anon_sym_EQ, + ACTIONS(5861), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -145677,46 +146854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [100256] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5141), 23, + ACTIONS(5863), 21, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -145724,6 +146866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -145735,145 +146878,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [100300] = 3, + [103969] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6022), 1, + anon_sym_RPAREN, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, + sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [100344] = 3, + STATE(2181), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104042] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, + sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, + ACTIONS(6050), 1, + anon_sym_RPAREN, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [100388] = 24, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104115] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5417), 1, - anon_sym_esac, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6052), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4770), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2208), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2183), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145883,184 +147038,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100473] = 5, + [104188] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(5250), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100520] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6018), 1, sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6024), 1, + anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, + ACTIONS(6028), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100563] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [100614] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4981), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6054), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2236), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146070,58 +147091,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100699] = 24, + [104261] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5447), 1, - anon_sym_esac, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6056), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4580), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2190), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2185), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146131,184 +147144,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100784] = 5, + [104334] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(3236), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6018), 1, sym_word, - ACTIONS(4390), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4392), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 14, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100831] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5449), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5451), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6028), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100878] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5455), 1, - sym__special_character, - STATE(2156), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100925] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4882), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6058), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2210), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146318,58 +147197,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101010] = 24, + [104407] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4985), 1, - anon_sym_esac, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6060), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2227), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2187), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146379,193 +147250,63 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101095] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101146] = 5, - ACTIONS(3), 1, + [104480] = 20, + ACTIONS(63), 1, sym_comment, - STATE(2179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 16, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(6062), 1, anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [101193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101244] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101295] = 5, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104553] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5283), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, + ACTIONS(5865), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -146573,124 +147314,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, + ACTIONS(5867), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [101342] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101393] = 24, + anon_sym_RPAREN, + [104592] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5458), 1, - anon_sym_esac, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6064), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4578), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2193), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2201), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146700,146 +147392,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101478] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [101529] = 7, + [104665] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, + ACTIONS(2053), 1, anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101580] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(5272), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5276), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(5278), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6068), 1, + sym__special_character, + ACTIONS(6070), 1, sym_test_operator, - ACTIONS(5460), 1, - anon_sym_esac, - STATE(4057), 1, + STATE(3067), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4411), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(5258), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(5280), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2215), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2195), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6066), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3092), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146849,138 +147444,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101665] = 3, - ACTIONS(63), 1, + [104736] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(1913), 1, + anon_sym_LF, + ACTIONS(5262), 1, anon_sym_DOLLAR, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + ACTIONS(5268), 1, aux_sym_number_token1, + ACTIONS(5270), 1, aux_sym_number_token2, + ACTIONS(5272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5276), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5284), 1, sym__brace_start, + ACTIONS(6068), 1, + sym__special_character, + ACTIONS(6070), 1, + sym_test_operator, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5258), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5280), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [101708] = 3, + STATE(2195), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6066), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3092), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104807] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(3837), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, + sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3839), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6040), 1, + anon_sym_BQUOTE, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, + ACTIONS(6072), 1, + anon_sym_RPAREN, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [101751] = 24, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104880] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5462), 1, - anon_sym_esac, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6074), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4743), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2207), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2194), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146990,140 +147602,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101836] = 3, + [104953] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(6018), 1, sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6024), 1, + anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, + ACTIONS(6028), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(6046), 1, sym_test_operator, - [101879] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2180), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3946), 16, + ACTIONS(6048), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(6076), 1, anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(3948), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105026] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_LF, + ACTIONS(5308), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5314), 1, + anon_sym_DQUOTE, + ACTIONS(5317), 1, aux_sym_number_token1, + ACTIONS(5320), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + ACTIONS(5323), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5326), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5329), 1, anon_sym_BQUOTE, + ACTIONS(5332), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5341), 1, + sym__brace_start, + ACTIONS(6081), 1, + sym__special_character, + ACTIONS(6084), 1, + sym_test_operator, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(5305), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5335), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2195), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6078), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [101926] = 24, + STATE(3092), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105097] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4974), 1, - anon_sym_esac, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6087), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2223), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2197), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147133,352 +147760,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102011] = 7, + [105170] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4420), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4422), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3236), 5, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, + sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4638), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(4425), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3248), 14, - sym_variable_name, + ACTIONS(6040), 1, + anon_sym_BQUOTE, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, + ACTIONS(6089), 1, + anon_sym_RPAREN, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [102062] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102105] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102148] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5464), 1, - sym__special_character, - STATE(2156), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102195] = 6, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105243] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 16, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(5234), 1, + anon_sym_SLASH, + ACTIONS(5236), 1, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, + ACTIONS(5238), 1, anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, + ACTIONS(5242), 1, anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 1, - aux_sym_concatenation_token1, - ACTIONS(5468), 1, - sym__concat, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5244), 1, + anon_sym_AT, + ACTIONS(5246), 1, + anon_sym_STAR2, + ACTIONS(6091), 1, + anon_sym_LBRACK, + STATE(4416), 1, + sym__expansion_operator, + STATE(4417), 1, + sym__expansion_max_length, + STATE(4420), 1, + sym__expansion_regex_removal, + STATE(4421), 1, + sym__expansion_regex_replacement, + STATE(4422), 1, + sym__expansion_regex, + STATE(4423), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102293] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5283), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [102340] = 24, + [105314] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4876), 1, - anon_sym_esac, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6093), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2214), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2200), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147488,58 +147918,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102425] = 24, + [105387] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4945), 1, - anon_sym_esac, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6095), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2204), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147549,58 +147971,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102510] = 24, + [105460] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5470), 1, - anon_sym_esac, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6097), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4410), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2220), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147610,106 +148024,63 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102595] = 5, - ACTIONS(3), 1, + [105533] = 20, + ACTIONS(63), 1, sym_comment, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5472), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 16, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(6099), 1, anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [102642] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, + STATE(2204), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [102693] = 6, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105606] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5475), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5248), 13, - anon_sym_EQ, + ACTIONS(5673), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -147717,156 +148088,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5252), 16, + ACTIONS(5675), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [102742] = 3, - ACTIONS(3), 1, + [105645] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(6018), 1, sym_word, - ACTIONS(1336), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102826] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6101), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4572), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147876,56 +148166,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102908] = 23, + [105718] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5527), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6103), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6107), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6105), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [105761] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6109), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2207), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147935,52 +148257,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102990] = 19, - ACTIONS(3), 1, + [105834] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5483), 1, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5487), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5489), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(5493), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5505), 1, + ACTIONS(6048), 1, sym__brace_start, - STATE(3090), 1, + ACTIONS(6111), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - ACTIONS(5479), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, + ACTIONS(6030), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2196), 2, + STATE(2177), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5481), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147990,56 +148310,126 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103064] = 23, + [105907] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5529), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5531), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [105946] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, + anon_sym_DQUOTE, + STATE(2615), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5197), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5193), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [105993] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6113), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4571), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2192), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148049,95 +148439,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103188] = 23, + [106066] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6115), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2212), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148147,52 +148492,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103270] = 19, - ACTIONS(3), 1, + [106139] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5513), 1, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(5516), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5519), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5522), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(5525), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(5528), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5537), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5543), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5546), 1, + ACTIONS(6048), 1, sym__brace_start, - STATE(3090), 1, + ACTIONS(6117), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - ACTIONS(5510), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5540), 2, + ACTIONS(6030), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2196), 2, + STATE(2177), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5507), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2059), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148202,70 +148545,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103344] = 3, + [106212] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103386] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, + ACTIONS(5195), 1, anon_sym_DQUOTE, - STATE(2781), 1, + STATE(2615), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(5445), 2, + ACTIONS(5197), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, + ACTIONS(5193), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, + ACTIONS(1235), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -148273,7 +148576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148283,98 +148585,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - anon_sym_AMP, - [103436] = 7, - ACTIONS(3), 1, + [106259] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(2217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6016), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 9, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [103486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1348), 18, - sym__concat, + ACTIONS(1264), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [103528] = 4, - ACTIONS(3), 1, + [106302] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5551), 1, - anon_sym_EQ, - ACTIONS(5553), 1, - anon_sym_LF, - ACTIONS(5549), 32, - anon_sym_SEMI, + ACTIONS(5861), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5863), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -148395,6 +148659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [106341] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5865), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -148405,633 +148673,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [103572] = 23, + ACTIONS(5867), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [106380] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6119), 1, + sym__concat, + STATE(2219), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(5415), 2, + sym_word, + ACTIONS(1278), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103654] = 3, - ACTIONS(3), 1, + sym_test_operator, + [106425] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6121), 1, + sym__concat, + STATE(2219), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 9, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1332), 18, - sym__concat, + ACTIONS(1284), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [103696] = 23, + [106470] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4770), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + STATE(2219), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6123), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 9, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 18, - sym__concat, + ACTIONS(1271), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [103820] = 3, - ACTIONS(3), 1, + [106513] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 16, - anon_sym_EQ, + ACTIONS(5869), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103862] = 23, + ACTIONS(5871), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [106552] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4711), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103944] = 23, + ACTIONS(5869), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5871), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [106591] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4714), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 16, - anon_sym_EQ, + ACTIONS(5683), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6103), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6107), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6105), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [106634] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6016), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3886), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1312), 18, - sym__concat, + ACTIONS(3888), 19, + sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [104068] = 23, + [106677] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + STATE(2218), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6016), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4832), 1, aux_sym_number_token1, - ACTIONS(4834), 1, aux_sym_number_token2, - ACTIONS(4838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4411), 1, - sym_last_case_item, - ACTIONS(5415), 2, + sym_word, + ACTIONS(3882), 19, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104150] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5555), 1, - anon_sym_RPAREN, - ACTIONS(5557), 1, + sym__special_character, anon_sym_DQUOTE, - STATE(4524), 1, - sym_string, - ACTIONS(5559), 2, - sym_regex, sym_raw_string, - ACTIONS(3946), 14, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(3948), 15, - anon_sym_EQ, + [106720] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5673), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - [104200] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, + ACTIONS(5675), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104250] = 3, + anon_sym_RPAREN, + [106759] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 10, - anon_sym_LT_LT, + STATE(2217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6016), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3741), 9, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 24, + ACTIONS(3743), 19, sym_file_descriptor, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [104292] = 23, + [106802] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1354), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1356), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [106841] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6126), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4410), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2177), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149041,56 +149160,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104374] = 23, + [106914] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, + ACTIONS(6046), 1, sym_test_operator, - STATE(4057), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6128), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4431), 1, - sym_last_case_item, - ACTIONS(5415), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5431), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, + STATE(2250), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149100,322 +149213,355 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104506] = 3, - ACTIONS(3), 1, + [106987] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + ACTIONS(6032), 1, aux_sym_number_token1, + ACTIONS(6034), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 18, - sym__concat, + ACTIONS(6042), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6046), 1, + sym_test_operator, + ACTIONS(6048), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(6130), 1, anon_sym_RPAREN, - anon_sym_PIPE, + STATE(3242), 1, + aux_sym__literal_repeat1, + ACTIONS(6020), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [104548] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, + STATE(2228), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3085), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107060] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1302), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107099] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 10, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + ACTIONS(1294), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104598] = 7, - ACTIONS(3), 1, + [107138] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, + ACTIONS(1316), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1318), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107177] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 10, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104648] = 23, + ACTIONS(1360), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [107216] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4442), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104730] = 7, - ACTIONS(3), 1, + ACTIONS(1346), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1348), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [107255] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, + ACTIONS(1312), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1314), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [107294] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 10, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [104780] = 19, - ACTIONS(3), 1, + ACTIONS(1314), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [107333] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5483), 1, + ACTIONS(6018), 1, + sym_word, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(5485), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5487), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5489), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(5493), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5505), 1, + ACTIONS(6048), 1, sym__brace_start, - STATE(3090), 1, + ACTIONS(6132), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - ACTIONS(5479), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, + ACTIONS(6030), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2196), 2, + STATE(2258), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5567), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149425,855 +149571,132 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104854] = 23, + [107406] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4743), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [104978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(5527), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105020] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6134), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6138), 10, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [105070] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4580), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 16, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105236] = 23, + ACTIONS(6136), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [107449] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 16, - anon_sym_EQ, + ACTIONS(1350), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(1352), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105360] = 23, + [107488] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105442] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5485), 1, - sym__special_character, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, - sym_test_operator, - ACTIONS(5505), 1, - sym__brace_start, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5569), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 16, - anon_sym_EQ, + ACTIONS(1320), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(1322), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105600] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4578), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105682] = 23, + [107527] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 16, - anon_sym_EQ, + ACTIONS(1330), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5573), 1, - anon_sym_LF, - ACTIONS(5571), 32, - anon_sym_SEMI, + ACTIONS(1332), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150294,6 +149717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [107566] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150304,127 +149731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [105931] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5575), 1, - sym_word, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5584), 1, - anon_sym_DOLLAR, - ACTIONS(5587), 1, - sym__special_character, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5596), 1, - aux_sym_number_token1, - ACTIONS(5599), 1, - aux_sym_number_token2, - ACTIONS(5602), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5605), 1, - anon_sym_RBRACE3, - ACTIONS(5607), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5610), 1, - anon_sym_BQUOTE, - ACTIONS(5613), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5619), 1, - sym_test_operator, - ACTIONS(5622), 1, - sym__brace_start, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(5578), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5593), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5616), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2242), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106008] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5625), 1, - sym_word, - ACTIONS(5629), 1, - anon_sym_LPAREN, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5653), 1, - sym__comment_word, - ACTIONS(5655), 1, - sym_test_operator, - ACTIONS(5657), 1, - sym__empty_value, - ACTIONS(5659), 1, - sym__brace_start, - STATE(2053), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5637), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2170), 2, - sym_concatenation, - sym_array, - STATE(1771), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LF, - ACTIONS(5661), 32, - anon_sym_SEMI, + ACTIONS(1332), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150445,6 +149752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107605] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1354), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150455,14 +149767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 1, - anon_sym_LF, - ACTIONS(1294), 32, - anon_sym_SEMI, + ACTIONS(1356), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150483,6 +149788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107644] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5529), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150493,14 +149803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5667), 1, - anon_sym_LF, - ACTIONS(5665), 32, - anon_sym_SEMI, + ACTIONS(5531), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150521,6 +149824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107683] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150531,14 +149839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_LF, - ACTIONS(1302), 32, - anon_sym_SEMI, + ACTIONS(1360), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150559,6 +149860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107722] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150569,56 +149875,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, + ACTIONS(1348), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107761] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1300), 10, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [106300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - anon_sym_LF, - ACTIONS(1314), 32, - anon_sym_SEMI, + ACTIONS(1302), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150639,6 +149933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [107800] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1320), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150649,97 +149947,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, + ACTIONS(1322), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [106390] = 22, - ACTIONS(3), 1, + [107839] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(5677), 1, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5679), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5699), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, + ACTIONS(6048), 1, sym__brace_start, - STATE(2788), 1, + ACTIONS(6140), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - ACTIONS(5671), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5681), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5695), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2975), 2, + STATE(2177), 2, sym_concatenation, - sym_array, - STATE(3151), 9, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150749,127 +150022,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106469] = 22, - ACTIONS(3), 1, + [107912] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5705), 1, - sym_word, - ACTIONS(5709), 1, - anon_sym_LPAREN, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5733), 1, - sym__comment_word, - ACTIONS(5735), 1, - sym_test_operator, - ACTIONS(5737), 1, - sym__empty_value, - ACTIONS(5739), 1, - sym__brace_start, - STATE(1446), 1, - aux_sym__literal_repeat1, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5717), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1454), 2, - sym_concatenation, - sym_array, - STATE(1072), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106548] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(5741), 1, - sym_word, - ACTIONS(5743), 1, - sym__special_character, - ACTIONS(5747), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5745), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2870), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - anon_sym_LF, - ACTIONS(1322), 32, - anon_sym_SEMI, + ACTIONS(5869), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5871), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150890,6 +150057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107951] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5869), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150900,14 +150072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - anon_sym_LF, - ACTIONS(1268), 32, - anon_sym_SEMI, + ACTIONS(5871), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150928,6 +150093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [107990] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5869), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150938,14 +150108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - anon_sym_LF, - ACTIONS(1268), 32, - anon_sym_SEMI, + ACTIONS(5871), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150966,6 +150129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [108029] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -150976,14 +150144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - anon_sym_LF, - ACTIONS(1330), 32, - anon_sym_SEMI, + ACTIONS(1318), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -151004,6 +150166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [108068] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5683), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6134), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6138), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -151014,17 +150186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - anon_sym_LF, - ACTIONS(1334), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6136), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151042,6 +150204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [108111] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -151052,14 +150218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 1, - anon_sym_LF, - ACTIONS(1318), 32, - anon_sym_SEMI, + ACTIONS(1314), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -151080,6 +150239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + [108150] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -151090,20 +150254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [106873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5755), 1, - anon_sym_LF, - ACTIONS(5751), 2, + ACTIONS(1314), 21, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(5753), 27, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151121,64 +150275,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - [106918] = 22, - ACTIONS(3), 1, + anon_sym_RPAREN, + [108189] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5757), 1, + ACTIONS(6018), 1, sym_word, - ACTIONS(5761), 1, - anon_sym_LPAREN, - ACTIONS(5763), 1, + ACTIONS(6024), 1, + anon_sym_DOLLAR, + ACTIONS(6026), 1, sym__special_character, - ACTIONS(5765), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5769), 1, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6034), 1, + aux_sym_number_token2, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5777), 1, - sym__comment_word, - ACTIONS(5779), 1, + ACTIONS(6046), 1, sym_test_operator, - ACTIONS(5781), 1, - sym__empty_value, - STATE(1295), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6142), 1, + anon_sym_RPAREN, + STATE(3242), 1, aux_sym__literal_repeat1, - ACTIONS(5759), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5775), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1394), 2, + STATE(2177), 2, sym_concatenation, - sym_array, - STATE(964), 9, + aux_sym_for_statement_repeat1, + STATE(3085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151188,94 +150329,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106997] = 5, - ACTIONS(3), 1, + [108262] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5783), 1, - sym__special_character, - STATE(2291), 1, - aux_sym__literal_repeat1, - ACTIONS(5449), 14, - anon_sym_EQ, + ACTIONS(1292), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1294), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [108301] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1334), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5451), 17, + ACTIONS(1336), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [107042] = 22, - ACTIONS(3), 1, + [108339] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5785), 1, - sym_word, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5815), 1, - sym_test_operator, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, + ACTIONS(5426), 1, sym__brace_start, - STATE(1370), 1, + ACTIONS(5749), 1, + sym__special_character, + ACTIONS(6144), 1, + sym_word, + ACTIONS(6148), 1, + sym_test_operator, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5797), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5811), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1560), 2, + ACTIONS(6146), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(624), 2, sym_concatenation, - sym_array, - STATE(1578), 9, + aux_sym_for_statement_repeat1, + STATE(1610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151285,54 +150451,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107121] = 22, - ACTIONS(3), 1, + [108409] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(5717), 1, anon_sym_DOLLAR, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(5821), 1, - sym_word, - ACTIONS(5825), 1, - anon_sym_LPAREN, - ACTIONS(5827), 1, + ACTIONS(5719), 1, sym__special_character, - ACTIONS(5829), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(5833), 1, + ACTIONS(5725), 1, + aux_sym_number_token1, + ACTIONS(5727), 1, + aux_sym_number_token2, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5733), 1, anon_sym_BQUOTE, - ACTIONS(5837), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5841), 1, - sym__comment_word, - ACTIONS(5843), 1, + ACTIONS(5745), 1, + sym__brace_start, + ACTIONS(6150), 1, + sym_word, + ACTIONS(6154), 1, sym_test_operator, - ACTIONS(5845), 1, - sym__empty_value, - STATE(1192), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(5823), 2, + ACTIONS(5713), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5831), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5839), 2, + ACTIONS(5737), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1222), 2, + ACTIONS(6152), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(506), 2, sym_concatenation, - sym_array, - STATE(786), 9, + aux_sym_for_statement_repeat1, + STATE(1108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151342,53 +150502,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107200] = 21, + [108479] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(1312), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(1314), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [108517] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3954), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(3956), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [108555] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(5847), 1, - anon_sym_RBRACE3, - STATE(3217), 1, + ACTIONS(4020), 1, + sym__special_character, + ACTIONS(6156), 1, + sym_word, + ACTIONS(6160), 1, + sym_test_operator, + ACTIONS(6162), 1, + sym_regex, + STATE(1158), 1, aux_sym__literal_repeat1, - ACTIONS(3944), 2, + STATE(1337), 1, + sym_concatenation, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2277), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, + ACTIONS(6158), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151398,54 +150624,188 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107277] = 22, - ACTIONS(3), 1, + [108627] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1925), 1, + ACTIONS(1354), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(1933), 1, aux_sym_number_token2, - ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1356), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(5849), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [108665] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5855), 1, + ACTIONS(1314), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(5857), 1, anon_sym_DQUOTE, - ACTIONS(5861), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [108703] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1350), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5865), 1, + sym_word, + ACTIONS(1352), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5871), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(5873), 1, - sym__empty_value, - STATE(1348), 1, + [108741] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1330), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1332), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [108779] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5256), 1, + sym_word, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6166), 1, + sym__special_character, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, + anon_sym_BQUOTE, + ACTIONS(6176), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6180), 1, + sym_test_operator, + STATE(3067), 1, aux_sym__literal_repeat1, - ACTIONS(5851), 2, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5859), 2, + ACTIONS(6170), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5867), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1376), 2, + STATE(2100), 2, sym_concatenation, - sym_array, - STATE(1517), 9, + aux_sym_for_statement_repeat1, + STATE(2796), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151455,54 +150815,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107356] = 22, - ACTIONS(3), 1, + [108849] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(5679), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(5875), 1, - sym_word, - ACTIONS(5877), 1, + ACTIONS(5783), 1, sym__special_character, - ACTIONS(5881), 1, + ACTIONS(6182), 1, + sym_word, + ACTIONS(6186), 1, sym_test_operator, - STATE(2788), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(5671), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5879), 2, + ACTIONS(6184), 2, sym_raw_string, sym_ansi_c_string, - STATE(2975), 2, + STATE(512), 2, sym_concatenation, - sym_array, - STATE(2955), 9, + aux_sym_for_statement_repeat1, + STATE(1125), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151512,53 +150866,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107435] = 21, + [108919] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(5717), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5719), 1, sym__special_character, - ACTIONS(3956), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(5725), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(5727), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(5731), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(5733), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, + ACTIONS(5745), 1, sym__brace_start, - ACTIONS(5883), 1, - anon_sym_RBRACE3, - STATE(3217), 1, + ACTIONS(6150), 1, + sym_word, + ACTIONS(6154), 1, + sym_test_operator, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(3944), 2, + ACTIONS(5713), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, + ACTIONS(5737), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2289), 3, + ACTIONS(6152), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(513), 2, sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, + aux_sym_for_statement_repeat1, + STATE(1108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151568,132 +150917,157 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107512] = 5, + [108989] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5887), 1, - anon_sym_LF, - ACTIONS(5751), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5885), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(5753), 27, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6190), 1, + anon_sym_DQUOTE, + STATE(3273), 1, + sym_string, + ACTIONS(1233), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(6192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6188), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - [107557] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [109035] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 1, - anon_sym_LF, - ACTIONS(1272), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(1320), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [109073] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 9, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [107598] = 22, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [109111] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(5795), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(5889), 1, - sym_word, - ACTIONS(5891), 1, + ACTIONS(5783), 1, sym__special_character, - ACTIONS(5895), 1, + ACTIONS(6182), 1, + sym_word, + ACTIONS(6186), 1, sym_test_operator, - STATE(1370), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5893), 2, + ACTIONS(6184), 2, sym_raw_string, sym_ansi_c_string, - STATE(1560), 2, + STATE(525), 2, sym_concatenation, - sym_array, - STATE(1166), 9, + aux_sym_for_statement_repeat1, + STATE(1125), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151703,54 +151077,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107677] = 22, - ACTIONS(3), 1, + [109181] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(5679), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(5897), 1, - sym_word, - ACTIONS(5899), 1, + ACTIONS(5749), 1, sym__special_character, - ACTIONS(5903), 1, + ACTIONS(6144), 1, + sym_word, + ACTIONS(6148), 1, sym_test_operator, - STATE(2788), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(5671), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5901), 2, + ACTIONS(6146), 2, sym_raw_string, sym_ansi_c_string, - STATE(2975), 2, + STATE(615), 2, sym_concatenation, - sym_array, - STATE(2794), 9, + aux_sym_for_statement_repeat1, + STATE(1610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151760,54 +151128,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107756] = 22, - ACTIONS(3), 1, + [109251] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5905), 1, - sym_word, - ACTIONS(5909), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(5913), 1, + ACTIONS(2849), 1, + aux_sym_number_token1, + ACTIONS(2851), 1, + aux_sym_number_token2, + ACTIONS(2855), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(3077), 1, + sym_word, + ACTIONS(6196), 1, sym__special_character, - ACTIONS(5915), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, + anon_sym_BQUOTE, + ACTIONS(6206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6210), 1, + sym_test_operator, + STATE(1449), 1, + aux_sym__literal_repeat1, + ACTIONS(6194), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6200), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6208), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(564), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1377), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109321] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2843), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(3077), 1, + sym_word, + ACTIONS(6196), 1, + sym__special_character, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5933), 1, - sym__comment_word, - ACTIONS(5935), 1, + ACTIONS(6210), 1, sym_test_operator, - ACTIONS(5937), 1, - sym__empty_value, - ACTIONS(5939), 1, - sym__brace_start, - STATE(1240), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(5907), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5917), 2, + ACTIONS(6200), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5931), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1368), 2, + STATE(566), 2, sym_concatenation, - sym_array, - STATE(915), 9, + aux_sym_for_statement_repeat1, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151817,130 +151230,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107835] = 3, + [109391] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, - anon_sym_LF, - ACTIONS(1346), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(6214), 1, + anon_sym_DQUOTE, + STATE(3258), 1, + sym_string, + ACTIONS(6216), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6212), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [107876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_LF, - ACTIONS(1342), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [107917] = 22, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [109437] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(3376), 1, sym_word, - ACTIONS(5947), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR, - ACTIONS(5953), 1, - sym__special_character, - ACTIONS(5956), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(5962), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(5965), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(5968), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5971), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5974), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(5977), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5983), 1, + ACTIONS(3402), 1, sym_test_operator, - ACTIONS(5986), 1, - sym_extglob_pattern, - ACTIONS(5989), 1, + ACTIONS(3404), 1, sym__brace_start, - STATE(4076), 1, + ACTIONS(6218), 1, + sym__special_character, + STATE(1974), 1, aux_sym__literal_repeat1, - STATE(4215), 1, - sym_concatenation, - ACTIONS(5944), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5959), 2, + ACTIONS(3386), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5980), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4044), 9, + STATE(633), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1694), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151950,53 +151320,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107996] = 21, + [109507] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3376), 1, sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, + ACTIONS(3402), 1, sym_test_operator, - ACTIONS(3979), 1, + ACTIONS(3404), 1, sym__brace_start, - ACTIONS(5992), 1, - anon_sym_RBRACE3, - STATE(3217), 1, + ACTIONS(6218), 1, + sym__special_character, + STATE(1974), 1, aux_sym__literal_repeat1, - ACTIONS(3944), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, + ACTIONS(3386), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3975), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2242), 3, + STATE(636), 2, sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, + aux_sym_for_statement_repeat1, + STATE(1694), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152006,290 +151371,123 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108073] = 3, + [109577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 1, - anon_sym_LF, - ACTIONS(1326), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [108114] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5994), 1, - sym_word, - ACTIONS(5998), 1, - anon_sym_LPAREN, - ACTIONS(6000), 1, - anon_sym_DOLLAR, - ACTIONS(6002), 1, - sym__special_character, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6022), 1, - sym__comment_word, - ACTIONS(6024), 1, - sym_test_operator, - ACTIONS(6026), 1, - sym__empty_value, - ACTIONS(6028), 1, - sym__brace_start, - STATE(2756), 1, - aux_sym__literal_repeat1, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6006), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2951), 2, - sym_concatenation, - sym_array, - STATE(2717), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(5487), 1, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(6214), 1, anon_sym_DQUOTE, - STATE(2952), 1, + STATE(3258), 1, sym_string, - ACTIONS(6032), 2, + ACTIONS(6216), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, + ACTIONS(6212), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1235), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [109623] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1316), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [108242] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, + ACTIONS(1318), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [108291] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6034), 1, - sym_word, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6062), 1, - sym__comment_word, - ACTIONS(6064), 1, sym_test_operator, - ACTIONS(6066), 1, - sym__empty_value, - ACTIONS(6068), 1, - sym__brace_start, - STATE(2483), 1, - aux_sym__literal_repeat1, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6046), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2530), 2, - sym_concatenation, - sym_array, - STATE(2345), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108370] = 22, - ACTIONS(3), 1, + [109661] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(5998), 1, - anon_sym_LPAREN, - ACTIONS(6000), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(6004), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(6010), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(6012), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6022), 1, - sym__comment_word, - ACTIONS(6026), 1, - sym__empty_value, - ACTIONS(6028), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(6070), 1, - sym_word, - ACTIONS(6072), 1, + ACTIONS(3988), 1, sym__special_character, - ACTIONS(6076), 1, + ACTIONS(6220), 1, + sym_word, + ACTIONS(6224), 1, sym_test_operator, - STATE(2756), 1, + ACTIONS(6226), 1, + sym_regex, + STATE(794), 1, aux_sym__literal_repeat1, - ACTIONS(5996), 2, + STATE(929), 1, + sym_concatenation, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6074), 2, + ACTIONS(6222), 2, sym_raw_string, sym_ansi_c_string, - STATE(2951), 2, - sym_concatenation, - sym_array, - STATE(2786), 9, + STATE(659), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152299,54 +151497,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108449] = 22, - ACTIONS(3), 1, + [109733] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(1525), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(1527), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(1531), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(6078), 1, + ACTIONS(3077), 1, sym_word, - ACTIONS(6082), 1, - anon_sym_LPAREN, - ACTIONS(6084), 1, + ACTIONS(6196), 1, sym__special_character, - ACTIONS(6086), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(6090), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(6094), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6098), 1, - sym__comment_word, - ACTIONS(6100), 1, + ACTIONS(6210), 1, sym_test_operator, - ACTIONS(6102), 1, - sym__empty_value, - STATE(900), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(6080), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6088), 2, + ACTIONS(6200), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6096), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1137), 2, + STATE(579), 2, sym_concatenation, - sym_array, - STATE(747), 9, + aux_sym_for_statement_repeat1, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152356,54 +151548,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108528] = 22, - ACTIONS(3), 1, + [109803] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(1925), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(1931), 1, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5873), 1, - sym__empty_value, - ACTIONS(6104), 1, - sym_word, - ACTIONS(6106), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(4024), 1, sym__special_character, - ACTIONS(6110), 1, + ACTIONS(6162), 1, + sym_regex, + ACTIONS(6228), 1, + sym_word, + ACTIONS(6232), 1, sym_test_operator, - STATE(1348), 1, + STATE(1158), 1, aux_sym__literal_repeat1, - ACTIONS(5851), 2, + STATE(1337), 1, + sym_concatenation, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6108), 2, + ACTIONS(6230), 2, sym_raw_string, sym_ansi_c_string, - STATE(1376), 2, - sym_concatenation, - sym_array, - STATE(1188), 9, + STATE(832), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152413,111 +151600,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108607] = 22, - ACTIONS(3), 1, + [109875] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, + ACTIONS(1288), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, aux_sym_number_token1, - ACTIONS(5685), 1, aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(6112), 1, sym_word, - ACTIONS(6114), 1, - sym__special_character, - ACTIONS(6118), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, + ACTIONS(1290), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6116), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2883), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108686] = 22, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [109913] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(6120), 1, + ACTIONS(3077), 1, sym_word, - ACTIONS(6122), 1, + ACTIONS(6196), 1, sym__special_character, - ACTIONS(6126), 1, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, + anon_sym_BQUOTE, + ACTIONS(6206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6210), 1, sym_test_operator, - STATE(1370), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6124), 2, + ACTIONS(6200), 2, sym_raw_string, sym_ansi_c_string, - STATE(1560), 2, + ACTIONS(6208), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(583), 2, sym_concatenation, - sym_array, - STATE(1210), 9, + aux_sym_for_statement_repeat1, + STATE(1377), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152527,54 +151686,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108765] = 22, - ACTIONS(3), 1, + [109983] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1925), 1, + ACTIONS(2839), 1, + sym_word, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(1931), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(1937), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5873), 1, - sym__empty_value, - ACTIONS(6128), 1, - sym_word, - ACTIONS(6130), 1, + ACTIONS(6234), 1, sym__special_character, - ACTIONS(6134), 1, + ACTIONS(6238), 1, sym_test_operator, - STATE(1348), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(5851), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6132), 2, + ACTIONS(6236), 2, sym_raw_string, sym_ansi_c_string, - STATE(1376), 2, + STATE(541), 2, sym_concatenation, - sym_array, - STATE(892), 9, + aux_sym_for_statement_repeat1, + STATE(1293), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152584,53 +151737,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108844] = 21, + [110053] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(2839), 1, sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, + ACTIONS(6234), 1, + sym__special_character, + ACTIONS(6238), 1, sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(6136), 1, - anon_sym_RBRACE3, - STATE(3217), 1, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(3944), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2242), 3, + ACTIONS(6236), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(538), 2, sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, + aux_sym_for_statement_repeat1, + STATE(1293), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152640,54 +151788,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108921] = 22, - ACTIONS(3), 1, + [110123] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym__special_character, - ACTIONS(3096), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(3100), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(3102), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(3104), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(3110), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(6138), 1, + ACTIONS(3992), 1, + sym__special_character, + ACTIONS(6162), 1, + sym_regex, + ACTIONS(6240), 1, sym_word, - ACTIONS(6140), 1, - anon_sym_LPAREN, - ACTIONS(6144), 1, - sym__comment_word, - ACTIONS(6146), 1, + ACTIONS(6244), 1, sym_test_operator, - ACTIONS(6148), 1, - sym__empty_value, - STATE(1976), 1, + STATE(1158), 1, aux_sym__literal_repeat1, - ACTIONS(3090), 2, + STATE(1337), 1, + sym_concatenation, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6142), 2, + ACTIONS(6242), 2, sym_raw_string, sym_ansi_c_string, - STATE(2035), 2, - sym_concatenation, - sym_array, - STATE(1581), 9, + STATE(1424), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152697,132 +151840,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109000] = 5, - ACTIONS(3), 1, + [110195] = 20, + ACTIONS(63), 1, sym_comment, - ACTIONS(6150), 1, - sym__special_character, - STATE(2291), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4585), 1, anon_sym_DOLLAR, + ACTIONS(4591), 1, aux_sym_number_token1, + ACTIONS(4593), 1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 17, + ACTIONS(4609), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6155), 1, - anon_sym_LF, - ACTIONS(6153), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [109086] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6157), 1, - sym_word, - ACTIONS(6161), 1, - anon_sym_LPAREN, - ACTIONS(6163), 1, - anon_sym_DOLLAR, - ACTIONS(6165), 1, + ACTIONS(5171), 1, sym__special_character, - ACTIONS(6167), 1, + ACTIONS(5173), 1, anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(6181), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6185), 1, - sym__comment_word, - ACTIONS(6187), 1, + ACTIONS(6246), 1, + sym_word, + ACTIONS(6250), 1, sym_test_operator, - ACTIONS(6189), 1, - sym__empty_value, - ACTIONS(6191), 1, - sym__brace_start, - STATE(3511), 1, + ACTIONS(6252), 1, + sym_extglob_pattern, + STATE(3808), 1, aux_sym__literal_repeat1, - ACTIONS(6159), 2, + STATE(3927), 1, + sym_concatenation, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6169), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6183), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3572), 2, - sym_concatenation, - sym_array, - STATE(3430), 9, + ACTIONS(6248), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3789), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152832,54 +151892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109165] = 22, - ACTIONS(3), 1, + [110267] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6193), 1, + ACTIONS(5256), 1, sym_word, - ACTIONS(6197), 1, - anon_sym_LPAREN, - ACTIONS(6199), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(6209), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6166), 1, + sym__special_character, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(6217), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6221), 1, - sym__comment_word, - ACTIONS(6223), 1, + ACTIONS(6180), 1, sym_test_operator, - ACTIONS(6225), 1, - sym__empty_value, - ACTIONS(6227), 1, - sym__brace_start, - STATE(1130), 1, + STATE(3067), 1, aux_sym__literal_repeat1, - ACTIONS(6195), 2, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6205), 2, + ACTIONS(6170), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6219), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1299), 2, + STATE(2109), 2, sym_concatenation, - sym_array, - STATE(779), 9, + aux_sym_for_statement_repeat1, + STATE(2796), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152889,318 +151943,236 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109244] = 9, + [110337] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6239), 1, - sym_file_descriptor, - ACTIONS(6242), 1, - sym_variable_name, - STATE(4396), 1, - sym_subscript, - ACTIONS(6236), 3, + ACTIONS(1308), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(6229), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(6233), 5, + ACTIONS(1310), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6231), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [109296] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6245), 1, - anon_sym_EQ, - ACTIONS(5549), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5553), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109338] = 3, + [110375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 15, - anon_sym_EQ, + ACTIONS(1233), 1, + sym__brace_start, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + STATE(2923), 1, + sym_string, + ACTIONS(5679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5677), 9, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4376), 17, + sym_test_operator, + [110421] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, sym__brace_start, + ACTIONS(6256), 1, + anon_sym_DQUOTE, + STATE(3129), 1, + sym_string, + ACTIONS(6258), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6254), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 16, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [109378] = 3, + [110467] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 15, - anon_sym_EQ, + ACTIONS(1237), 1, + sym__brace_start, + ACTIONS(5266), 1, + anon_sym_DQUOTE, + STATE(2923), 1, + sym_string, + ACTIONS(5679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5677), 9, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 17, - sym__brace_start, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 16, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LF, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [109418] = 3, - ACTIONS(3), 1, + [110513] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(1300), 9, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 17, + ACTIONS(1302), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [109458] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6247), 1, - anon_sym_EQ, - ACTIONS(5549), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5553), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [109500] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5755), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6249), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6253), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6251), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109543] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + [110551] = 20, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(6255), 1, - anon_sym_RPAREN, - ACTIONS(6257), 1, + ACTIONS(4031), 1, sym__special_character, - STATE(3355), 1, + ACTIONS(6260), 1, + sym_word, + ACTIONS(6264), 1, + sym_test_operator, + ACTIONS(6266), 1, + sym_regex, + STATE(1014), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(1351), 1, + sym_concatenation, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2374), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6262), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153210,160 +152182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109616] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5887), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6259), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6263), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6261), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109659] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1304), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [109698] = 3, - ACTIONS(63), 1, + [110623] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1233), 1, + sym__brace_start, + ACTIONS(6256), 1, + anon_sym_DQUOTE, + STATE(3129), 1, + sym_string, + ACTIONS(6258), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6254), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1316), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1225), 16, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, - [109737] = 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [110669] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5400), 1, + sym__special_character, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6265), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6268), 1, + sym_word, + ACTIONS(6272), 1, + sym_test_operator, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2325), 2, + ACTIONS(6270), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(536), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153373,50 +152272,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109810] = 20, + [110739] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(1338), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4240), 1, + ACTIONS(1340), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [110777] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5831), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5833), 1, + sym__special_character, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5839), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5841), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5847), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5859), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6267), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6274), 1, + sym_word, + ACTIONS(6278), 1, + sym_test_operator, + STATE(2375), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6276), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1520), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(2224), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153426,50 +152358,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109883] = 20, + [110847] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(2915), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(2919), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2941), 1, + sym__brace_start, + ACTIONS(6282), 1, + sym__special_character, + ACTIONS(6284), 1, + anon_sym_DQUOTE, + ACTIONS(6288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6290), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6296), 1, sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6269), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(1458), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6280), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6286), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2375), 2, + STATE(546), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153479,89 +152409,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109956] = 7, - ACTIONS(3), 1, + [110917] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(6273), 1, - anon_sym_DQUOTE, - STATE(3125), 1, - sym_string, - ACTIONS(6275), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(5262), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5268), 1, aux_sym_number_token1, + ACTIONS(5270), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6066), 1, sym_word, - sym_test_operator, - [110003] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2059), 1, - anon_sym_LF, - ACTIONS(5513), 1, - anon_sym_DOLLAR, - ACTIONS(5519), 1, + ACTIONS(6168), 1, anon_sym_DQUOTE, - ACTIONS(5522), 1, - aux_sym_number_token1, - ACTIONS(5525), 1, - aux_sym_number_token2, - ACTIONS(5528), 1, + ACTIONS(6172), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(5537), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5546), 1, - sym__brace_start, - ACTIONS(6280), 1, + ACTIONS(6298), 1, sym__special_character, - ACTIONS(6283), 1, + ACTIONS(6302), 1, sym_test_operator, - STATE(3090), 1, + STATE(3067), 1, aux_sym__literal_repeat1, - ACTIONS(5510), 2, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5540), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6277), 3, + ACTIONS(6300), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(3139), 9, + STATE(2191), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3092), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153571,86 +152460,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110074] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1304), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110113] = 20, + [110987] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5398), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5400), 1, + sym__special_character, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6286), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6268), 1, + sym_word, + ACTIONS(6272), 1, + sym_test_operator, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6270), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(556), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153660,215 +152511,173 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110186] = 20, + [111057] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(1296), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + sym_word, + ACTIONS(1298), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6288), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2307), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110259] = 7, + sym_test_operator, + [111095] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(6273), 1, + ACTIONS(1233), 1, + sym_file_descriptor, + ACTIONS(5290), 1, anon_sym_DQUOTE, - STATE(3125), 1, + STATE(2755), 1, sym_string, - ACTIONS(6275), 2, + ACTIONS(5292), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1225), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LF, + anon_sym_LT_LT_LT, + [111141] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5489), 1, + anon_sym_DOLLAR, + ACTIONS(5491), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5493), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, aux_sym_number_token1, + ACTIONS(5499), 1, aux_sym_number_token2, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + ACTIONS(5503), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5505), 1, anon_sym_BQUOTE, + ACTIONS(5507), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5517), 1, + sym__brace_start, + ACTIONS(6304), 1, sym_word, + ACTIONS(6308), 1, sym_test_operator, - [110306] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6153), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6155), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [110345] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110384] = 20, + STATE(1967), 1, + aux_sym__literal_repeat1, + ACTIONS(5485), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5509), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6306), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(631), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1687), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111211] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5489), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5491), 1, + sym__special_character, + ACTIONS(5493), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5497), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5499), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5503), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5505), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5517), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6290), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6304), 1, + sym_word, + ACTIONS(6308), 1, + sym_test_operator, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5485), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6306), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(646), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1687), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153878,30 +152687,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110457] = 7, + [111281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(5290), 1, anon_sym_DQUOTE, - STATE(2781), 1, + STATE(2755), 1, sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, + ACTIONS(5292), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 16, + ACTIONS(1235), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -153918,122 +152726,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LF, anon_sym_LT_LT_LT, - [110504] = 3, + [111327] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5661), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110543] = 3, + ACTIONS(5256), 1, + sym_word, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6166), 1, + sym__special_character, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, + anon_sym_BQUOTE, + ACTIONS(6176), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6180), 1, + sym_test_operator, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(6164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6170), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6178), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2099), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2796), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111397] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1316), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110582] = 20, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + ACTIONS(5268), 1, + aux_sym_number_token1, + ACTIONS(5270), 1, + aux_sym_number_token2, + ACTIONS(5274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6066), 1, + sym_word, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, + anon_sym_BQUOTE, + ACTIONS(6176), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6298), 1, + sym__special_character, + ACTIONS(6302), 1, + sym_test_operator, + STATE(3067), 1, + aux_sym__literal_repeat1, + ACTIONS(6164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6178), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6300), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2190), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3092), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111467] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(3749), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(3753), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(3755), 1, + sym__special_character, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6292), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(3759), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + STATE(698), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1841), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154043,86 +152879,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110655] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5571), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5573), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [110694] = 20, + [111537] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(3749), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(3753), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(3755), 1, + sym__special_character, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6294), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(3759), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2328), 2, + STATE(692), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1841), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154132,50 +152930,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110767] = 20, + [111607] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(6310), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6316), 1, + sym__special_character, + ACTIONS(6318), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6322), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6324), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6330), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6332), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6336), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(6338), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6296), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(1930), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6312), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6320), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6334), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2312), 2, + STATE(616), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1583), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154185,50 +152981,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110840] = 20, + [111677] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(6310), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6316), 1, + sym__special_character, + ACTIONS(6318), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6322), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6324), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6330), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6332), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6336), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(6338), 1, + sym__brace_start, + STATE(1930), 1, + aux_sym__literal_repeat1, + ACTIONS(6312), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6320), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6334), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(623), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1583), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111747] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2744), 1, + sym_word, + ACTIONS(2748), 1, + anon_sym_DOLLAR, + ACTIONS(2754), 1, + aux_sym_number_token1, + ACTIONS(2756), 1, + aux_sym_number_token2, + ACTIONS(2760), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2770), 1, sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(6342), 1, sym__special_character, - ACTIONS(6298), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6344), 1, + anon_sym_DQUOTE, + ACTIONS(6348), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6350), 1, + anon_sym_BQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6356), 1, + sym_test_operator, + STATE(1374), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6340), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6346), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + STATE(518), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154238,30 +153083,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110913] = 7, + [111817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, + ACTIONS(6190), 1, anon_sym_DQUOTE, - STATE(2781), 1, + STATE(3273), 1, sym_string, - ACTIONS(1217), 2, + ACTIONS(1237), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(5445), 2, + ACTIONS(6192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, + ACTIONS(6188), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1215), 16, + ACTIONS(1235), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -154276,52 +153121,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - anon_sym_LF, anon_sym_LT_LT_LT, - [110960] = 20, + [111863] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(2744), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(2754), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(2756), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2770), 1, + sym__brace_start, + ACTIONS(6342), 1, + sym__special_character, + ACTIONS(6344), 1, + anon_sym_DQUOTE, + ACTIONS(6348), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6350), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6356), 1, sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6300), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(1374), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6340), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6346), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2350), 2, + STATE(524), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154331,50 +153173,118 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111033] = 20, + [111933] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(1266), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, aux_sym_number_token1, - ACTIONS(4250), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1271), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [111971] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + sym_word, + ACTIONS(1348), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(4264), 1, + [112009] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2915), 1, + sym_word, + ACTIONS(2919), 1, + anon_sym_DOLLAR, + ACTIONS(2925), 1, + aux_sym_number_token1, + ACTIONS(2927), 1, + aux_sym_number_token2, + ACTIONS(2931), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2941), 1, sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(6282), 1, sym__special_character, - ACTIONS(6302), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6284), 1, + anon_sym_DQUOTE, + ACTIONS(6288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6290), 1, + anon_sym_BQUOTE, + ACTIONS(6292), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6296), 1, + sym_test_operator, + STATE(1458), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6280), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6286), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + STATE(555), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154384,50 +153294,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111106] = 20, + [112079] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(1304), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4240), 1, + ACTIONS(1306), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [112117] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5795), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5797), 1, + sym__special_character, + ACTIONS(5799), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5803), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5805), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5811), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5823), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6304), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6358), 1, + sym_word, + ACTIONS(6362), 1, + sym_test_operator, + STATE(1206), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6360), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(491), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(956), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154437,50 +153380,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111179] = 20, + [112187] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5795), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5797), 1, + sym__special_character, + ACTIONS(5799), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5803), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5805), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5811), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5823), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6306), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6358), 1, + sym_word, + ACTIONS(6362), 1, + sym_test_operator, + STATE(1206), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2321), 2, + ACTIONS(6360), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(487), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(956), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154490,158 +153431,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111252] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1320), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111291] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5571), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5573), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111330] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1328), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111369] = 20, + [112257] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5831), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5833), 1, + sym__special_character, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5839), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5841), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5847), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5859), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6308), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6274), 1, + sym_word, + ACTIONS(6278), 1, + sym_test_operator, + STATE(2375), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6276), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1528), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(2224), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154651,50 +153482,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111442] = 20, + [112327] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(3242), 1, sym__special_character, - ACTIONS(6310), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6364), 1, + sym_word, + ACTIONS(6368), 1, + sym_test_operator, + ACTIONS(6370), 1, + sym_regex, + STATE(1685), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(1838), 1, + sym_concatenation, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2383), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6366), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1542), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154704,232 +153534,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111515] = 5, + [112399] = 19, ACTIONS(63), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(2303), 1, + sym_word, + ACTIONS(2307), 1, anon_sym_DOLLAR, + ACTIONS(2313), 1, aux_sym_number_token1, + ACTIONS(2315), 1, aux_sym_number_token2, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3843), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2329), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6374), 1, sym__special_character, + ACTIONS(6376), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6380), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6382), 1, + anon_sym_BQUOTE, + ACTIONS(6384), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6388), 1, + sym_test_operator, + STATE(1189), 1, + aux_sym__literal_repeat1, + ACTIONS(6372), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6378), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6386), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [111558] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111597] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1296), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111636] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5665), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5667), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111675] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5661), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111714] = 20, + STATE(479), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(915), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112469] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5921), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5923), 1, + sym__special_character, + ACTIONS(5925), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5929), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5931), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5933), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5935), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5937), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6314), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6390), 1, + sym_word, + ACTIONS(6394), 1, + sym_test_operator, + STATE(1093), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5941), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2357), 2, + ACTIONS(6392), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(460), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(778), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154939,232 +153636,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111787] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111826] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1296), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111865] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111904] = 5, + [112539] = 20, ACTIONS(63), 1, sym_comment, - STATE(2377), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6396), 1, + sym_word, + ACTIONS(6400), 1, anon_sym_DOLLAR, + ACTIONS(6402), 1, + sym__special_character, + ACTIONS(6404), 1, + anon_sym_DQUOTE, + ACTIONS(6408), 1, aux_sym_number_token1, + ACTIONS(6410), 1, aux_sym_number_token2, + ACTIONS(6412), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6414), 1, + anon_sym_RBRACE3, + ACTIONS(6416), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6418), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(3839), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6420), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6424), 1, + sym_test_operator, + ACTIONS(6426), 1, sym__brace_start, + STATE(3864), 1, + aux_sym__literal_repeat1, + STATE(4159), 1, + sym_concatenation, + ACTIONS(6398), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6406), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6422), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [111947] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6153), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6155), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111986] = 20, + STATE(3821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112611] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(5921), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(5923), 1, + sym__special_character, + ACTIONS(5925), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(5929), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(5931), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(5933), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(5935), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(5937), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6316), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6390), 1, + sym_word, + ACTIONS(6394), 1, + sym_test_operator, + STATE(1093), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(5917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5941), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2329), 2, + ACTIONS(6392), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(452), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(778), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155174,50 +153739,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112059] = 20, + [112681] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(2303), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(2307), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(2313), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(2315), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2329), 1, + sym__brace_start, + ACTIONS(6374), 1, + sym__special_character, + ACTIONS(6376), 1, + anon_sym_DQUOTE, + ACTIONS(6380), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6382), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6384), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6388), 1, sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6318), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(1189), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6378), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6386), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + STATE(478), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155227,50 +153790,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112132] = 20, + [112751] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(2094), 1, - anon_sym_RPAREN, - ACTIONS(6320), 1, - sym_word, - ACTIONS(6326), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(6329), 1, - sym__special_character, - ACTIONS(6332), 1, - anon_sym_DQUOTE, - ACTIONS(6338), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(6341), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(6344), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6350), 1, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(6353), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6359), 1, + ACTIONS(6428), 1, + sym_word, + ACTIONS(6432), 1, sym_test_operator, - ACTIONS(6362), 1, - sym__brace_start, - STATE(3355), 1, + ACTIONS(6434), 1, + sym_extglob_pattern, + STATE(3843), 1, aux_sym__literal_repeat1, - ACTIONS(6323), 2, + STATE(4020), 1, + sym_concatenation, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6335), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6356), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6430), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3791), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155280,50 +153842,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112205] = 20, + [112823] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(627), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(639), 1, sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(4043), 1, sym__special_character, - ACTIONS(6365), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6436), 1, + sym_word, + ACTIONS(6440), 1, + sym_test_operator, + ACTIONS(6442), 1, + sym_regex, + STATE(889), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(1097), 1, + sym_concatenation, + ACTIONS(595), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6438), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(737), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155333,230 +153894,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112278] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112317] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1320), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112356] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112434] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112473] = 20, + [112895] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5171), 1, + sym__special_character, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6444), 1, + sym_word, + ACTIONS(6448), 1, sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6367), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6450), 1, + sym_extglob_pattern, + STATE(3900), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(4103), 1, + sym_concatenation, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2365), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6446), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3826), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155566,50 +153946,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112546] = 20, + [112967] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(3532), 1, + sym_word, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(6452), 1, sym__special_character, - ACTIONS(6369), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6456), 1, + sym_test_operator, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, + ACTIONS(6454), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(653), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155619,268 +153997,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112619] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1324), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112658] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1328), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112697] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5665), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5667), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112736] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112775] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1274), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112814] = 5, + [113037] = 19, ACTIONS(63), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(2843), 1, anon_sym_DOLLAR, + ACTIONS(2849), 1, aux_sym_number_token1, + ACTIONS(2851), 1, aux_sym_number_token2, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2865), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [112857] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, + ACTIONS(3532), 1, sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, + ACTIONS(6452), 1, sym__special_character, - ACTIONS(6371), 1, - anon_sym_RPAREN, - STATE(3355), 1, + ACTIONS(6456), 1, + sym_test_operator, + STATE(1449), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2370), 2, + ACTIONS(6454), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(655), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155890,50 +154048,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112930] = 20, - ACTIONS(63), 1, + [113107] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6466), 1, + anon_sym_LF, + ACTIONS(6468), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6472), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6476), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6478), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6480), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2562), 1, + sym__c_terminator, + STATE(4215), 1, + sym__for_body, + ACTIONS(6458), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3779), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [113180] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6373), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6486), 1, + anon_sym_RBRACK, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155943,196 +154149,183 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113003] = 3, - ACTIONS(63), 1, + [113247] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1237), 1, + sym_file_descriptor, + ACTIONS(6496), 1, + anon_sym_DQUOTE, + STATE(3337), 1, + sym_string, + ACTIONS(6498), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6494), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113042] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1332), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113081] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2377), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 9, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1235), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [113292] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4092), 1, anon_sym_BQUOTE, + ACTIONS(6484), 1, sym_word, - ACTIONS(3987), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6500), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6488), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, + STATE(1748), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113359] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6502), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [113124] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1324), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113163] = 20, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1748), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113426] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(6504), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(6508), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6510), 1, + sym__special_character, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6530), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(6532), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6375), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(2812), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(2982), 1, + sym_concatenation, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6514), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(2601), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156142,88 +154335,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113236] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5887), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6249), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6253), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6251), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113279] = 20, - ACTIONS(63), 1, + [113495] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6377), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6534), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2317), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156233,86 +154384,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113352] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1332), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113391] = 20, - ACTIONS(63), 1, + [113562] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6379), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6536), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156322,50 +154433,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113464] = 20, + [113629] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(6538), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(6542), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6544), 1, + sym__special_character, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6550), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6552), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6558), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6560), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6564), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(6566), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6381), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(3298), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(3346), 1, + sym_concatenation, + ACTIONS(6540), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6548), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6562), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(3175), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156375,55 +154483,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113537] = 6, + [113698] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6312), 1, - aux_sym_concatenation_token1, - ACTIONS(6383), 1, - sym__concat, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6568), 1, + sym_word, + ACTIONS(6572), 1, anon_sym_DOLLAR, + ACTIONS(6574), 1, + sym__special_character, + ACTIONS(6576), 1, + anon_sym_DQUOTE, + ACTIONS(6580), 1, aux_sym_number_token1, + ACTIONS(6582), 1, aux_sym_number_token2, + ACTIONS(6584), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6586), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6588), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6590), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6594), 1, + sym_test_operator, + ACTIONS(6596), 1, sym__brace_start, + STATE(3766), 1, + aux_sym__literal_repeat1, + STATE(3842), 1, + sym_concatenation, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(6578), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [113582] = 6, + STATE(3709), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113767] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(6312), 1, - aux_sym_concatenation_token1, - ACTIONS(6385), 1, - sym__concat, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 9, + ACTIONS(6598), 1, + sym__special_character, + STATE(2350), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -156431,9 +154548,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 19, + ACTIONS(1369), 19, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -156444,58 +154560,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [113627] = 19, + [113808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6466), 1, anon_sym_LF, - ACTIONS(5483), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR, - ACTIONS(5487), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(5489), 1, + ACTIONS(6472), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(5493), 1, + ACTIONS(6476), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(6478), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, + ACTIONS(6480), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6389), 1, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2562), 1, + sym__c_terminator, + STATE(4273), 1, + sym__for_body, + ACTIONS(6458), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3779), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [113881] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6508), 1, + anon_sym_DOLLAR, + ACTIONS(6510), 1, sym__special_character, - ACTIONS(6391), 1, + ACTIONS(6512), 1, + anon_sym_DQUOTE, + ACTIONS(6516), 1, + aux_sym_number_token1, + ACTIONS(6518), 1, + aux_sym_number_token2, + ACTIONS(6520), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6522), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6524), 1, + anon_sym_BQUOTE, + ACTIONS(6526), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6532), 1, + sym__brace_start, + ACTIONS(6601), 1, + sym_word, + ACTIONS(6605), 1, sym_test_operator, - STATE(3090), 1, + STATE(2811), 1, aux_sym__literal_repeat1, - ACTIONS(5479), 2, + STATE(2981), 1, + sym_concatenation, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, + ACTIONS(6603), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(3139), 9, + STATE(2645), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156505,50 +154671,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113698] = 20, + [113950] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(6607), 1, sym_word, - ACTIONS(4240), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(6613), 1, + sym__special_character, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, + ACTIONS(6633), 1, sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6393), 1, - anon_sym_RPAREN, - STATE(3355), 1, + STATE(2820), 1, aux_sym__literal_repeat1, - ACTIONS(4236), 2, + STATE(2999), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, + ACTIONS(6617), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2334), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + STATE(2841), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156558,49 +154721,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113771] = 19, - ACTIONS(3), 1, + [114019] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2049), 1, - anon_sym_LF, - ACTIONS(5483), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(5487), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(5489), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5493), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(5499), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5505), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6389), 1, + ACTIONS(6637), 1, + sym_word, + ACTIONS(6639), 1, sym__special_character, - ACTIONS(6391), 1, + ACTIONS(6643), 1, sym_test_operator, - STATE(3090), 1, + STATE(2747), 1, aux_sym__literal_repeat1, - ACTIONS(5479), 2, + STATE(3001), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, + ACTIONS(6641), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(3139), 9, + STATE(2910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156610,124 +154771,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113842] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1274), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113881] = 5, - ACTIONS(63), 1, + [114088] = 18, + ACTIONS(3), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4092), 1, anon_sym_BQUOTE, + ACTIONS(6484), 1, sym_word, - ACTIONS(1244), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6645), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6488), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113924] = 20, - ACTIONS(63), 1, + STATE(1748), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114155] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4244), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4250), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4252), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6395), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6647), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156737,15 +154869,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113997] = 5, + [114222] = 5, ACTIONS(63), 1, sym_comment, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6397), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 9, + ACTIONS(6649), 1, + sym__special_character, + STATE(2350), 1, + aux_sym__literal_repeat1, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -156753,9 +154884,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 19, + ACTIONS(3743), 19, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -156766,127 +154896,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114040] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5755), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6259), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6263), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6261), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [114083] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6404), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6402), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(626), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114153] = 7, + sym_test_operator, + [114263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, + ACTIONS(1233), 1, sym_file_descriptor, - ACTIONS(6408), 1, + ACTIONS(6496), 1, anon_sym_DQUOTE, - STATE(3535), 1, + STATE(3337), 1, sym_string, - ACTIONS(6410), 2, + ACTIONS(6498), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, + ACTIONS(6494), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1205), 16, + ACTIONS(1225), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -156895,7 +154936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156903,162 +154943,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [114199] = 7, - ACTIONS(3), 1, + [114308] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(6611), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, aux_sym_number_token1, + ACTIONS(6621), 1, aux_sym_number_token2, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6627), 1, anon_sym_BQUOTE, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(6635), 1, + sym__brace_start, + ACTIONS(6639), 1, + sym__special_character, + ACTIONS(6651), 1, sym_word, + ACTIONS(6655), 1, sym_test_operator, - [114245] = 3, + STATE(2820), 1, + aux_sym__literal_repeat1, + STATE(2999), 1, + sym_concatenation, + ACTIONS(6609), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6631), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6653), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2828), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114377] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6657), 1, + sym_word, + ACTIONS(6661), 1, anon_sym_DOLLAR, + ACTIONS(6663), 1, + sym__special_character, + ACTIONS(6665), 1, + anon_sym_DQUOTE, + ACTIONS(6669), 1, aux_sym_number_token1, + ACTIONS(6671), 1, aux_sym_number_token2, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6677), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6679), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(6683), 1, sym_test_operator, - [114283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, + ACTIONS(6685), 1, sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, + STATE(3326), 1, + aux_sym__literal_repeat1, + STATE(3359), 1, + sym_concatenation, + ACTIONS(6659), 2, anon_sym_LPAREN_LPAREN, - anon_sym_LF, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(6667), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [114329] = 20, + STATE(3255), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114446] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(6574), 1, + sym__special_character, + ACTIONS(6576), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(6580), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(6582), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(6586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(6588), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(6590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(6596), 1, sym__brace_start, - ACTIONS(4170), 1, - sym__special_character, - ACTIONS(6412), 1, + ACTIONS(6687), 1, sym_word, - ACTIONS(6416), 1, + ACTIONS(6691), 1, sym_test_operator, - ACTIONS(6418), 1, - sym_regex, - STATE(1139), 1, + STATE(3773), 1, aux_sym__literal_repeat1, - STATE(1278), 1, + STATE(3855), 1, sym_concatenation, - ACTIONS(340), 2, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6414), 2, + ACTIONS(6689), 2, sym_raw_string, sym_ansi_c_string, - STATE(1377), 9, + STATE(3712), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157068,49 +155093,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114401] = 20, + [114515] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(6508), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(6532), 1, sym__brace_start, - ACTIONS(4217), 1, - sym__special_character, - ACTIONS(6418), 1, - sym_regex, - ACTIONS(6420), 1, + ACTIONS(6693), 1, sym_word, - ACTIONS(6424), 1, + ACTIONS(6695), 1, + sym__special_character, + ACTIONS(6699), 1, sym_test_operator, - STATE(1139), 1, + STATE(2812), 1, aux_sym__literal_repeat1, - STATE(1278), 1, + STATE(2982), 1, sym_concatenation, - ACTIONS(340), 2, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6422), 2, + ACTIONS(6697), 2, sym_raw_string, sym_ansi_c_string, - STATE(935), 9, + STATE(2783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157120,48 +155143,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114473] = 19, + [114584] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6040), 1, + ACTIONS(6508), 1, anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(6532), 1, sym__brace_start, - ACTIONS(6426), 1, + ACTIONS(6695), 1, + sym__special_character, + ACTIONS(6701), 1, sym_word, - ACTIONS(6430), 1, + ACTIONS(6705), 1, sym_test_operator, - STATE(2495), 1, + STATE(2811), 1, aux_sym__literal_repeat1, - ACTIONS(6036), 2, + STATE(2981), 1, + sym_concatenation, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6428), 2, + ACTIONS(6703), 2, sym_raw_string, sym_ansi_c_string, - STATE(1467), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2368), 9, + STATE(2785), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157171,48 +155193,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114543] = 19, + [114653] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6040), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6426), 1, + ACTIONS(6707), 1, sym_word, - ACTIONS(6430), 1, + ACTIONS(6709), 1, + sym__special_character, + ACTIONS(6713), 1, sym_test_operator, - STATE(2495), 1, + STATE(2747), 1, aux_sym__literal_repeat1, - ACTIONS(6036), 2, + STATE(3001), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6428), 2, + ACTIONS(6711), 2, sym_raw_string, sym_ansi_c_string, - STATE(1520), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2368), 9, + STATE(3045), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157222,83 +155243,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114613] = 3, + [114722] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6611), 1, anon_sym_DOLLAR, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, aux_sym_number_token1, + ACTIONS(6621), 1, aux_sym_number_token2, + ACTIONS(6623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6627), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114651] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2697), 1, - sym_word, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6434), 1, + ACTIONS(6709), 1, sym__special_character, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6448), 1, + ACTIONS(6715), 1, + sym_word, + ACTIONS(6719), 1, sym_test_operator, - STATE(1386), 1, + STATE(2820), 1, aux_sym__literal_repeat1, - ACTIONS(6432), 2, + STATE(2999), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6438), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6446), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(522), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1179), 9, + ACTIONS(6717), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157308,48 +155293,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114721] = 19, + [114791] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 1, + anon_sym_SLASH, + ACTIONS(5236), 1, + anon_sym_PERCENT, + ACTIONS(5238), 1, + anon_sym_COLON, + ACTIONS(5481), 1, + anon_sym_AT, + ACTIONS(6091), 1, + anon_sym_LBRACK, + STATE(4536), 1, + sym__expansion_operator, + STATE(4537), 1, + sym__expansion_max_length, + STATE(4538), 1, + sym__expansion_regex_removal, + STATE(4539), 1, + sym__expansion_regex_replacement, + STATE(4540), 1, + sym__expansion_regex, + STATE(4541), 1, + sym__expansion_expression, + ACTIONS(5232), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(5252), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(5240), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(5250), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(5248), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [114856] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(2697), 1, - sym_word, - ACTIONS(2701), 1, + ACTIONS(6542), 1, anon_sym_DOLLAR, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6434), 1, + ACTIONS(6544), 1, sym__special_character, - ACTIONS(6436), 1, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6550), 1, + aux_sym_number_token1, + ACTIONS(6552), 1, + aux_sym_number_token2, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, + ACTIONS(6556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6558), 1, anon_sym_BQUOTE, - ACTIONS(6444), 1, + ACTIONS(6560), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6448), 1, + ACTIONS(6566), 1, + sym__brace_start, + ACTIONS(6721), 1, + sym_word, + ACTIONS(6725), 1, sym_test_operator, - STATE(1386), 1, + STATE(3266), 1, aux_sym__literal_repeat1, - ACTIONS(6432), 2, + STATE(3345), 1, + sym_concatenation, + ACTIONS(6540), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6438), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6446), 2, + ACTIONS(6562), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(526), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1179), 9, + ACTIONS(6723), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3165), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157359,49 +155391,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114791] = 20, - ACTIONS(63), 1, + [114925] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4838), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(4092), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6450), 1, + ACTIONS(6484), 1, sym_word, - ACTIONS(6454), 1, + ACTIONS(6492), 1, sym_test_operator, - ACTIONS(6456), 1, - sym_extglob_pattern, - STATE(4071), 1, - aux_sym__literal_repeat1, - STATE(4285), 1, - sym_concatenation, - ACTIONS(5415), 2, + ACTIONS(6727), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6452), 2, + ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(4042), 9, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157411,83 +155440,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114863] = 3, - ACTIONS(63), 1, + [114992] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6466), 1, + anon_sym_LF, + ACTIONS(6468), 1, anon_sym_DOLLAR, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, aux_sym_number_token1, + ACTIONS(6474), 1, aux_sym_number_token2, + ACTIONS(6476), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6478), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6480), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114901] = 19, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2562), 1, + sym__c_terminator, + STATE(4575), 1, + sym__for_body, + ACTIONS(6458), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3779), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [115065] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5911), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(5913), 1, + ACTIONS(6613), 1, sym__special_character, - ACTIONS(5915), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5923), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6458), 1, + ACTIONS(6729), 1, sym_word, - ACTIONS(6462), 1, + ACTIONS(6733), 1, sym_test_operator, - STATE(1204), 1, + STATE(2747), 1, aux_sym__literal_repeat1, - ACTIONS(5907), 2, + STATE(3001), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6460), 2, + ACTIONS(6731), 2, sym_raw_string, sym_ansi_c_string, - STATE(497), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(942), 9, + STATE(2847), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157497,88 +155542,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114971] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6408), 1, - anon_sym_DQUOTE, - STATE(3535), 1, - sym_string, - ACTIONS(6410), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [115017] = 20, + [115134] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(442), 1, + ACTIONS(6661), 1, anon_sym_DOLLAR, - ACTIONS(446), 1, + ACTIONS(6663), 1, + sym__special_character, + ACTIONS(6665), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(6669), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(6671), 1, aux_sym_number_token2, - ACTIONS(454), 1, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, + ACTIONS(6677), 1, anon_sym_BQUOTE, - ACTIONS(460), 1, + ACTIONS(6679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, + ACTIONS(6685), 1, sym__brace_start, - ACTIONS(4226), 1, - sym__special_character, - ACTIONS(6464), 1, + ACTIONS(6735), 1, sym_word, - ACTIONS(6468), 1, + ACTIONS(6739), 1, sym_test_operator, - ACTIONS(6470), 1, - sym_regex, - STATE(792), 1, + STATE(3324), 1, aux_sym__literal_repeat1, - STATE(950), 1, + STATE(3367), 1, sym_concatenation, - ACTIONS(406), 2, + ACTIONS(6659), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, + ACTIONS(6681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6466), 2, + ACTIONS(6737), 2, sym_raw_string, sym_ansi_c_string, - STATE(681), 9, + STATE(3288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157588,48 +155592,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115089] = 19, + [115203] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5711), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(5719), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5721), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5723), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(5729), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6472), 1, + ACTIONS(6741), 1, sym_word, - ACTIONS(6476), 1, + ACTIONS(6743), 1, + sym__special_character, + ACTIONS(6747), 1, sym_test_operator, - STATE(1438), 1, + STATE(2820), 1, aux_sym__literal_repeat1, - ACTIONS(5707), 2, + STATE(2999), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6474), 2, + ACTIONS(6745), 2, sym_raw_string, sym_ansi_c_string, - STATE(520), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1129), 9, + STATE(2945), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157639,48 +155642,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115159] = 19, + [115272] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6478), 1, - sym_word, - ACTIONS(6482), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(6484), 1, - sym__special_character, - ACTIONS(6486), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(6490), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(6492), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(6494), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6500), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6504), 1, - sym_test_operator, - ACTIONS(6506), 1, + ACTIONS(6635), 1, sym__brace_start, - STATE(1968), 1, + ACTIONS(6743), 1, + sym__special_character, + ACTIONS(6749), 1, + sym_word, + ACTIONS(6753), 1, + sym_test_operator, + STATE(2747), 1, aux_sym__literal_repeat1, - ACTIONS(6480), 2, + STATE(3001), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6488), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6502), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(620), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, + ACTIONS(6751), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2952), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157690,48 +155692,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115229] = 19, - ACTIONS(63), 1, + [115341] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(6478), 1, - sym_word, - ACTIONS(6482), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(6484), 1, - sym__special_character, - ACTIONS(6486), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(6490), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(6492), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(6494), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6504), 1, - sym_test_operator, - ACTIONS(6506), 1, + ACTIONS(385), 1, sym__brace_start, - STATE(1968), 1, - aux_sym__literal_repeat1, - ACTIONS(6480), 2, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, + sym_word, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6755), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, ACTIONS(6488), 2, + sym__special_character, + sym__comment_word, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(627), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157741,10 +155741,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115299] = 3, + [115408] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 9, + ACTIONS(6649), 1, + sym__special_character, + STATE(2350), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -157752,11 +155756,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1296), 21, + ACTIONS(3888), 19, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -157766,58 +155768,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [115337] = 19, + [115449] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5791), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(6400), 1, + ACTIONS(6757), 1, sym_word, - ACTIONS(6404), 1, + ACTIONS(6759), 1, + sym__special_character, + ACTIONS(6763), 1, sym_test_operator, - STATE(1443), 1, + STATE(2820), 1, aux_sym__literal_repeat1, - ACTIONS(5787), 2, + STATE(2999), 1, + sym_concatenation, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6402), 2, + ACTIONS(6761), 2, sym_raw_string, sym_ansi_c_string, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1580), 9, + STATE(3171), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157827,49 +155827,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115407] = 20, + [115518] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(3218), 1, + ACTIONS(6759), 1, sym__special_character, - ACTIONS(6508), 1, + ACTIONS(6765), 1, sym_word, - ACTIONS(6512), 1, + ACTIONS(6769), 1, sym_test_operator, - ACTIONS(6514), 1, - sym_regex, - STATE(1826), 1, + STATE(2747), 1, aux_sym__literal_repeat1, - STATE(2014), 1, + STATE(3001), 1, sym_concatenation, - ACTIONS(1033), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6510), 2, + ACTIONS(6767), 2, sym_raw_string, sym_ansi_c_string, - STATE(1460), 9, + STATE(3168), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157879,84 +155877,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115479] = 3, - ACTIONS(63), 1, + [115587] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4092), 1, anon_sym_BQUOTE, + ACTIONS(6484), 1, sym_word, - ACTIONS(1300), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(6492), 1, + sym_test_operator, + ACTIONS(6771), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6488), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115517] = 20, + STATE(1748), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115654] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, + ACTIONS(6574), 1, sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6576), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6580), 1, + aux_sym_number_token1, + ACTIONS(6582), 1, + aux_sym_number_token2, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6586), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6588), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6516), 1, + ACTIONS(6596), 1, + sym__brace_start, + ACTIONS(6773), 1, sym_word, - ACTIONS(6520), 1, + ACTIONS(6777), 1, sym_test_operator, - ACTIONS(6522), 1, - sym_extglob_pattern, - STATE(4083), 1, + STATE(3767), 1, aux_sym__literal_repeat1, - STATE(4259), 1, + STATE(3840), 1, sym_concatenation, - ACTIONS(5415), 2, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6518), 2, + ACTIONS(6775), 2, sym_raw_string, sym_ansi_c_string, - STATE(4025), 9, + STATE(3700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157966,48 +155976,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115589] = 19, - ACTIONS(63), 1, + [115723] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 1, + ACTIONS(3112), 1, anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, + ACTIONS(3116), 1, anon_sym_DQUOTE, - ACTIONS(5719), 1, + ACTIONS(3120), 1, aux_sym_number_token1, - ACTIONS(5721), 1, + ACTIONS(3122), 1, aux_sym_number_token2, - ACTIONS(5723), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, + ACTIONS(3126), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, + ACTIONS(3128), 1, anon_sym_BQUOTE, - ACTIONS(5729), 1, + ACTIONS(3130), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, + ACTIONS(3140), 1, sym__brace_start, - ACTIONS(6472), 1, + ACTIONS(6779), 1, sym_word, - ACTIONS(6476), 1, - sym_test_operator, - STATE(1438), 1, - aux_sym__literal_repeat1, - ACTIONS(5707), 2, + ACTIONS(6785), 1, + sym__comment_word, + ACTIONS(3110), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, + ACTIONS(3132), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6474), 2, + ACTIONS(6781), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6783), 2, sym_raw_string, sym_ansi_c_string, - STATE(517), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1129), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158017,153 +156023,185 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115659] = 3, - ACTIONS(63), 1, + [115787] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, aux_sym_number_token1, + ACTIONS(6621), 1, aux_sym_number_token2, + ACTIONS(6623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6627), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6635), 1, sym__brace_start, + ACTIONS(6787), 1, + sym_word, + ACTIONS(6789), 1, + anon_sym_DOLLAR, + ACTIONS(6795), 1, + sym__comment_word, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6791), 2, + sym__special_character, sym_test_operator, - [115697] = 3, - ACTIONS(63), 1, + ACTIONS(6793), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2768), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115851] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5362), 1, anon_sym_DOLLAR, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, aux_sym_number_token1, + ACTIONS(5372), 1, aux_sym_number_token2, + ACTIONS(5374), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5380), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5390), 1, sym__brace_start, + ACTIONS(6797), 1, + sym_word, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6799), 2, + sym__special_character, sym_test_operator, - [115735] = 3, - ACTIONS(63), 1, + ACTIONS(6801), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2652), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115915] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(340), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, + sym_word, + ACTIONS(6807), 1, + anon_sym_DOLLAR, + ACTIONS(6813), 1, + sym__comment_word, + ACTIONS(1145), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6809), 2, + sym__special_character, sym_test_operator, - [115773] = 19, - ACTIONS(63), 1, + ACTIONS(6811), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1552), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115979] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5913), 1, - sym__special_character, - ACTIONS(5915), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(5923), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(6458), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6462), 1, - sym_test_operator, - STATE(1204), 1, - aux_sym__literal_repeat1, - ACTIONS(5907), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(6815), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6460), 2, + ACTIONS(6799), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(500), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(942), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158173,48 +156211,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115843] = 19, - ACTIONS(63), 1, + [116043] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, - sym_word, - ACTIONS(2474), 1, + ACTIONS(6400), 1, anon_sym_DOLLAR, - ACTIONS(2480), 1, + ACTIONS(6404), 1, + anon_sym_DQUOTE, + ACTIONS(6408), 1, aux_sym_number_token1, - ACTIONS(2482), 1, + ACTIONS(6410), 1, aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6526), 1, - sym__special_character, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, + ACTIONS(6416), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6418), 1, anon_sym_BQUOTE, - ACTIONS(6536), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6540), 1, - sym_test_operator, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(6524), 2, + ACTIONS(6426), 1, + sym__brace_start, + ACTIONS(6817), 1, + sym_word, + ACTIONS(6823), 1, + sym__comment_word, + ACTIONS(6398), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6538), 2, + ACTIONS(6422), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(507), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(913), 9, + ACTIONS(6819), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6821), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3891), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158224,48 +156258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115913] = 19, - ACTIONS(63), 1, + [116107] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, + ACTIONS(6318), 1, + anon_sym_DQUOTE, + ACTIONS(6322), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6324), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6330), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(6332), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, + ACTIONS(6338), 1, + sym__brace_start, + ACTIONS(6825), 1, + sym_word, + ACTIONS(6827), 1, + anon_sym_DOLLAR, + ACTIONS(6833), 1, + sym__comment_word, + ACTIONS(6312), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, + ACTIONS(6334), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2233), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, + ACTIONS(6829), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6831), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1722), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158275,48 +156305,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115983] = 19, - ACTIONS(63), 1, + [116171] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, - sym_word, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2480), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(2482), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(2486), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(6526), 1, - sym__special_character, - ACTIONS(6528), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(6532), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(6536), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6540), 1, - sym_test_operator, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(6524), 2, + ACTIONS(6835), 1, + sym_word, + ACTIONS(6837), 1, + anon_sym_DOLLAR, + ACTIONS(6843), 1, + sym__comment_word, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6538), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(510), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(913), 9, + ACTIONS(6839), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6841), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158326,48 +156352,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116053] = 19, - ACTIONS(63), 1, + [116235] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(6318), 1, + anon_sym_DQUOTE, + ACTIONS(6322), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(6324), 1, aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3471), 1, - sym_word, - ACTIONS(6562), 1, - sym__special_character, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6330), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(6332), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6576), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(6338), 1, + sym__brace_start, + ACTIONS(6825), 1, + sym_word, + ACTIONS(6833), 1, + sym__comment_word, + ACTIONS(6845), 1, + anon_sym_DOLLAR, + ACTIONS(6312), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6566), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6574), 2, + ACTIONS(6334), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(649), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1878), 9, + ACTIONS(6829), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6831), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1722), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158377,83 +156399,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116123] = 3, - ACTIONS(63), 1, + [116299] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(6512), 1, + anon_sym_DQUOTE, + ACTIONS(6516), 1, aux_sym_number_token1, + ACTIONS(6518), 1, aux_sym_number_token2, + ACTIONS(6520), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6524), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6526), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6532), 1, sym__brace_start, + ACTIONS(6847), 1, + sym_word, + ACTIONS(6849), 1, + anon_sym_DOLLAR, + ACTIONS(6855), 1, + sym__comment_word, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6851), 2, + sym__special_character, sym_test_operator, - [116161] = 19, - ACTIONS(63), 1, + ACTIONS(6853), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2713), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116363] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(5799), 1, + anon_sym_DQUOTE, + ACTIONS(5803), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(5805), 1, aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3471), 1, - sym_word, - ACTIONS(6562), 1, - sym__special_character, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(5809), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5811), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6576), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(5823), 1, + sym__brace_start, + ACTIONS(6857), 1, + sym_word, + ACTIONS(6859), 1, + anon_sym_DOLLAR, + ACTIONS(6865), 1, + sym__comment_word, + ACTIONS(5791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6566), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6574), 2, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1878), 9, + ACTIONS(6861), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6863), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(996), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158463,48 +156493,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116231] = 19, - ACTIONS(63), 1, + [116427] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(6207), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(6209), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(6211), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(6217), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, + ACTIONS(6532), 1, sym__brace_start, - ACTIONS(6578), 1, + ACTIONS(6847), 1, sym_word, - ACTIONS(6582), 1, - sym_test_operator, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(6195), 2, + ACTIONS(6855), 1, + sym__comment_word, + ACTIONS(6867), 1, + anon_sym_DOLLAR, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6580), 2, + ACTIONS(6851), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6853), 2, sym_raw_string, sym_ansi_c_string, - STATE(469), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(784), 9, + STATE(2713), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158514,48 +156540,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116301] = 19, - ACTIONS(63), 1, + [116491] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, + ACTIONS(204), 1, + anon_sym_DQUOTE, + ACTIONS(208), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(210), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(214), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(216), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(218), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(6869), 1, + sym_word, + ACTIONS(6871), 1, + anon_sym_DOLLAR, + ACTIONS(6877), 1, + sym__comment_word, + ACTIONS(190), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, + ACTIONS(220), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2222), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, + ACTIONS(6873), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6875), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(385), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158565,48 +156587,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116371] = 19, - ACTIONS(63), 1, + [116555] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6207), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6209), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6211), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6217), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(6578), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6582), 1, - sym_test_operator, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(6195), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(6879), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6580), 2, + ACTIONS(6799), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(468), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(784), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158616,84 +156634,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116441] = 3, - ACTIONS(63), 1, + [116619] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(3116), 1, + anon_sym_DQUOTE, + ACTIONS(3120), 1, aux_sym_number_token1, + ACTIONS(3122), 1, aux_sym_number_token2, + ACTIONS(3124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3126), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3128), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(3130), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3140), 1, sym__brace_start, + ACTIONS(6779), 1, + sym_word, + ACTIONS(6785), 1, + sym__comment_word, + ACTIONS(6881), 1, + anon_sym_DOLLAR, + ACTIONS(3110), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3132), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6781), 2, + sym__special_character, sym_test_operator, - [116479] = 20, - ACTIONS(63), 1, + ACTIONS(6783), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1780), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116683] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(2919), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(4838), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, + ACTIONS(2941), 1, sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, + ACTIONS(6284), 1, anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(6288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(6290), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(6292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6584), 1, + ACTIONS(6883), 1, sym_word, - ACTIONS(6588), 1, - sym_test_operator, - ACTIONS(6590), 1, - sym_extglob_pattern, - STATE(4140), 1, - aux_sym__literal_repeat1, - STATE(4338), 1, - sym_concatenation, - ACTIONS(5415), 2, + ACTIONS(6889), 1, + sym__comment_word, + ACTIONS(6280), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, + ACTIONS(6294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6586), 2, + ACTIONS(6885), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6887), 2, sym_raw_string, sym_ansi_c_string, - STATE(4062), 9, + STATE(1384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158703,48 +156728,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116551] = 19, - ACTIONS(63), 1, + [116747] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, + ACTIONS(3116), 1, anon_sym_DQUOTE, - ACTIONS(3811), 1, + ACTIONS(3120), 1, aux_sym_number_token1, - ACTIONS(3813), 1, + ACTIONS(3122), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, + ACTIONS(3126), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, + ACTIONS(3128), 1, anon_sym_BQUOTE, - ACTIONS(3821), 1, + ACTIONS(3130), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, + ACTIONS(3140), 1, sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, + ACTIONS(6779), 1, + sym_word, + ACTIONS(6785), 1, + sym__comment_word, + ACTIONS(6891), 1, + anon_sym_DOLLAR, + ACTIONS(3110), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, + ACTIONS(3132), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(746), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2020), 9, + ACTIONS(6781), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6783), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158754,84 +156775,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116621] = 3, - ACTIONS(63), 1, + [116811] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(166), 1, aux_sym_number_token1, + ACTIONS(168), 1, aux_sym_number_token2, + ACTIONS(172), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(186), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [116659] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, + ACTIONS(4130), 1, anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(4209), 1, - sym__special_character, - ACTIONS(6592), 1, + ACTIONS(6893), 1, sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6598), 1, - sym_regex, - STATE(907), 1, - aux_sym__literal_repeat1, - STATE(1146), 1, - sym_concatenation, - ACTIONS(546), 2, + ACTIONS(6895), 1, + anon_sym_DOLLAR, + ACTIONS(6901), 1, + sym__comment_word, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6594), 2, + ACTIONS(6897), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6899), 2, sym_raw_string, sym_ansi_c_string, - STATE(729), 9, + STATE(1568), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158841,48 +156822,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116731] = 19, - ACTIONS(63), 1, + [116875] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, + ACTIONS(5835), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5839), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5841), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5847), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(5859), 1, sym__brace_start, - ACTIONS(5891), 1, - sym__special_character, - ACTIONS(6600), 1, + ACTIONS(6903), 1, sym_word, - ACTIONS(6604), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(6905), 1, + anon_sym_DOLLAR, + ACTIONS(6911), 1, + sym__comment_word, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6602), 2, + ACTIONS(6907), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6909), 2, sym_raw_string, sym_ansi_c_string, - STATE(519), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1122), 9, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158892,48 +156869,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116801] = 19, - ACTIONS(63), 1, + [116939] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, - sym_word, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(3030), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6622), 1, - sym_test_operator, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(6606), 2, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, + sym_word, + ACTIONS(6813), 1, + sym__comment_word, + ACTIONS(6913), 1, + anon_sym_DOLLAR, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6612), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6620), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(558), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1212), 9, + ACTIONS(6809), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6811), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158943,48 +156916,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116871] = 19, - ACTIONS(63), 1, + [117003] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, - sym_word, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, + ACTIONS(5835), 1, + anon_sym_DQUOTE, + ACTIONS(5839), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(5841), 1, aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(5845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5847), 1, anon_sym_BQUOTE, - ACTIONS(6618), 1, + ACTIONS(5849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6622), 1, - sym_test_operator, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(6606), 2, + ACTIONS(5859), 1, + sym__brace_start, + ACTIONS(6903), 1, + sym_word, + ACTIONS(6911), 1, + sym__comment_word, + ACTIONS(6915), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6612), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6620), 2, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(568), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1212), 9, + ACTIONS(6907), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6909), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158994,48 +156963,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116941] = 19, - ACTIONS(63), 1, + [117067] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(3811), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(3813), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(3821), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, + ACTIONS(6635), 1, sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, + ACTIONS(6787), 1, + sym_word, + ACTIONS(6795), 1, + sym__comment_word, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(740), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2020), 9, + ACTIONS(6791), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6793), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159045,48 +157010,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117011] = 19, - ACTIONS(63), 1, + [117131] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(5891), 1, - sym__special_character, - ACTIONS(6600), 1, + ACTIONS(6917), 1, sym_word, - ACTIONS(6604), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(6919), 1, + anon_sym_DOLLAR, + ACTIONS(6925), 1, + sym__comment_word, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6602), 2, + ACTIONS(6921), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6923), 2, sym_raw_string, sym_ansi_c_string, - STATE(530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1122), 9, + STATE(412), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159096,48 +157057,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117081] = 19, - ACTIONS(63), 1, + [117195] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, + ACTIONS(5543), 1, + anon_sym_DQUOTE, + ACTIONS(5547), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(5549), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(5553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(5557), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6624), 1, - sym__special_character, - ACTIONS(6628), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, + ACTIONS(5567), 1, + sym__brace_start, + ACTIONS(6927), 1, + sym_word, + ACTIONS(6929), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + sym__comment_word, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6626), 2, + ACTIONS(6931), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6933), 2, sym_raw_string, sym_ansi_c_string, - STATE(2380), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3139), 9, + STATE(2638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159147,48 +157104,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117151] = 19, - ACTIONS(63), 1, + [117259] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(627), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6624), 1, - sym__special_character, - ACTIONS(6628), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(6937), 1, + sym_word, + ACTIONS(6939), 1, + anon_sym_DOLLAR, + ACTIONS(6945), 1, + sym__comment_word, + ACTIONS(595), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6626), 2, + ACTIONS(6941), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6943), 2, sym_raw_string, sym_ansi_c_string, - STATE(2378), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3139), 9, + STATE(813), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159198,48 +157151,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117221] = 19, - ACTIONS(63), 1, + [117323] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, + ACTIONS(1075), 1, anon_sym_DOLLAR, - ACTIONS(5489), 1, + ACTIONS(1079), 1, + anon_sym_DQUOTE, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(1089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, + ACTIONS(1101), 1, + sym__brace_start, + ACTIONS(6947), 1, + sym_word, + ACTIONS(6953), 1, + sym__comment_word, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2192), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, + ACTIONS(6949), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6951), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1676), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159249,84 +157198,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117291] = 3, - ACTIONS(63), 1, + [117387] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(5543), 1, + anon_sym_DQUOTE, + ACTIONS(5547), 1, aux_sym_number_token1, + ACTIONS(5549), 1, aux_sym_number_token2, + ACTIONS(5551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5553), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5555), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5567), 1, sym__brace_start, + ACTIONS(6927), 1, + sym_word, + ACTIONS(6935), 1, + sym__comment_word, + ACTIONS(6955), 1, + anon_sym_DOLLAR, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6931), 2, + sym__special_character, sym_test_operator, - [117329] = 20, - ACTIONS(41), 1, + ACTIONS(6933), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2638), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117451] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6024), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(71), 1, + ACTIONS(6048), 1, sym__brace_start, - ACTIONS(4181), 1, - sym__special_character, - ACTIONS(6630), 1, + ACTIONS(6957), 1, sym_word, - ACTIONS(6634), 1, - sym_test_operator, - ACTIONS(6636), 1, - sym_regex, - STATE(1079), 1, - aux_sym__literal_repeat1, - STATE(1342), 1, - sym_concatenation, - ACTIONS(13), 2, + ACTIONS(6963), 1, + sym__comment_word, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6632), 2, + ACTIONS(6959), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6961), 2, sym_raw_string, sym_ansi_c_string, - STATE(790), 9, + STATE(3104), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159336,10 +157292,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117401] = 3, + [117515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 9, + ACTIONS(3745), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -159347,11 +157303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 21, + ACTIONS(3747), 20, sym_file_descriptor, - sym__concat, sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -159361,58 +157315,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [117439] = 19, - ACTIONS(63), 1, + [117551] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, - sym_word, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(6564), 1, + ACTIONS(6965), 1, + sym_word, + ACTIONS(6969), 1, + anon_sym_DOLLAR, + ACTIONS(6973), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6979), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6638), 1, - sym__special_character, - ACTIONS(6642), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(6985), 1, + sym__comment_word, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6640), 2, + ACTIONS(6971), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - STATE(567), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1339), 9, + ACTIONS(6983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159422,48 +157372,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117509] = 19, - ACTIONS(63), 1, + [117615] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, - sym_word, - ACTIONS(2913), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(6564), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6638), 1, - sym__special_character, - ACTIONS(6642), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(6835), 1, + sym_word, + ACTIONS(6843), 1, + sym__comment_word, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6640), 2, + ACTIONS(6839), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6841), 2, sym_raw_string, sym_ansi_c_string, - STATE(545), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1339), 9, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159473,193 +157419,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117579] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117617] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117655] = 7, + [117679] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(6646), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [117701] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117739] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, + ACTIONS(6542), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(6550), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(6552), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(6556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(6558), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(6560), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(6566), 1, sym__brace_start, - ACTIONS(4160), 1, - sym__special_character, - ACTIONS(6418), 1, - sym_regex, - ACTIONS(6650), 1, + ACTIONS(6987), 1, sym_word, - ACTIONS(6654), 1, - sym_test_operator, - STATE(1139), 1, - aux_sym__literal_repeat1, - STATE(1278), 1, - sym_concatenation, - ACTIONS(340), 2, + ACTIONS(6993), 1, + sym__comment_word, + ACTIONS(6540), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(6562), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6652), 2, + ACTIONS(6989), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6991), 2, sym_raw_string, sym_ansi_c_string, - STATE(800), 9, + STATE(3265), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159669,83 +157466,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117811] = 3, - ACTIONS(63), 1, + [117743] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(166), 1, aux_sym_number_token1, + ACTIONS(168), 1, aux_sym_number_token2, + ACTIONS(172), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(186), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117849] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(4130), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(6893), 1, + sym_word, + ACTIONS(6901), 1, + sym__comment_word, + ACTIONS(6995), 1, + anon_sym_DOLLAR, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6658), 2, + ACTIONS(6897), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6899), 2, sym_raw_string, sym_ansi_c_string, - STATE(600), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, + STATE(1568), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159755,87 +157513,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117919] = 7, + [117807] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(6646), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2849), 1, aux_sym_number_token1, + ACTIONS(2851), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [117965] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6662), 1, + ACTIONS(6835), 1, sym_word, - ACTIONS(6666), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(6843), 1, + sym__comment_word, + ACTIONS(6997), 1, + anon_sym_DOLLAR, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6664), 2, + ACTIONS(6839), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6841), 2, sym_raw_string, sym_ansi_c_string, - STATE(550), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1287), 9, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159845,48 +157560,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118035] = 19, - ACTIONS(63), 1, + [117871] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(1781), 1, anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, + ACTIONS(1787), 1, aux_sym_number_token1, - ACTIONS(5641), 1, + ACTIONS(1789), 1, aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, + ACTIONS(1793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(1807), 1, + sym__brace_start, + ACTIONS(5693), 1, + anon_sym_DQUOTE, + ACTIONS(5697), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5699), 1, anon_sym_BQUOTE, - ACTIONS(5649), 1, + ACTIONS(5701), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(6668), 1, + ACTIONS(6999), 1, sym_word, - ACTIONS(6672), 1, - sym_test_operator, - STATE(2134), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, + ACTIONS(7005), 1, + sym__comment_word, + ACTIONS(5687), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, + ACTIONS(5703), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6670), 2, + ACTIONS(7001), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7003), 2, sym_raw_string, sym_ansi_c_string, - STATE(670), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, + STATE(1137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159896,48 +157607,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118105] = 19, - ACTIONS(63), 1, + [117935] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, ACTIONS(5799), 1, + anon_sym_DQUOTE, + ACTIONS(5803), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5805), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5811), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(5823), 1, sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6662), 1, + ACTIONS(6857), 1, sym_word, - ACTIONS(6666), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, + ACTIONS(6865), 1, + sym__comment_word, + ACTIONS(7007), 1, + anon_sym_DOLLAR, + ACTIONS(5791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6664), 2, + ACTIONS(6861), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6863), 2, sym_raw_string, sym_ansi_c_string, - STATE(542), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1287), 9, + STATE(996), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159947,309 +157654,138 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118175] = 3, - ACTIONS(63), 1, + [117999] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(2748), 1, anon_sym_DOLLAR, + ACTIONS(2754), 1, aux_sym_number_token1, + ACTIONS(2756), 1, aux_sym_number_token2, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(2770), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(6344), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6348), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [118213] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6350), 1, anon_sym_BQUOTE, + ACTIONS(6352), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7009), 1, sym_word, - ACTIONS(1332), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(7015), 1, + sym__comment_word, + ACTIONS(6340), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7011), 2, + sym__special_character, sym_test_operator, - [118251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [118297] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, + ACTIONS(7013), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1229), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [118343] = 7, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118063] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(5925), 1, anon_sym_DQUOTE, - STATE(3521), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6678), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [118389] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(5929), 1, aux_sym_number_token1, + ACTIONS(5931), 1, aux_sym_number_token2, + ACTIONS(5933), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5935), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5937), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5939), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5949), 1, sym__brace_start, + ACTIONS(7017), 1, + sym_word, + ACTIONS(7019), 1, + anon_sym_DOLLAR, + ACTIONS(7025), 1, + sym__comment_word, + ACTIONS(5917), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5941), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7021), 2, + sym__special_character, sym_test_operator, - [118427] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 1, - anon_sym_DQUOTE, - STATE(3521), 1, + ACTIONS(7023), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(879), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6678), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [118473] = 19, - ACTIONS(63), 1, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118127] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(3068), 1, + ACTIONS(6965), 1, sym_word, - ACTIONS(6564), 1, + ACTIONS(6973), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6979), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(6985), 1, + sym__comment_word, + ACTIONS(7027), 1, + anon_sym_DOLLAR, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, + ACTIONS(6971), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - STATE(601), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, + ACTIONS(6983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160259,49 +157795,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118543] = 20, - ACTIONS(63), 1, + [118191] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, - sym_word, - ACTIONS(6684), 1, + ACTIONS(6661), 1, anon_sym_DOLLAR, - ACTIONS(6686), 1, - sym__special_character, - ACTIONS(6688), 1, + ACTIONS(6665), 1, anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(6669), 1, aux_sym_number_token1, - ACTIONS(6694), 1, + ACTIONS(6671), 1, aux_sym_number_token2, - ACTIONS(6696), 1, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6698), 1, - anon_sym_RBRACE3, - ACTIONS(6700), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, + ACTIONS(6677), 1, anon_sym_BQUOTE, - ACTIONS(6704), 1, + ACTIONS(6679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6708), 1, - sym_test_operator, - ACTIONS(6710), 1, + ACTIONS(6685), 1, sym__brace_start, - STATE(4107), 1, - aux_sym__literal_repeat1, - STATE(4327), 1, - sym_concatenation, - ACTIONS(6682), 2, + ACTIONS(7029), 1, + sym_word, + ACTIONS(7035), 1, + sym__comment_word, + ACTIONS(6659), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6690), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6706), 2, + ACTIONS(6681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4053), 9, + ACTIONS(7031), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7033), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160311,48 +157842,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118615] = 19, - ACTIONS(63), 1, + [118255] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, + ACTIONS(3434), 1, anon_sym_DQUOTE, - ACTIONS(5639), 1, + ACTIONS(3438), 1, aux_sym_number_token1, - ACTIONS(5641), 1, + ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(5643), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(5649), 1, + ACTIONS(3448), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, + ACTIONS(3456), 1, sym__brace_start, - ACTIONS(6668), 1, + ACTIONS(7037), 1, sym_word, - ACTIONS(6672), 1, - sym_test_operator, - STATE(2134), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, + ACTIONS(7039), 1, + anon_sym_DOLLAR, + ACTIONS(7045), 1, + sym__comment_word, + ACTIONS(3428), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, + ACTIONS(3450), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6670), 2, + ACTIONS(7041), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7043), 2, sym_raw_string, sym_ansi_c_string, - STATE(671), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, + STATE(1809), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160362,49 +157889,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118685] = 20, - ACTIONS(63), 1, + [118319] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, - anon_sym_DOLLAR, - ACTIONS(6686), 1, - sym__special_character, - ACTIONS(6688), 1, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(6694), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(6696), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(6704), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(6712), 1, + ACTIONS(7047), 1, sym_word, - ACTIONS(6716), 1, - anon_sym_RBRACE3, - ACTIONS(6718), 1, - sym_test_operator, - STATE(4119), 1, - aux_sym__literal_repeat1, - STATE(4322), 1, - sym_concatenation, - ACTIONS(6682), 2, + ACTIONS(7049), 1, + anon_sym_DOLLAR, + ACTIONS(7055), 1, + sym__comment_word, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6714), 2, + ACTIONS(7051), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7053), 2, sym_raw_string, sym_ansi_c_string, - STATE(4061), 9, + STATE(1961), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160414,48 +157936,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118757] = 19, - ACTIONS(63), 1, + [118383] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3434), 1, anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(3438), 1, aux_sym_number_token1, - ACTIONS(3701), 1, + ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(3703), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, + ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, + ACTIONS(3448), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, + ACTIONS(3456), 1, sym__brace_start, - ACTIONS(6720), 1, - sym__special_character, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, + ACTIONS(7037), 1, + sym_word, + ACTIONS(7045), 1, + sym__comment_word, + ACTIONS(7057), 1, + anon_sym_DOLLAR, + ACTIONS(3428), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, + ACTIONS(3450), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(685), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1763), 9, + ACTIONS(7041), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7043), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1809), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160465,48 +157983,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118827] = 19, - ACTIONS(63), 1, + [118447] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(1787), 1, aux_sym_number_token1, - ACTIONS(3701), 1, + ACTIONS(1789), 1, aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, + ACTIONS(1793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, + ACTIONS(1807), 1, + sym__brace_start, + ACTIONS(5693), 1, + anon_sym_DQUOTE, + ACTIONS(5697), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5699), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, + ACTIONS(5701), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(6720), 1, - sym__special_character, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, + ACTIONS(6999), 1, + sym_word, + ACTIONS(7005), 1, + sym__comment_word, + ACTIONS(7059), 1, + anon_sym_DOLLAR, + ACTIONS(5687), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, + ACTIONS(5703), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(682), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1763), 9, + ACTIONS(7001), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7003), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160516,48 +158030,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118897] = 19, - ACTIONS(63), 1, + [118511] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2277), 1, anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(2283), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2285), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(2301), 1, sym__brace_start, - ACTIONS(3068), 1, + ACTIONS(7061), 1, sym_word, - ACTIONS(6564), 1, + ACTIONS(7067), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(7071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(7073), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(7079), 1, + sym__comment_word, + ACTIONS(7063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, + ACTIONS(7065), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7069), 2, sym_raw_string, sym_ansi_c_string, - STATE(594), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, + ACTIONS(7077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160567,48 +158077,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118967] = 19, - ACTIONS(63), 1, + [118575] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(1665), 1, sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, + ACTIONS(5577), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(5583), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(5585), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, + ACTIONS(7081), 1, + sym_word, + ACTIONS(7083), 1, + anon_sym_DOLLAR, + ACTIONS(7089), 1, + sym__comment_word, + ACTIONS(5571), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(5587), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6658), 2, + ACTIONS(7085), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7087), 2, sym_raw_string, sym_ansi_c_string, - STATE(573), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, + STATE(919), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160618,47 +158124,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119037] = 19, - ACTIONS(63), 1, + [118639] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 1, - sym_word, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6728), 1, - sym__special_character, - ACTIONS(6730), 1, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6748), 1, - sym_test_operator, - ACTIONS(6750), 1, + ACTIONS(6532), 1, sym__brace_start, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6847), 1, + sym_word, + ACTIONS(6855), 1, + sym__comment_word, + ACTIONS(7091), 1, + anon_sym_DOLLAR, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6732), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6746), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2971), 9, + ACTIONS(6851), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6853), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2713), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160668,47 +158171,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119106] = 19, - ACTIONS(63), 1, + [118703] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6752), 1, - sym_word, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6758), 1, - sym__special_character, - ACTIONS(6760), 1, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(6768), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6778), 1, - sym_test_operator, - ACTIONS(6780), 1, + ACTIONS(6532), 1, sym__brace_start, - STATE(2864), 1, - aux_sym__literal_repeat1, - STATE(3012), 1, - sym_concatenation, - ACTIONS(6754), 2, + ACTIONS(6847), 1, + sym_word, + ACTIONS(6855), 1, + sym__comment_word, + ACTIONS(7093), 1, + anon_sym_DOLLAR, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6762), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6776), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2894), 9, + ACTIONS(6851), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6853), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2713), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160718,47 +158218,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119175] = 19, - ACTIONS(63), 1, + [118767] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(3430), 1, anon_sym_DOLLAR, - ACTIONS(6758), 1, - sym__special_character, - ACTIONS(6760), 1, + ACTIONS(3434), 1, anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(3438), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(3440), 1, aux_sym_number_token2, - ACTIONS(6768), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(3446), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(3448), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, + ACTIONS(3456), 1, sym__brace_start, - ACTIONS(6782), 1, + ACTIONS(7037), 1, sym_word, - ACTIONS(6786), 1, - sym_test_operator, - STATE(2841), 1, - aux_sym__literal_repeat1, - STATE(3069), 1, - sym_concatenation, - ACTIONS(6754), 2, + ACTIONS(7045), 1, + sym__comment_word, + ACTIONS(3428), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(3450), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6784), 2, + ACTIONS(7041), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7043), 2, sym_raw_string, sym_ansi_c_string, - STATE(2890), 9, + STATE(1809), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160768,47 +158265,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119244] = 19, - ACTIONS(63), 1, + [118831] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - sym_word, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, + ACTIONS(615), 1, anon_sym_DQUOTE, - ACTIONS(6800), 1, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(6802), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(6804), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, + ACTIONS(625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, + ACTIONS(627), 1, anon_sym_BQUOTE, - ACTIONS(6810), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6814), 1, - sym_test_operator, - ACTIONS(6816), 1, + ACTIONS(639), 1, sym__brace_start, - STATE(3969), 1, - aux_sym__literal_repeat1, - STATE(4081), 1, - sym_concatenation, - ACTIONS(6790), 2, + ACTIONS(6937), 1, + sym_word, + ACTIONS(6945), 1, + sym__comment_word, + ACTIONS(7095), 1, + anon_sym_DOLLAR, + ACTIONS(595), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6798), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6812), 2, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3956), 9, + ACTIONS(6941), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6943), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(813), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160818,96 +158312,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119313] = 18, + [118895] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4833), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [119380] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(6844), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6846), 1, - sym__special_character, - ACTIONS(6850), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(7097), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6848), 2, + ACTIONS(6799), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(3059), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160917,47 +158359,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119449] = 19, - ACTIONS(63), 1, + [118959] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(1787), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(1789), 1, aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(1793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(1807), 1, + sym__brace_start, + ACTIONS(5693), 1, + anon_sym_DQUOTE, + ACTIONS(5697), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5699), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5701), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6852), 1, + ACTIONS(6999), 1, sym_word, - ACTIONS(6854), 1, - sym__special_character, - ACTIONS(6858), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(7005), 1, + sym__comment_word, + ACTIONS(7099), 1, + anon_sym_DOLLAR, + ACTIONS(5687), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5703), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6856), 2, + ACTIONS(7001), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7003), 2, sym_raw_string, sym_ansi_c_string, - STATE(3294), 9, + STATE(1137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160967,47 +158406,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119518] = 19, - ACTIONS(63), 1, + [119023] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(6846), 1, - sym__special_character, - ACTIONS(6860), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(6864), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(7103), 1, + anon_sym_DOLLAR, + ACTIONS(7109), 1, + sym__comment_word, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6862), 2, + ACTIONS(7105), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(2989), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161017,47 +158453,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119587] = 19, - ACTIONS(63), 1, + [119087] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(6854), 1, - sym__special_character, - ACTIONS(6866), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6870), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(7111), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6868), 2, + ACTIONS(6799), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(3371), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161067,46 +158500,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119656] = 18, + [119151] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(6874), 1, - anon_sym_RBRACK, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(598), 2, + ACTIONS(7109), 1, + sym__comment_word, + ACTIONS(7113), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(7105), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161116,46 +158547,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119723] = 18, + [119215] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(1645), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(1647), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(1665), 1, sym__brace_start, - ACTIONS(4757), 1, + ACTIONS(5577), 1, + anon_sym_DQUOTE, + ACTIONS(5581), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5583), 1, anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(5585), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7081), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6882), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(7089), 1, + sym__comment_word, + ACTIONS(7115), 1, + anon_sym_DOLLAR, + ACTIONS(5571), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(5587), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(7085), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(7087), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(919), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161165,123 +158594,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119790] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [119835] = 7, + [119279] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [119880] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6890), 1, - sym_word, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6896), 1, - sym__special_character, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(6904), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(6912), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6916), 1, - sym_test_operator, - ACTIONS(6918), 1, - sym__brace_start, - STATE(3516), 1, - aux_sym__literal_repeat1, - STATE(3581), 1, - sym_concatenation, - ACTIONS(6892), 2, + ACTIONS(6835), 1, + sym_word, + ACTIONS(6843), 1, + sym__comment_word, + ACTIONS(7117), 1, + anon_sym_DOLLAR, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6900), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6914), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3382), 9, + ACTIONS(6839), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6841), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161291,83 +158641,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [119949] = 5, - ACTIONS(63), 1, + [119343] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(1639), 1, anon_sym_DOLLAR, + ACTIONS(1645), 1, aux_sym_number_token1, + ACTIONS(1647), 1, aux_sym_number_token2, + ACTIONS(1651), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3843), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1665), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [119990] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, + ACTIONS(5577), 1, anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(5583), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(5585), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(6922), 1, + ACTIONS(7081), 1, sym_word, - ACTIONS(6924), 1, - sym__special_character, - ACTIONS(6928), 1, - sym_test_operator, - STATE(2841), 1, - aux_sym__literal_repeat1, - STATE(3069), 1, - sym_concatenation, - ACTIONS(6754), 2, + ACTIONS(7089), 1, + sym__comment_word, + ACTIONS(5571), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(5587), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6926), 2, + ACTIONS(7085), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7087), 2, sym_raw_string, sym_ansi_c_string, - STATE(2791), 9, + STATE(919), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161377,47 +158688,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120059] = 19, - ACTIONS(63), 1, + [119407] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(6924), 1, - sym__special_character, - ACTIONS(6930), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(6934), 1, - sym_test_operator, - STATE(2864), 1, - aux_sym__literal_repeat1, - STATE(3012), 1, - sym_concatenation, - ACTIONS(6754), 2, + ACTIONS(7121), 1, + anon_sym_DOLLAR, + ACTIONS(7127), 1, + sym__comment_word, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6932), 2, + ACTIONS(7123), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(2765), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161427,47 +158735,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120128] = 19, - ACTIONS(63), 1, + [119471] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6896), 1, - sym__special_character, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(6904), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(6912), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(6936), 1, + ACTIONS(7129), 1, sym_word, - ACTIONS(6940), 1, - sym_test_operator, - STATE(3485), 1, - aux_sym__literal_repeat1, - STATE(3587), 1, - sym_concatenation, - ACTIONS(6892), 2, + ACTIONS(7131), 1, + anon_sym_DOLLAR, + ACTIONS(7137), 1, + sym__comment_word, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6938), 2, + ACTIONS(7133), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7135), 2, sym_raw_string, sym_ansi_c_string, - STATE(3416), 9, + STATE(2901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161477,146 +158782,110 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120197] = 19, + [119535] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6792), 1, + ACTIONS(4149), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, aux_sym_number_token1, - ACTIONS(6802), 1, aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(6942), 1, sym_word, - ACTIONS(6946), 1, - sym_test_operator, - STATE(4014), 1, - aux_sym__literal_repeat1, - STATE(4086), 1, - sym_concatenation, - ACTIONS(6790), 2, + ACTIONS(4151), 20, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6944), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120266] = 18, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [119571] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, + ACTIONS(4142), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, aux_sym_number_token1, - ACTIONS(6834), 1, aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, + sym_word, + ACTIONS(4144), 20, + sym_file_descriptor, + sym_variable_name, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(6842), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4575), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120333] = 19, - ACTIONS(63), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [119607] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(1091), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(6948), 1, + ACTIONS(6947), 1, sym_word, - ACTIONS(6950), 1, - sym__special_character, - ACTIONS(6954), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6953), 1, + sym__comment_word, + ACTIONS(7139), 1, + anon_sym_DOLLAR, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6952), 2, + ACTIONS(6949), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6951), 2, sym_raw_string, sym_ansi_c_string, - STATE(2919), 9, + STATE(1676), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161626,47 +158895,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120402] = 19, - ACTIONS(63), 1, + [119671] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(6956), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(6958), 1, - sym__special_character, - ACTIONS(6962), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(7109), 1, + sym__comment_word, + ACTIONS(7141), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6960), 2, + ACTIONS(7105), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(2924), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161676,47 +158942,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120471] = 19, - ACTIONS(63), 1, + [119735] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6950), 1, - sym__special_character, - ACTIONS(6964), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(6968), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(7127), 1, + sym__comment_word, + ACTIONS(7143), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6966), 2, + ACTIONS(7123), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(2935), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161726,46 +158989,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120540] = 18, + [119799] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(7145), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6970), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(7151), 1, + sym__comment_word, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(7147), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(7149), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(689), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161775,46 +159036,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120607] = 18, + [119863] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(2515), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(2531), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(7153), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6972), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(7159), 1, + anon_sym_DQUOTE, + ACTIONS(7163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7165), 1, + anon_sym_BQUOTE, + ACTIONS(7167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7171), 1, + sym__comment_word, + ACTIONS(7155), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(7157), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(7161), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + ACTIONS(7169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161824,47 +159083,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120674] = 19, - ACTIONS(63), 1, + [119927] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, + ACTIONS(5795), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(5799), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5803), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5805), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5809), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5811), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5813), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5823), 1, sym__brace_start, - ACTIONS(6958), 1, - sym__special_character, - ACTIONS(6974), 1, + ACTIONS(6857), 1, sym_word, - ACTIONS(6978), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6865), 1, + sym__comment_word, + ACTIONS(5791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5815), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6976), 2, + ACTIONS(6861), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6863), 2, sym_raw_string, sym_ansi_c_string, - STATE(2920), 9, + STATE(996), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161874,83 +159130,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120743] = 5, - ACTIONS(63), 1, + [119991] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(2313), 1, aux_sym_number_token1, + ACTIONS(2315), 1, aux_sym_number_token2, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2329), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [120784] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, + ACTIONS(6376), 1, anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, + ACTIONS(6380), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6382), 1, anon_sym_BQUOTE, - ACTIONS(6810), 1, + ACTIONS(6384), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(6980), 1, + ACTIONS(7173), 1, sym_word, - ACTIONS(6984), 1, - sym_test_operator, - STATE(3995), 1, - aux_sym__literal_repeat1, - STATE(4059), 1, - sym_concatenation, - ACTIONS(6790), 2, + ACTIONS(7175), 1, + anon_sym_DOLLAR, + ACTIONS(7181), 1, + sym__comment_word, + ACTIONS(6372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, + ACTIONS(6386), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6982), 2, + ACTIONS(7177), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7179), 2, sym_raw_string, sym_ansi_c_string, - STATE(3954), 9, + STATE(1155), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161960,46 +159177,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120853] = 18, + [120055] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(2313), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(2315), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(2329), 1, sym__brace_start, - ACTIONS(4757), 1, + ACTIONS(6376), 1, + anon_sym_DQUOTE, + ACTIONS(6380), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6382), 1, anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6384), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7173), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6986), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(7181), 1, + sym__comment_word, + ACTIONS(7183), 1, + anon_sym_DOLLAR, + ACTIONS(6372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(6386), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(7177), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(7179), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(1155), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162009,47 +159224,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120920] = 19, - ACTIONS(63), 1, + [120119] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6728), 1, - sym__special_character, - ACTIONS(6730), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(6988), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6992), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(7185), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6990), 2, + ACTIONS(6799), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(2966), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162059,46 +159271,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120989] = 18, + [120183] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(292), 1, + anon_sym_BQUOTE, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6917), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6994), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(6925), 1, + sym__comment_word, + ACTIONS(7187), 1, + anon_sym_DOLLAR, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(6921), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(6923), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(412), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162108,46 +159318,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121056] = 18, + [120247] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(5378), 1, + anon_sym_BQUOTE, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6996), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(6803), 1, + sym__comment_word, + ACTIONS(7189), 1, + anon_sym_DOLLAR, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(6799), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162157,46 +159365,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121123] = 18, + [120311] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, + ACTIONS(1079), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(1083), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(1085), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(1089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(1091), 1, + anon_sym_BQUOTE, + ACTIONS(1093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(1101), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6947), 1, sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6998), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, + ACTIONS(6953), 1, + sym__comment_word, + ACTIONS(7191), 1, + anon_sym_DOLLAR, + ACTIONS(1065), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(1095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6876), 2, + ACTIONS(6949), 2, sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, + sym_test_operator, + ACTIONS(6951), 2, sym_raw_string, sym_ansi_c_string, - STATE(1856), 9, + STATE(1676), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162206,14 +159412,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121190] = 5, + [120375] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7000), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 8, + ACTIONS(1262), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -162222,7 +159424,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1357), 19, + ACTIONS(1264), 20, sym_file_descriptor, sym_variable_name, sym__brace_start, @@ -162233,6 +159435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162242,47 +159445,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [121231] = 19, - ACTIONS(63), 1, + [120411] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, - sym_word, - ACTIONS(7007), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR, - ACTIONS(7009), 1, - sym__special_character, - ACTIONS(7011), 1, + ACTIONS(6576), 1, anon_sym_DQUOTE, - ACTIONS(7015), 1, + ACTIONS(6580), 1, aux_sym_number_token1, - ACTIONS(7017), 1, + ACTIONS(6582), 1, aux_sym_number_token2, - ACTIONS(7019), 1, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, + ACTIONS(6586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, + ACTIONS(6588), 1, anon_sym_BQUOTE, - ACTIONS(7025), 1, + ACTIONS(6590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7029), 1, - sym_test_operator, - ACTIONS(7031), 1, + ACTIONS(6596), 1, sym__brace_start, - STATE(3560), 1, - aux_sym__literal_repeat1, - STATE(3604), 1, - sym_concatenation, - ACTIONS(7005), 2, + ACTIONS(7193), 1, + sym_word, + ACTIONS(7199), 1, + sym__comment_word, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7013), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7027), 2, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3492), 9, + ACTIONS(7195), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7197), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162292,96 +159492,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121300] = 18, + [120475] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4654), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [121367] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7007), 1, - anon_sym_DOLLAR, - ACTIONS(7009), 1, - sym__special_character, - ACTIONS(7011), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(7015), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(7017), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(7019), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(7025), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(7033), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(7037), 1, - sym_test_operator, - STATE(3546), 1, - aux_sym__literal_repeat1, - STATE(3603), 1, - sym_concatenation, - ACTIONS(7005), 2, + ACTIONS(7109), 1, + sym__comment_word, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7035), 2, + ACTIONS(7105), 2, + sym__special_character, + sym_test_operator, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(3501), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162391,44 +159539,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121436] = 17, + [120539] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(5921), 1, + anon_sym_DOLLAR, + ACTIONS(5925), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(5929), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(5931), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(5933), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(5935), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(5937), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(7039), 1, + ACTIONS(7017), 1, sym_word, - ACTIONS(7041), 1, - anon_sym_DOLLAR, - ACTIONS(7047), 1, + ACTIONS(7025), 1, sym__comment_word, - ACTIONS(13), 2, + ACTIONS(5917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(5941), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7043), 2, + ACTIONS(7021), 2, sym__special_character, sym_test_operator, - ACTIONS(7045), 2, + ACTIONS(7023), 2, sym_raw_string, sym_ansi_c_string, - STATE(1023), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162438,91 +159586,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121500] = 17, + [120603] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(2540), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(2544), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, + ACTIONS(4609), 1, sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7053), 1, - anon_sym_DOLLAR, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121564] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, + ACTIONS(5173), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, + ACTIONS(7203), 1, sym_word, - ACTIONS(7073), 1, + ACTIONS(7205), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7211), 1, sym__comment_word, - ACTIONS(5996), 2, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(7207), 2, sym__special_character, sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(7209), 2, sym_raw_string, sym_ansi_c_string, - STATE(2736), 9, + STATE(3914), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162532,44 +159633,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121628] = 17, + [120667] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7203), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(7211), 1, sym__comment_word, - ACTIONS(6724), 2, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(7207), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(7209), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(3914), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162579,77 +159680,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121692] = 3, - ACTIONS(63), 1, + [120731] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(322), 1, aux_sym_number_token1, + ACTIONS(324), 1, aux_sym_number_token2, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(340), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1157), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [121728] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, + ACTIONS(4051), 1, anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, + ACTIONS(6805), 1, sym_word, - ACTIONS(7095), 1, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(4236), 2, + ACTIONS(7213), 1, + anon_sym_DOLLAR, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7091), 2, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - ACTIONS(7093), 2, + ACTIONS(6811), 2, sym_raw_string, sym_ansi_c_string, - STATE(3174), 9, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162659,44 +159727,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121792] = 17, + [120795] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(1937), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, + ACTIONS(2865), 1, sym__brace_start, - ACTIONS(5857), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, + ACTIONS(6835), 1, sym_word, - ACTIONS(7099), 1, - anon_sym_DOLLAR, - ACTIONS(7105), 1, + ACTIONS(6843), 1, sym__comment_word, - ACTIONS(5851), 2, + ACTIONS(7215), 1, + anon_sym_DOLLAR, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7101), 2, + ACTIONS(6839), 2, sym__special_character, sym_test_operator, - ACTIONS(7103), 2, + ACTIONS(6841), 2, sym_raw_string, sym_ansi_c_string, - STATE(1151), 9, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162706,44 +159774,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121856] = 17, + [120859] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(6564), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, sym_word, - ACTIONS(7109), 1, - anon_sym_DOLLAR, - ACTIONS(7115), 1, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(6560), 2, + ACTIONS(7217), 1, + anon_sym_DOLLAR, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7111), 2, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - ACTIONS(7113), 2, + ACTIONS(6811), 2, sym_raw_string, sym_ansi_c_string, - STATE(1435), 9, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162753,44 +159821,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121920] = 17, + [120923] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(5539), 1, + anon_sym_DOLLAR, + ACTIONS(5543), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(5547), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(5549), 1, aux_sym_number_token2, - ACTIONS(5923), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(5553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(5557), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, + ACTIONS(5567), 1, sym__brace_start, - ACTIONS(7117), 1, + ACTIONS(6927), 1, sym_word, - ACTIONS(7119), 1, - anon_sym_DOLLAR, - ACTIONS(7125), 1, + ACTIONS(6935), 1, sym__comment_word, - ACTIONS(5907), 2, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7121), 2, + ACTIONS(6931), 2, sym__special_character, sym_test_operator, - ACTIONS(7123), 2, + ACTIONS(6933), 2, sym_raw_string, sym_ansi_c_string, - STATE(1201), 9, + STATE(2638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162800,44 +159868,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121984] = 17, + [120987] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(5543), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(5547), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(5549), 1, aux_sym_number_token2, - ACTIONS(5923), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(5553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(5557), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, + ACTIONS(5567), 1, sym__brace_start, - ACTIONS(7117), 1, + ACTIONS(6927), 1, sym_word, - ACTIONS(7125), 1, + ACTIONS(6935), 1, sym__comment_word, - ACTIONS(7127), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR, - ACTIONS(5907), 2, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7121), 2, + ACTIONS(6931), 2, sym__special_character, sym_test_operator, - ACTIONS(7123), 2, + ACTIONS(6933), 2, sym_raw_string, sym_ansi_c_string, - STATE(1201), 9, + STATE(2638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162847,91 +159915,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122048] = 17, + [121051] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(6834), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7131), 1, - anon_sym_LF, - STATE(2859), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7129), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4038), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [122112] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, + ACTIONS(5284), 1, sym__brace_start, - ACTIONS(6546), 1, + ACTIONS(6168), 1, anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6172), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, + ACTIONS(7129), 1, sym_word, - ACTIONS(7139), 1, + ACTIONS(7137), 1, sym__comment_word, - ACTIONS(6542), 2, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7135), 2, + ACTIONS(7133), 2, sym__special_character, sym_test_operator, - ACTIONS(7137), 2, + ACTIONS(7135), 2, sym_raw_string, sym_ansi_c_string, - STATE(2929), 9, + STATE(2901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162941,44 +159962,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122176] = 17, + [121115] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(2031), 1, aux_sym_number_token1, - ACTIONS(1567), 1, + ACTIONS(2033), 1, aux_sym_number_token2, - ACTIONS(1571), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, + ACTIONS(2051), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(7221), 1, + sym_word, + ACTIONS(7225), 1, + anon_sym_DOLLAR, + ACTIONS(7229), 1, anon_sym_DQUOTE, - ACTIONS(5833), 1, + ACTIONS(7233), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, + ACTIONS(7235), 1, anon_sym_BQUOTE, - ACTIONS(5837), 1, + ACTIONS(7237), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, - sym_word, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(7149), 1, + ACTIONS(7241), 1, sym__comment_word, - ACTIONS(5823), 2, + ACTIONS(7223), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7145), 2, + ACTIONS(7227), 2, sym__special_character, sym_test_operator, - ACTIONS(7147), 2, + ACTIONS(7231), 2, sym_raw_string, sym_ansi_c_string, - STATE(967), 9, + ACTIONS(7239), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(960), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162988,44 +160009,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122240] = 17, + [121179] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(1567), 1, + ACTIONS(2515), 1, aux_sym_number_token2, - ACTIONS(1571), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, + ACTIONS(2531), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(7153), 1, + sym_word, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(5833), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, + ACTIONS(7165), 1, anon_sym_BQUOTE, - ACTIONS(5837), 1, + ACTIONS(7167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, - sym_word, - ACTIONS(7149), 1, + ACTIONS(7171), 1, sym__comment_word, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_DOLLAR, - ACTIONS(5823), 2, + ACTIONS(7155), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7145), 2, + ACTIONS(7157), 2, sym__special_character, sym_test_operator, - ACTIONS(7147), 2, + ACTIONS(7161), 2, sym_raw_string, sym_ansi_c_string, - STATE(967), 9, + ACTIONS(7169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163035,44 +160056,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122304] = 17, + [121243] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(2031), 1, aux_sym_number_token1, - ACTIONS(3701), 1, + ACTIONS(2033), 1, aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, + ACTIONS(2051), 1, sym__brace_start, - ACTIONS(7153), 1, + ACTIONS(7221), 1, sym_word, - ACTIONS(7155), 1, - anon_sym_DOLLAR, - ACTIONS(7161), 1, + ACTIONS(7229), 1, + anon_sym_DQUOTE, + ACTIONS(7233), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7235), 1, + anon_sym_BQUOTE, + ACTIONS(7237), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7241), 1, sym__comment_word, - ACTIONS(3689), 2, + ACTIONS(7245), 1, + anon_sym_DOLLAR, + ACTIONS(7223), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7157), 2, + ACTIONS(7227), 2, sym__special_character, sym_test_operator, - ACTIONS(7159), 2, + ACTIONS(7231), 2, sym_raw_string, sym_ansi_c_string, - STATE(1998), 9, + ACTIONS(7239), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(960), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163082,44 +160103,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122368] = 17, + [121307] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(4591), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(4593), 1, aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(4597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5179), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(5181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, + ACTIONS(7203), 1, sym_word, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7171), 1, + ACTIONS(7211), 1, sym__comment_word, - ACTIONS(5671), 2, + ACTIONS(7247), 1, + anon_sym_DOLLAR, + ACTIONS(5167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(5183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(7207), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(7209), 2, sym_raw_string, sym_ansi_c_string, - STATE(2793), 9, + STATE(3914), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163129,44 +160150,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122432] = 17, + [121371] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, + ACTIONS(200), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(208), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(210), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(214), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(216), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(218), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(7163), 1, + ACTIONS(6869), 1, sym_word, - ACTIONS(7171), 1, + ACTIONS(6877), 1, sym__comment_word, - ACTIONS(7173), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, + ACTIONS(190), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(220), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(6873), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(6875), 2, sym_raw_string, sym_ansi_c_string, - STATE(2793), 9, + STATE(385), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163176,44 +160197,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122496] = 17, + [121435] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(3701), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(3703), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(7153), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(7161), 1, + ACTIONS(6803), 1, sym__comment_word, - ACTIONS(7175), 1, + ACTIONS(7249), 1, anon_sym_DOLLAR, - ACTIONS(3689), 2, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7157), 2, + ACTIONS(6799), 2, sym__special_character, sym_test_operator, - ACTIONS(7159), 2, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(1998), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163223,44 +160244,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122560] = 17, + [121499] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(3757), 1, + anon_sym_DQUOTE, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(3767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(7047), 1, sym_word, - ACTIONS(7115), 1, + ACTIONS(7055), 1, sym__comment_word, - ACTIONS(7177), 1, + ACTIONS(7251), 1, anon_sym_DOLLAR, - ACTIONS(6560), 2, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7111), 2, + ACTIONS(7051), 2, sym__special_character, sym_test_operator, - ACTIONS(7113), 2, + ACTIONS(7053), 2, sym_raw_string, sym_ansi_c_string, - STATE(1435), 9, + STATE(1961), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163270,44 +160291,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122624] = 17, + [121563] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(5727), 1, aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5733), 1, anon_sym_BQUOTE, - ACTIONS(6618), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, + ACTIONS(5745), 1, + sym__brace_start, + ACTIONS(7253), 1, sym_word, - ACTIONS(7185), 1, + ACTIONS(7255), 1, + anon_sym_DOLLAR, + ACTIONS(7261), 1, sym__comment_word, - ACTIONS(6606), 2, + ACTIONS(5713), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, + ACTIONS(5737), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7181), 2, + ACTIONS(7257), 2, sym__special_character, sym_test_operator, - ACTIONS(7183), 2, + ACTIONS(7259), 2, sym_raw_string, sym_ansi_c_string, - STATE(1399), 9, + STATE(1346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163317,44 +160338,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122688] = 17, + [121627] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(164), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(168), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(1101), 1, + ACTIONS(6965), 1, + sym_word, + ACTIONS(6973), 1, anon_sym_DQUOTE, - ACTIONS(1105), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, + ACTIONS(6979), 1, anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, + ACTIONS(6981), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6985), 1, sym__comment_word, - ACTIONS(1095), 2, + ACTIONS(7263), 1, + anon_sym_DOLLAR, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, + ACTIONS(6971), 2, sym__special_character, sym_test_operator, - ACTIONS(7191), 2, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - STATE(1611), 9, + ACTIONS(6983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163364,44 +160385,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122752] = 17, + [121691] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(2387), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(2391), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(7195), 1, + ACTIONS(6965), 1, sym_word, - ACTIONS(7199), 1, - anon_sym_DOLLAR, - ACTIONS(7203), 1, + ACTIONS(6973), 1, anon_sym_DQUOTE, - ACTIONS(7207), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, + ACTIONS(6979), 1, anon_sym_BQUOTE, - ACTIONS(7211), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, + ACTIONS(6985), 1, sym__comment_word, - ACTIONS(7197), 2, + ACTIONS(7265), 1, + anon_sym_DOLLAR, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, + ACTIONS(6971), 2, sym__special_character, sym_test_operator, - ACTIONS(7205), 2, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7213), 2, + ACTIONS(6983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1097), 9, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163411,44 +160432,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122816] = 17, + [121755] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(5366), 1, + anon_sym_DQUOTE, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, + ACTIONS(5390), 1, + sym__brace_start, + ACTIONS(6797), 1, sym_word, - ACTIONS(7139), 1, + ACTIONS(6803), 1, sym__comment_word, - ACTIONS(7217), 1, + ACTIONS(7267), 1, anon_sym_DOLLAR, - ACTIONS(6542), 2, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7135), 2, + ACTIONS(6799), 2, sym__special_character, sym_test_operator, - ACTIONS(7137), 2, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(2929), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163458,44 +160479,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122880] = 17, + [121819] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(6625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6618), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, + ACTIONS(6635), 1, + sym__brace_start, + ACTIONS(6787), 1, sym_word, - ACTIONS(7185), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(7219), 1, + ACTIONS(7269), 1, anon_sym_DOLLAR, - ACTIONS(6606), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7181), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7183), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(1399), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163505,77 +160526,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122944] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3839), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [122980] = 17, + [121883] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, + ACTIONS(6635), 1, + sym__brace_start, + ACTIONS(6787), 1, sym_word, - ACTIONS(7139), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(7221), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR, - ACTIONS(6542), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7135), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7137), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(2929), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163585,44 +160573,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123044] = 17, + [121947] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(1425), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(1427), 1, aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(1447), 1, + sym__brace_start, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + ACTIONS(5767), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5769), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7273), 1, sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7223), 1, + ACTIONS(7275), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(7281), 1, + sym__comment_word, + ACTIONS(5757), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(7277), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(7279), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(755), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163632,44 +160620,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123108] = 17, + [122011] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(1425), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(1427), 1, aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(1447), 1, + sym__brace_start, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + ACTIONS(5767), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5769), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7273), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(7281), 1, sym__comment_word, - ACTIONS(7225), 1, + ACTIONS(7283), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(5757), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(7277), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(7279), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(755), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163679,44 +160667,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123172] = 17, + [122075] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(1565), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(1567), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(1571), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5829), 1, - anon_sym_DQUOTE, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, + ACTIONS(4092), 1, anon_sym_BQUOTE, - ACTIONS(5837), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, + ACTIONS(6484), 1, sym_word, - ACTIONS(7149), 1, + ACTIONS(6488), 1, sym__comment_word, - ACTIONS(5823), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7145), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7147), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(967), 9, + ACTIONS(6492), 2, + sym__special_character, + sym_test_operator, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163726,44 +160714,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123236] = 17, + [122139] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(2387), 1, + ACTIONS(2515), 1, aux_sym_number_token2, - ACTIONS(2391), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, + ACTIONS(2531), 1, sym__brace_start, - ACTIONS(7195), 1, + ACTIONS(7153), 1, sym_word, - ACTIONS(7203), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(7207), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, + ACTIONS(7165), 1, anon_sym_BQUOTE, - ACTIONS(7211), 1, + ACTIONS(7167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, + ACTIONS(7171), 1, sym__comment_word, - ACTIONS(7227), 1, + ACTIONS(7285), 1, anon_sym_DOLLAR, - ACTIONS(7197), 2, + ACTIONS(7155), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, + ACTIONS(7157), 2, sym__special_character, sym_test_operator, - ACTIONS(7205), 2, + ACTIONS(7161), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7213), 2, + ACTIONS(7169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1097), 9, + STATE(1232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163773,44 +160761,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123300] = 17, + [122203] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(611), 1, anon_sym_DOLLAR, - ACTIONS(2919), 1, + ACTIONS(615), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(621), 1, aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(627), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, + ACTIONS(639), 1, + sym__brace_start, + ACTIONS(6937), 1, sym_word, - ACTIONS(7115), 1, + ACTIONS(6945), 1, sym__comment_word, - ACTIONS(6560), 2, + ACTIONS(595), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7111), 2, + ACTIONS(6941), 2, sym__special_character, sym_test_operator, - ACTIONS(7113), 2, + ACTIONS(6943), 2, sym_raw_string, sym_ansi_c_string, - STATE(1435), 9, + STATE(813), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163820,44 +160808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123364] = 17, + [122267] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(2709), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(2713), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, + ACTIONS(4092), 1, anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, + ACTIONS(6484), 1, sym_word, - ACTIONS(7231), 1, - anon_sym_DOLLAR, - ACTIONS(7237), 1, + ACTIONS(6488), 1, sym__comment_word, - ACTIONS(6432), 2, + ACTIONS(7287), 1, + anon_sym_DOLLAR, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7233), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7235), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(1279), 9, + ACTIONS(6492), 2, + sym__special_character, + sym_test_operator, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163867,44 +160855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123428] = 17, + [122331] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(55), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(7289), 1, sym_word, - ACTIONS(7105), 1, + ACTIONS(7295), 1, sym__comment_word, - ACTIONS(7239), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7101), 2, + ACTIONS(7291), 2, sym__special_character, sym_test_operator, - ACTIONS(7103), 2, + ACTIONS(7293), 2, sym_raw_string, sym_ansi_c_string, - STATE(1151), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163914,91 +160902,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123492] = 17, + [122395] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6468), 1, + anon_sym_DOLLAR, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, aux_sym_number_token1, - ACTIONS(2709), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6476), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, + ACTIONS(6478), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6480), 1, anon_sym_BQUOTE, - ACTIONS(6444), 1, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, - sym_word, - ACTIONS(7237), 1, - sym__comment_word, - ACTIONS(7241), 1, - anon_sym_DOLLAR, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7233), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7235), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1279), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7299), 1, + anon_sym_LF, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2693), 1, + sym__c_terminator, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3777), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [123556] = 17, + [122465] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(5611), 1, aux_sym_number_token2, - ACTIONS(2514), 1, + ACTIONS(5613), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, + ACTIONS(5617), 1, + anon_sym_BQUOTE, + ACTIONS(5619), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5629), 1, sym__brace_start, - ACTIONS(7243), 1, + ACTIONS(7301), 1, sym_word, - ACTIONS(7247), 1, + ACTIONS(7303), 1, anon_sym_DOLLAR, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(7309), 1, sym__comment_word, - ACTIONS(7245), 2, + ACTIONS(5597), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, + ACTIONS(5621), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7305), 2, sym__special_character, sym_test_operator, - ACTIONS(7253), 2, + ACTIONS(7307), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, + STATE(3267), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164008,44 +160999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123620] = 17, + [122529] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(2514), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(7255), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, + sym_word, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(7265), 1, + ACTIONS(7311), 1, anon_sym_DOLLAR, - ACTIONS(7245), 2, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - ACTIONS(7253), 2, + ACTIONS(6811), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164055,44 +161046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123684] = 17, + [122593] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(6314), 1, + anon_sym_DOLLAR, + ACTIONS(6318), 1, + anon_sym_DQUOTE, + ACTIONS(6322), 1, aux_sym_number_token1, - ACTIONS(3026), 1, + ACTIONS(6324), 1, aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(6328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6330), 1, anon_sym_BQUOTE, - ACTIONS(6618), 1, + ACTIONS(6332), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, + ACTIONS(6338), 1, + sym__brace_start, + ACTIONS(6825), 1, sym_word, - ACTIONS(7185), 1, + ACTIONS(6833), 1, sym__comment_word, - ACTIONS(7267), 1, - anon_sym_DOLLAR, - ACTIONS(6606), 2, + ACTIONS(6312), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, + ACTIONS(6334), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7181), 2, + ACTIONS(6829), 2, sym__special_character, sym_test_operator, - ACTIONS(7183), 2, + ACTIONS(6831), 2, sym_raw_string, sym_ansi_c_string, - STATE(1399), 9, + STATE(1722), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164102,44 +161093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123748] = 17, + [122657] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(7269), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(7271), 1, - anon_sym_DOLLAR, - ACTIONS(7277), 1, + ACTIONS(7109), 1, sym__comment_word, - ACTIONS(5787), 2, + ACTIONS(7313), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7273), 2, + ACTIONS(7105), 2, sym__special_character, sym_test_operator, - ACTIONS(7275), 2, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(1296), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164149,91 +161140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123812] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7281), 1, - anon_sym_LF, - STATE(2829), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7279), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4041), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [123876] = 17, + [122721] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(7269), 1, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, sym_word, - ACTIONS(7277), 1, + ACTIONS(6488), 1, sym__comment_word, - ACTIONS(7283), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR, - ACTIONS(5787), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(1296), 9, + ACTIONS(6492), 2, + sym__special_character, + sym_test_operator, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164243,44 +161187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [123940] = 17, + [122785] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7269), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7285), 1, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(5787), 2, + ACTIONS(7325), 1, + sym__comment_word, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7273), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7275), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(1296), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164290,44 +161234,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124004] = 17, + [122849] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2707), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(2709), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(2713), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, + ACTIONS(5284), 1, sym__brace_start, - ACTIONS(6436), 1, + ACTIONS(6168), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6172), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(6444), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, + ACTIONS(7129), 1, sym_word, - ACTIONS(7237), 1, + ACTIONS(7137), 1, sym__comment_word, - ACTIONS(6432), 2, + ACTIONS(7327), 1, + anon_sym_DOLLAR, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7233), 2, + ACTIONS(7133), 2, sym__special_character, sym_test_operator, - ACTIONS(7235), 2, + ACTIONS(7135), 2, sym_raw_string, sym_ansi_c_string, - STATE(1279), 9, + STATE(2901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164337,44 +161281,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124068] = 17, + [122913] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(4757), 1, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4051), 1, anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6805), 1, sym_word, - ACTIONS(6876), 1, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(7287), 1, + ACTIONS(7329), 1, anon_sym_DOLLAR, - ACTIONS(598), 2, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - STATE(1856), 9, + ACTIONS(6811), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164384,44 +161328,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124132] = 17, + [122977] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, aux_sym_number_token1, - ACTIONS(4834), 1, + ACTIONS(5611), 1, aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, + ACTIONS(5613), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, + ACTIONS(5615), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5617), 1, anon_sym_BQUOTE, - ACTIONS(5429), 1, + ACTIONS(5619), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, + ACTIONS(5629), 1, + sym__brace_start, + ACTIONS(7301), 1, sym_word, - ACTIONS(7295), 1, + ACTIONS(7309), 1, sym__comment_word, - ACTIONS(5415), 2, + ACTIONS(7331), 1, + anon_sym_DOLLAR, + ACTIONS(5597), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, + ACTIONS(5621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7291), 2, + ACTIONS(7305), 2, sym__special_character, sym_test_operator, - ACTIONS(7293), 2, + ACTIONS(7307), 2, sym_raw_string, sym_ansi_c_string, - STATE(4137), 9, + STATE(3267), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164431,44 +161375,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124196] = 17, + [123041] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(5925), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(5929), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(5931), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(5933), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(5935), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(5937), 1, + anon_sym_BQUOTE, + ACTIONS(5939), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(7017), 1, sym_word, - ACTIONS(6876), 1, + ACTIONS(7025), 1, sym__comment_word, - ACTIONS(7297), 1, + ACTIONS(7333), 1, anon_sym_DOLLAR, - ACTIONS(598), 2, + ACTIONS(5917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(5941), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, + ACTIONS(7021), 2, sym__special_character, sym_test_operator, - STATE(1856), 9, + ACTIONS(7023), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164478,44 +161422,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124260] = 17, + [123105] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, + ACTIONS(6665), 1, + anon_sym_DQUOTE, + ACTIONS(6669), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(6671), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(6675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6677), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(6679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6685), 1, + sym__brace_start, + ACTIONS(7029), 1, sym_word, - ACTIONS(7301), 1, - anon_sym_DOLLAR, - ACTIONS(7307), 1, + ACTIONS(7035), 1, sym__comment_word, - ACTIONS(1149), 2, + ACTIONS(7335), 1, + anon_sym_DOLLAR, + ACTIONS(6659), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(6681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(7031), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(7033), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(3338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164525,44 +161469,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124324] = 17, + [123169] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, + ACTIONS(5831), 1, + anon_sym_DOLLAR, + ACTIONS(5835), 1, + anon_sym_DQUOTE, + ACTIONS(5839), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(5841), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(5845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5847), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(5849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5859), 1, + sym__brace_start, + ACTIONS(6903), 1, sym_word, - ACTIONS(7307), 1, + ACTIONS(6911), 1, sym__comment_word, - ACTIONS(7309), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, + ACTIONS(5827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(5851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(6907), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(6909), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164572,44 +161516,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124388] = 17, + [123233] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, + ACTIONS(6835), 1, sym_word, - ACTIONS(7313), 1, - anon_sym_DOLLAR, - ACTIONS(7319), 1, + ACTIONS(6843), 1, sym__comment_word, - ACTIONS(6754), 2, + ACTIONS(7337), 1, + anon_sym_DOLLAR, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7315), 2, + ACTIONS(6839), 2, sym__special_character, sym_test_operator, - ACTIONS(7317), 2, + ACTIONS(6841), 2, sym_raw_string, sym_ansi_c_string, - STATE(2875), 9, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164619,44 +161563,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124452] = 17, + [123297] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(2941), 1, + sym__brace_start, + ACTIONS(6284), 1, + anon_sym_DQUOTE, + ACTIONS(6288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6290), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(6292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(6883), 1, sym_word, - ACTIONS(7323), 1, - anon_sym_DOLLAR, - ACTIONS(7329), 1, + ACTIONS(6889), 1, sym__comment_word, - ACTIONS(340), 2, + ACTIONS(7339), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(6294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(6885), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(6887), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164666,44 +161610,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124516] = 17, + [123361] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(6508), 1, + anon_sym_DOLLAR, + ACTIONS(6512), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(6516), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(6518), 1, aux_sym_number_token2, - ACTIONS(574), 1, + ACTIONS(6520), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, + ACTIONS(6522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, + ACTIONS(6524), 1, anon_sym_BQUOTE, - ACTIONS(580), 1, + ACTIONS(6526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, + ACTIONS(6532), 1, sym__brace_start, - ACTIONS(7331), 1, + ACTIONS(6847), 1, sym_word, - ACTIONS(7333), 1, - anon_sym_DOLLAR, - ACTIONS(7339), 1, + ACTIONS(6855), 1, sym__comment_word, - ACTIONS(546), 2, + ACTIONS(6506), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, + ACTIONS(6528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7335), 2, + ACTIONS(6851), 2, sym__special_character, sym_test_operator, - ACTIONS(7337), 2, + ACTIONS(6853), 2, sym_raw_string, sym_ansi_c_string, - STATE(822), 9, + STATE(2713), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164713,44 +161657,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124580] = 17, + [123425] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(2925), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(2927), 1, aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(2941), 1, + sym__brace_start, + ACTIONS(6284), 1, + anon_sym_DQUOTE, + ACTIONS(6288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6290), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(6292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(6883), 1, sym_word, - ACTIONS(7329), 1, + ACTIONS(6889), 1, sym__comment_word, ACTIONS(7341), 1, anon_sym_DOLLAR, - ACTIONS(340), 2, + ACTIONS(6280), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(6294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(6885), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(6887), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164760,44 +161704,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124644] = 17, + [123489] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(6802), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(6810), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(7343), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(7349), 1, + ACTIONS(7127), 1, sym__comment_word, - ACTIONS(6790), 2, + ACTIONS(7343), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7345), 2, + ACTIONS(7123), 2, sym__special_character, sym_test_operator, - ACTIONS(7347), 2, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(3998), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164807,44 +161751,80 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124708] = 17, + [123553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7345), 1, + aux_sym_concatenation_token1, + ACTIONS(7347), 1, + sym__concat, + STATE(2581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1262), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [123595] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(360), 1, + ACTIONS(1419), 1, anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(1425), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(1427), 1, aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(1431), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(1447), 1, + sym__brace_start, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + ACTIONS(5767), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5769), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(5771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(7273), 1, sym_word, - ACTIONS(7329), 1, + ACTIONS(7281), 1, sym__comment_word, - ACTIONS(340), 2, + ACTIONS(5757), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(5773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(7277), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(7279), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(755), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164854,44 +161834,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124772] = 17, + [123659] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(572), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(574), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(580), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(7331), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(7339), 1, + ACTIONS(7109), 1, sym__comment_word, - ACTIONS(7351), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - ACTIONS(546), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7335), 2, + ACTIONS(7105), 2, sym__special_character, sym_test_operator, - ACTIONS(7337), 2, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(822), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164901,44 +161881,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124836] = 17, + [123723] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7329), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(7353), 1, + ACTIONS(7351), 1, anon_sym_DOLLAR, - ACTIONS(340), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164948,44 +161928,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124900] = 17, + [123787] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(3404), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(7353), 1, sym_word, - ACTIONS(7329), 1, - sym__comment_word, ACTIONS(7355), 1, anon_sym_DOLLAR, - ACTIONS(340), 2, + ACTIONS(7361), 1, + sym__comment_word, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(7357), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(7359), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1817), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164995,44 +161975,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [124964] = 17, + [123851] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1410), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(7363), 1, + ACTIONS(7127), 1, sym__comment_word, - ACTIONS(1380), 2, + ACTIONS(7363), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7359), 2, + ACTIONS(7123), 2, sym__special_character, sym_test_operator, - ACTIONS(7361), 2, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(2240), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165042,44 +162022,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125028] = 17, + [123915] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(252), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(1159), 1, + ACTIONS(5639), 1, anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(5647), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7119), 1, sym_word, - ACTIONS(7307), 1, + ACTIONS(7127), 1, sym__comment_word, ACTIONS(7365), 1, anon_sym_DOLLAR, - ACTIONS(1149), 2, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(7123), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165089,44 +162069,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125092] = 17, + [123979] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(252), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(1159), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(4051), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(6805), 1, sym_word, - ACTIONS(7307), 1, + ACTIONS(6813), 1, sym__comment_word, ACTIONS(7367), 1, anon_sym_DOLLAR, - ACTIONS(1149), 2, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(6811), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165136,91 +162116,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125156] = 17, + [124043] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6468), 1, + anon_sym_DOLLAR, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(6472), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(6476), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(6478), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(6480), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7369), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7371), 1, + anon_sym_LF, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2739), 1, + sym__c_terminator, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7369), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3781), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [125220] = 17, + [124113] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(276), 1, + anon_sym_DOLLAR, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(7269), 1, + ACTIONS(6917), 1, sym_word, - ACTIONS(7277), 1, + ACTIONS(6925), 1, sym__comment_word, - ACTIONS(7371), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7273), 2, + ACTIONS(6921), 2, sym__special_character, sym_test_operator, - ACTIONS(7275), 2, + ACTIONS(6923), 2, sym_raw_string, sym_ansi_c_string, - STATE(1296), 9, + STATE(412), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165230,44 +162213,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125284] = 17, + [124177] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(6404), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(6408), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(6410), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(6416), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(6418), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(6426), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(6817), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(6823), 1, sym__comment_word, ACTIONS(7373), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(6398), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(6422), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(6819), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(6821), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(3891), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165277,44 +162260,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125348] = 17, + [124241] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(166), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(168), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(172), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(186), 1, sym__brace_start, - ACTIONS(6564), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + ACTIONS(6893), 1, sym_word, - ACTIONS(7115), 1, + ACTIONS(6901), 1, sym__comment_word, ACTIONS(7375), 1, anon_sym_DOLLAR, - ACTIONS(6560), 2, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7111), 2, + ACTIONS(6897), 2, sym__special_character, sym_test_operator, - ACTIONS(7113), 2, + ACTIONS(6899), 2, sym_raw_string, sym_ansi_c_string, - STATE(1435), 9, + STATE(1568), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165324,44 +162307,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125412] = 17, + [124305] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(5543), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5547), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5549), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5557), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5567), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(6927), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(6935), 1, sym__comment_word, ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(5535), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(6931), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(6933), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(2638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165371,44 +162354,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125476] = 17, + [124369] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(160), 1, + anon_sym_DOLLAR, + ACTIONS(166), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(168), 1, aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(172), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, + ACTIONS(186), 1, sym__brace_start, - ACTIONS(7311), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + ACTIONS(6893), 1, sym_word, - ACTIONS(7319), 1, + ACTIONS(6901), 1, sym__comment_word, - ACTIONS(7379), 1, - anon_sym_DOLLAR, - ACTIONS(6754), 2, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7315), 2, + ACTIONS(6897), 2, sym__special_character, sym_test_operator, - ACTIONS(7317), 2, + ACTIONS(6899), 2, sym_raw_string, sym_ansi_c_string, - STATE(2875), 9, + STATE(1568), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165418,44 +162401,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125540] = 17, + [124433] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(6904), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, + ACTIONS(1909), 1, + sym__brace_start, + ACTIONS(5639), 1, + anon_sym_DQUOTE, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(6912), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(7381), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(7383), 1, - anon_sym_DOLLAR, - ACTIONS(7389), 1, + ACTIONS(7127), 1, sym__comment_word, - ACTIONS(6892), 2, + ACTIONS(7379), 1, + anon_sym_DOLLAR, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7385), 2, + ACTIONS(7123), 2, sym__special_character, sym_test_operator, - ACTIONS(7387), 2, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(3508), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165465,44 +162448,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125604] = 17, + [124497] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(166), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(168), 1, aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(172), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(186), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4130), 1, + anon_sym_BQUOTE, + ACTIONS(6893), 1, sym_word, - ACTIONS(7329), 1, + ACTIONS(6901), 1, sym__comment_word, - ACTIONS(7391), 1, + ACTIONS(7381), 1, anon_sym_DOLLAR, - ACTIONS(340), 2, + ACTIONS(1103), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(6897), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(6899), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1568), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165512,44 +162495,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125668] = 17, + [124561] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, + ACTIONS(5717), 1, + anon_sym_DOLLAR, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(368), 1, + ACTIONS(5725), 1, aux_sym_number_token1, - ACTIONS(370), 1, + ACTIONS(5727), 1, aux_sym_number_token2, - ACTIONS(372), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, + ACTIONS(5731), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, + ACTIONS(5733), 1, anon_sym_BQUOTE, - ACTIONS(378), 1, + ACTIONS(5735), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, + ACTIONS(5745), 1, sym__brace_start, - ACTIONS(7321), 1, + ACTIONS(7253), 1, sym_word, - ACTIONS(7329), 1, + ACTIONS(7261), 1, sym__comment_word, - ACTIONS(7393), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, + ACTIONS(5713), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, + ACTIONS(5737), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7325), 2, + ACTIONS(7257), 2, sym__special_character, sym_test_operator, - ACTIONS(7327), 2, + ACTIONS(7259), 2, sym_raw_string, sym_ansi_c_string, - STATE(969), 9, + STATE(1346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165559,44 +162542,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125732] = 17, + [124625] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2307), 1, + anon_sym_DOLLAR, + ACTIONS(2313), 1, aux_sym_number_token1, - ACTIONS(2921), 1, + ACTIONS(2315), 1, aux_sym_number_token2, - ACTIONS(2925), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, + ACTIONS(2329), 1, sym__brace_start, - ACTIONS(6564), 1, + ACTIONS(6376), 1, anon_sym_DQUOTE, - ACTIONS(6568), 1, + ACTIONS(6380), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6382), 1, anon_sym_BQUOTE, - ACTIONS(6572), 1, + ACTIONS(6384), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, + ACTIONS(7173), 1, sym_word, - ACTIONS(7115), 1, + ACTIONS(7181), 1, sym__comment_word, - ACTIONS(7395), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, + ACTIONS(6372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, + ACTIONS(6386), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7111), 2, + ACTIONS(7177), 2, sym__special_character, sym_test_operator, - ACTIONS(7113), 2, + ACTIONS(7179), 2, sym_raw_string, sym_ansi_c_string, - STATE(1435), 9, + STATE(1155), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165606,44 +162589,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125796] = 17, + [124689] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(2561), 1, + sym__brace_start, + ACTIONS(6965), 1, + sym_word, + ACTIONS(6973), 1, + anon_sym_DQUOTE, + ACTIONS(6977), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6979), 1, + anon_sym_BQUOTE, + ACTIONS(6981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(6985), 1, + sym__comment_word, + ACTIONS(7383), 1, + anon_sym_DOLLAR, + ACTIONS(6967), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6971), 2, + sym__special_character, + sym_test_operator, + ACTIONS(6975), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124753] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + aux_sym_number_token1, + ACTIONS(324), 1, + aux_sym_number_token2, + ACTIONS(328), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(4757), 1, + ACTIONS(1157), 1, + anon_sym_DQUOTE, + ACTIONS(1161), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4051), 1, anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(6805), 1, sym_word, - ACTIONS(6876), 1, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(7397), 1, + ACTIONS(7385), 1, anon_sym_DOLLAR, - ACTIONS(598), 2, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - STATE(1856), 9, + ACTIONS(6811), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165653,44 +162683,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125860] = 17, + [124817] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(5635), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(5639), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(5641), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(5643), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5649), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(7399), 1, + ACTIONS(7101), 1, sym_word, - ACTIONS(7405), 1, + ACTIONS(7109), 1, sym__comment_word, - ACTIONS(5627), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7401), 2, + ACTIONS(7105), 2, sym__special_character, sym_test_operator, - ACTIONS(7403), 2, + ACTIONS(7107), 2, sym_raw_string, sym_ansi_c_string, - STATE(2015), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165700,44 +162730,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125924] = 17, + [124881] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(6010), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(6012), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7071), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7079), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(7407), 1, + ACTIONS(7387), 1, anon_sym_DOLLAR, - ACTIONS(5996), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(2736), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165747,44 +162777,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [125988] = 17, + [124945] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(6404), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(6408), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(6410), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(6416), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(6418), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(6426), 1, sym__brace_start, - ACTIONS(7039), 1, + ACTIONS(6817), 1, sym_word, - ACTIONS(7047), 1, + ACTIONS(6823), 1, sym__comment_word, - ACTIONS(7409), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR, - ACTIONS(13), 2, + ACTIONS(6398), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(6422), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7043), 2, + ACTIONS(6819), 2, sym__special_character, sym_test_operator, - ACTIONS(7045), 2, + ACTIONS(6821), 2, sym_raw_string, sym_ansi_c_string, - STATE(1023), 9, + STATE(3891), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165794,44 +162824,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126052] = 17, + [125009] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, + ACTIONS(2537), 1, + anon_sym_DOLLAR, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(6904), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(7381), 1, + ACTIONS(6965), 1, sym_word, - ACTIONS(7389), 1, + ACTIONS(6973), 1, + anon_sym_DQUOTE, + ACTIONS(6977), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6979), 1, + anon_sym_BQUOTE, + ACTIONS(6981), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6985), 1, sym__comment_word, - ACTIONS(7411), 1, - anon_sym_DOLLAR, - ACTIONS(6892), 2, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7385), 2, + ACTIONS(6971), 2, sym__special_character, sym_test_operator, - ACTIONS(7387), 2, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - STATE(3508), 9, + ACTIONS(6983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165841,44 +162871,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126116] = 17, + [125073] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(3384), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(6010), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(6012), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, + ACTIONS(3394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, + ACTIONS(3404), 1, sym__brace_start, - ACTIONS(7071), 1, + ACTIONS(7353), 1, sym_word, - ACTIONS(7079), 1, + ACTIONS(7361), 1, sym__comment_word, - ACTIONS(7413), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(5996), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(7357), 2, sym__special_character, sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(7359), 2, sym_raw_string, sym_ansi_c_string, - STATE(2736), 9, + STATE(1817), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165888,44 +162918,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126180] = 17, + [125137] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(2510), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(2514), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, + ACTIONS(5284), 1, sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, + ACTIONS(6168), 1, anon_sym_DQUOTE, - ACTIONS(7255), 1, + ACTIONS(6172), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(7259), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, + ACTIONS(7129), 1, + sym_word, + ACTIONS(7137), 1, sym__comment_word, - ACTIONS(7415), 1, + ACTIONS(7393), 1, anon_sym_DOLLAR, - ACTIONS(7245), 2, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, + ACTIONS(6178), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7133), 2, sym__special_character, sym_test_operator, - ACTIONS(7253), 2, + ACTIONS(7135), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, + STATE(2901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165935,44 +162965,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126244] = 17, + [125201] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(619), 1, + ACTIONS(5725), 1, aux_sym_number_token1, - ACTIONS(621), 1, + ACTIONS(5727), 1, aux_sym_number_token2, - ACTIONS(623), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, + ACTIONS(5731), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(5733), 1, + anon_sym_BQUOTE, + ACTIONS(5735), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, + ACTIONS(5745), 1, sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, + ACTIONS(7253), 1, sym_word, - ACTIONS(6876), 1, + ACTIONS(7261), 1, sym__comment_word, - ACTIONS(7417), 1, + ACTIONS(7395), 1, anon_sym_DOLLAR, - ACTIONS(598), 2, + ACTIONS(5713), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, + ACTIONS(5737), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, + ACTIONS(7257), 2, sym__special_character, sym_test_operator, - STATE(1856), 9, + ACTIONS(7259), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165982,44 +163012,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126308] = 17, + [125265] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(2283), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(2285), 1, aux_sym_number_token2, - ACTIONS(1937), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, + ACTIONS(2301), 1, sym__brace_start, - ACTIONS(5857), 1, + ACTIONS(7061), 1, + sym_word, + ACTIONS(7067), 1, anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(7071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(7073), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, + ACTIONS(7079), 1, sym__comment_word, - ACTIONS(7419), 1, + ACTIONS(7397), 1, anon_sym_DOLLAR, - ACTIONS(5851), 2, + ACTIONS(7063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, + ACTIONS(7065), 2, sym__special_character, sym_test_operator, - ACTIONS(7103), 2, + ACTIONS(7069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1151), 9, + ACTIONS(7077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166029,44 +163059,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126372] = 17, + [125329] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(3701), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(3703), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(3709), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(7153), 1, + ACTIONS(7289), 1, sym_word, - ACTIONS(7161), 1, + ACTIONS(7295), 1, sym__comment_word, - ACTIONS(3689), 2, + ACTIONS(7399), 1, + anon_sym_DOLLAR, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7157), 2, + ACTIONS(7291), 2, sym__special_character, sym_test_operator, - ACTIONS(7159), 2, + ACTIONS(7293), 2, sym_raw_string, sym_ansi_c_string, - STATE(1998), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166076,44 +163106,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126436] = 17, + [125393] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6898), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(6902), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(6904), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(6906), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(6912), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(7381), 1, + ACTIONS(7289), 1, sym_word, - ACTIONS(7389), 1, + ACTIONS(7295), 1, sym__comment_word, - ACTIONS(6892), 2, + ACTIONS(7401), 1, + anon_sym_DOLLAR, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7385), 2, + ACTIONS(7291), 2, sym__special_character, sym_test_operator, - ACTIONS(7387), 2, + ACTIONS(7293), 2, sym_raw_string, sym_ansi_c_string, - STATE(3508), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166123,44 +163153,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126500] = 17, + [125457] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, + ACTIONS(2283), 1, aux_sym_number_token1, - ACTIONS(7017), 1, + ACTIONS(2285), 1, aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, + ACTIONS(2301), 1, sym__brace_start, - ACTIONS(7421), 1, + ACTIONS(7061), 1, sym_word, - ACTIONS(7423), 1, - anon_sym_DOLLAR, - ACTIONS(7429), 1, + ACTIONS(7067), 1, + anon_sym_DQUOTE, + ACTIONS(7071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7073), 1, + anon_sym_BQUOTE, + ACTIONS(7075), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7079), 1, sym__comment_word, - ACTIONS(7005), 2, + ACTIONS(7403), 1, + anon_sym_DOLLAR, + ACTIONS(7063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7425), 2, + ACTIONS(7065), 2, sym__special_character, sym_test_operator, - ACTIONS(7427), 2, + ACTIONS(7069), 2, sym_raw_string, sym_ansi_c_string, - STATE(3565), 9, + ACTIONS(7077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166170,44 +163200,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126564] = 17, + [125521] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(6008), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(6010), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(6012), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7071), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7079), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(7431), 1, + ACTIONS(7405), 1, anon_sym_DOLLAR, - ACTIONS(5996), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7075), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7077), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(2736), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166217,44 +163247,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126628] = 17, + [125585] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(6768), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7311), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7319), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(7433), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR, - ACTIONS(6754), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7315), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7317), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(2875), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166264,44 +163294,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126692] = 17, + [125649] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(6665), 1, anon_sym_DQUOTE, - ACTIONS(6764), 1, + ACTIONS(6669), 1, aux_sym_number_token1, - ACTIONS(6766), 1, + ACTIONS(6671), 1, aux_sym_number_token2, - ACTIONS(6768), 1, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, + ACTIONS(6677), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(6679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, + ACTIONS(6685), 1, sym__brace_start, - ACTIONS(7311), 1, + ACTIONS(7029), 1, sym_word, - ACTIONS(7319), 1, + ACTIONS(7035), 1, sym__comment_word, - ACTIONS(7435), 1, + ACTIONS(7409), 1, anon_sym_DOLLAR, - ACTIONS(6754), 2, + ACTIONS(6659), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, + ACTIONS(6681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7315), 2, + ACTIONS(7031), 2, sym__special_character, sym_test_operator, - ACTIONS(7317), 2, + ACTIONS(7033), 2, sym_raw_string, sym_ansi_c_string, - STATE(2875), 9, + STATE(3338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166311,44 +163341,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126756] = 17, + [125713] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7437), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7443), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(1033), 2, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7439), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7441), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(1679), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166358,44 +163388,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126820] = 17, + [125777] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, + ACTIONS(1883), 1, + anon_sym_DOLLAR, + ACTIONS(1889), 1, aux_sym_number_token1, - ACTIONS(1933), 1, + ACTIONS(1891), 1, aux_sym_number_token2, - ACTIONS(1937), 1, + ACTIONS(1895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, + ACTIONS(1909), 1, sym__brace_start, - ACTIONS(5857), 1, + ACTIONS(5639), 1, anon_sym_DQUOTE, - ACTIONS(5861), 1, + ACTIONS(5643), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(5645), 1, anon_sym_BQUOTE, - ACTIONS(5865), 1, + ACTIONS(5647), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, + ACTIONS(7119), 1, sym_word, - ACTIONS(7105), 1, + ACTIONS(7127), 1, sym__comment_word, - ACTIONS(7445), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, + ACTIONS(5633), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, + ACTIONS(5649), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7101), 2, + ACTIONS(7123), 2, sym__special_character, sym_test_operator, - ACTIONS(7103), 2, + ACTIONS(7125), 2, sym_raw_string, sym_ansi_c_string, - STATE(1151), 9, + STATE(1083), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166405,44 +163435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126884] = 17, + [125841] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(7447), 1, + ACTIONS(7413), 1, sym_word, - ACTIONS(7453), 1, + ACTIONS(7415), 1, + anon_sym_DOLLAR, + ACTIONS(7421), 1, sym__comment_word, - ACTIONS(3944), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7449), 2, + ACTIONS(7417), 2, sym__special_character, sym_test_operator, - ACTIONS(7451), 2, + ACTIONS(7419), 2, sym_raw_string, sym_ansi_c_string, - STATE(3118), 9, + STATE(361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166452,91 +163482,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [126948] = 17, + [125905] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5915), 1, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(5919), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(5921), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(5923), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(5929), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(7117), 1, + ACTIONS(7413), 1, sym_word, - ACTIONS(7125), 1, + ACTIONS(7421), 1, sym__comment_word, - ACTIONS(5907), 2, + ACTIONS(7423), 1, + anon_sym_DOLLAR, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7121), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7123), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1201), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127012] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7455), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, + ACTIONS(7417), 2, sym__special_character, sym_test_operator, - ACTIONS(7253), 2, + ACTIONS(7419), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, + STATE(361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166546,44 +163529,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127076] = 17, + [125969] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6044), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7457), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7463), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(6036), 2, + ACTIONS(7425), 1, + anon_sym_DOLLAR, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7459), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7461), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(2420), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166593,44 +163576,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127140] = 17, + [126033] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, + ACTIONS(2849), 1, aux_sym_number_token1, - ACTIONS(7017), 1, + ACTIONS(2851), 1, aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, + ACTIONS(2855), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, + ACTIONS(2865), 1, + sym__brace_start, + ACTIONS(6198), 1, + anon_sym_DQUOTE, + ACTIONS(6202), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6204), 1, anon_sym_BQUOTE, - ACTIONS(7025), 1, + ACTIONS(6206), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7421), 1, + ACTIONS(6835), 1, sym_word, - ACTIONS(7429), 1, + ACTIONS(6843), 1, sym__comment_word, - ACTIONS(7465), 1, + ACTIONS(7427), 1, anon_sym_DOLLAR, - ACTIONS(7005), 2, + ACTIONS(6194), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, + ACTIONS(6208), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7425), 2, + ACTIONS(6839), 2, sym__special_character, sym_test_operator, - ACTIONS(7427), 2, + ACTIONS(6841), 2, sym_raw_string, sym_ansi_c_string, - STATE(3565), 9, + STATE(1426), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166640,44 +163623,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127204] = 17, + [126097] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 1, + ACTIONS(5489), 1, + anon_sym_DOLLAR, + ACTIONS(5493), 1, anon_sym_DQUOTE, - ACTIONS(3811), 1, + ACTIONS(5497), 1, aux_sym_number_token1, - ACTIONS(3813), 1, + ACTIONS(5499), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, + ACTIONS(5503), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, + ACTIONS(5505), 1, anon_sym_BQUOTE, - ACTIONS(3821), 1, + ACTIONS(5507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, + ACTIONS(5517), 1, sym__brace_start, - ACTIONS(7467), 1, + ACTIONS(7429), 1, sym_word, - ACTIONS(7469), 1, - anon_sym_DOLLAR, - ACTIONS(7475), 1, + ACTIONS(7435), 1, sym__comment_word, - ACTIONS(3801), 2, + ACTIONS(5485), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, + ACTIONS(5509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7471), 2, + ACTIONS(7431), 2, sym__special_character, sym_test_operator, - ACTIONS(7473), 2, + ACTIONS(7433), 2, sym_raw_string, sym_ansi_c_string, - STATE(2043), 9, + STATE(1792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166687,44 +163670,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127268] = 17, + [126161] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(5268), 1, aux_sym_number_token1, - ACTIONS(6694), 1, + ACTIONS(5270), 1, aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, + ACTIONS(5284), 1, + sym__brace_start, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, anon_sym_BQUOTE, - ACTIONS(6704), 1, + ACTIONS(6176), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(7477), 1, + ACTIONS(7129), 1, sym_word, - ACTIONS(7479), 1, - anon_sym_DOLLAR, - ACTIONS(7485), 1, + ACTIONS(7137), 1, sym__comment_word, - ACTIONS(6682), 2, + ACTIONS(7437), 1, + anon_sym_DOLLAR, + ACTIONS(6164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, + ACTIONS(6178), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7481), 2, + ACTIONS(7133), 2, sym__special_character, sym_test_operator, - ACTIONS(7483), 2, + ACTIONS(7135), 2, sym_raw_string, sym_ansi_c_string, - STATE(4105), 9, + STATE(2901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166734,44 +163717,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127332] = 17, + [126225] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, + ACTIONS(204), 1, anon_sym_DQUOTE, - ACTIONS(6800), 1, + ACTIONS(208), 1, aux_sym_number_token1, - ACTIONS(6802), 1, + ACTIONS(210), 1, aux_sym_number_token2, - ACTIONS(6804), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, + ACTIONS(214), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, + ACTIONS(216), 1, anon_sym_BQUOTE, - ACTIONS(6810), 1, + ACTIONS(218), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(7343), 1, + ACTIONS(6869), 1, sym_word, - ACTIONS(7349), 1, + ACTIONS(6877), 1, sym__comment_word, - ACTIONS(7487), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR, - ACTIONS(6790), 2, + ACTIONS(190), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, + ACTIONS(220), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7345), 2, + ACTIONS(6873), 2, sym__special_character, sym_test_operator, - ACTIONS(7347), 2, + ACTIONS(6875), 2, sym_raw_string, sym_ansi_c_string, - STATE(3998), 9, + STATE(385), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166781,44 +163764,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127396] = 17, + [126289] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR, - ACTIONS(308), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(314), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(316), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(7489), 1, + ACTIONS(4092), 1, + anon_sym_BQUOTE, + ACTIONS(6484), 1, sym_word, - ACTIONS(7495), 1, + ACTIONS(6488), 1, sym__comment_word, - ACTIONS(272), 2, + ACTIONS(7441), 1, + anon_sym_DOLLAR, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(423), 9, + ACTIONS(6492), 2, + sym__special_character, + sym_test_operator, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166828,44 +163811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127460] = 17, + [126353] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7163), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7171), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(5671), 2, + ACTIONS(7443), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(2793), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166875,127 +163858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127524] = 17, + [126417] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(162), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(164), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(4092), 1, anon_sym_BQUOTE, - ACTIONS(7187), 1, + ACTIONS(6484), 1, sym_word, - ACTIONS(7193), 1, + ACTIONS(6488), 1, sym__comment_word, - ACTIONS(7497), 1, + ACTIONS(7445), 1, anon_sym_DOLLAR, - ACTIONS(1095), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, + ACTIONS(6490), 2, sym_raw_string, sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127588] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [127630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7503), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, + ACTIONS(6492), 2, sym__special_character, sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, + STATE(1748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167005,77 +163905,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127694] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [127730] = 17, + [126481] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 1, + ACTIONS(5601), 1, anon_sym_DOLLAR, - ACTIONS(6167), 1, + ACTIONS(5605), 1, anon_sym_DQUOTE, - ACTIONS(6171), 1, + ACTIONS(5609), 1, aux_sym_number_token1, - ACTIONS(6173), 1, + ACTIONS(5611), 1, aux_sym_number_token2, - ACTIONS(6175), 1, + ACTIONS(5613), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, + ACTIONS(5615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, + ACTIONS(5617), 1, anon_sym_BQUOTE, - ACTIONS(6181), 1, + ACTIONS(5619), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, + ACTIONS(5629), 1, sym__brace_start, - ACTIONS(7505), 1, + ACTIONS(7301), 1, sym_word, - ACTIONS(7511), 1, + ACTIONS(7309), 1, sym__comment_word, - ACTIONS(6159), 2, + ACTIONS(5597), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, + ACTIONS(5621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7507), 2, + ACTIONS(7305), 2, sym__special_character, sym_test_operator, - ACTIONS(7509), 2, + ACTIONS(7307), 2, sym_raw_string, sym_ansi_c_string, - STATE(3505), 9, + STATE(3267), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167085,91 +163952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127794] = 17, + [126545] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7513), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127858] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(2482), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, + ACTIONS(6038), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(6536), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, + ACTIONS(6048), 1, + sym__brace_start, + ACTIONS(6957), 1, sym_word, - ACTIONS(7517), 1, - anon_sym_DOLLAR, - ACTIONS(7523), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(6524), 2, + ACTIONS(7447), 1, + anon_sym_DOLLAR, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7519), 2, + ACTIONS(6959), 2, sym__special_character, sym_test_operator, - ACTIONS(7521), 2, + ACTIONS(6961), 2, sym_raw_string, sym_ansi_c_string, - STATE(1094), 9, + STATE(3104), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167179,44 +163999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127922] = 17, + [126609] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 1, + ACTIONS(5493), 1, + anon_sym_DQUOTE, + ACTIONS(5497), 1, aux_sym_number_token1, - ACTIONS(2482), 1, + ACTIONS(5499), 1, aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, + ACTIONS(5503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5505), 1, anon_sym_BQUOTE, - ACTIONS(6536), 1, + ACTIONS(5507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, + ACTIONS(5517), 1, + sym__brace_start, + ACTIONS(7429), 1, sym_word, - ACTIONS(7523), 1, + ACTIONS(7435), 1, sym__comment_word, - ACTIONS(7525), 1, + ACTIONS(7449), 1, anon_sym_DOLLAR, - ACTIONS(6524), 2, + ACTIONS(5485), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, + ACTIONS(5509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7519), 2, + ACTIONS(7431), 2, sym__special_character, sym_test_operator, - ACTIONS(7521), 2, + ACTIONS(7433), 2, sym_raw_string, sym_ansi_c_string, - STATE(1094), 9, + STATE(1792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167226,44 +164046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127986] = 17, + [126673] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, - anon_sym_DOLLAR, - ACTIONS(3447), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(3451), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(3453), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(3455), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(3461), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7527), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7533), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(3441), 2, + ACTIONS(7451), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7529), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7531), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(2010), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167273,44 +164093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128050] = 17, + [126737] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(446), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(452), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(454), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(460), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(7535), 1, + ACTIONS(7145), 1, sym_word, - ACTIONS(7541), 1, + ACTIONS(7151), 1, sym__comment_word, - ACTIONS(406), 2, + ACTIONS(7453), 1, + anon_sym_DOLLAR, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7537), 2, + ACTIONS(7147), 2, sym__special_character, sym_test_operator, - ACTIONS(7539), 2, + ACTIONS(7149), 2, sym_raw_string, sym_ansi_c_string, - STATE(694), 9, + STATE(689), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167320,77 +164140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128114] = 3, - ACTIONS(63), 1, + [126801] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(495), 1, + anon_sym_DQUOTE, + ACTIONS(499), 1, aux_sym_number_token1, + ACTIONS(501), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(507), 1, anon_sym_BQUOTE, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [128150] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + ACTIONS(519), 1, sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(7145), 1, sym_word, - ACTIONS(7307), 1, + ACTIONS(7151), 1, sym__comment_word, - ACTIONS(7543), 1, + ACTIONS(7455), 1, anon_sym_DOLLAR, - ACTIONS(1149), 2, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(7147), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(7149), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(689), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167400,44 +164187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128214] = 17, + [126865] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(97), 1, + anon_sym_DOLLAR, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7413), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(7421), 1, sym__comment_word, - ACTIONS(7545), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(7417), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(7419), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167447,44 +164234,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128278] = 17, + [126929] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, + ACTIONS(316), 1, anon_sym_DOLLAR, - ACTIONS(2385), 1, + ACTIONS(322), 1, aux_sym_number_token1, - ACTIONS(2387), 1, + ACTIONS(324), 1, aux_sym_number_token2, - ACTIONS(2391), 1, + ACTIONS(328), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(7195), 1, - sym_word, - ACTIONS(7203), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(7207), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, - anon_sym_BQUOTE, - ACTIONS(7211), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, + ACTIONS(4051), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, + sym_word, + ACTIONS(6813), 1, sym__comment_word, - ACTIONS(7197), 2, + ACTIONS(1145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, + ACTIONS(1165), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6809), 2, sym__special_character, sym_test_operator, - ACTIONS(7205), 2, + ACTIONS(6811), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1097), 9, + STATE(1552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167494,44 +164281,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128342] = 17, + [126993] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(6576), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(6580), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(6582), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(6586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(6588), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(6590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(6596), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(7193), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(7199), 1, sym__comment_word, - ACTIONS(7547), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(7195), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(7197), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(3724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167541,44 +164328,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128406] = 17, + [127057] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 1, + ACTIONS(5398), 1, + anon_sym_DOLLAR, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7447), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7453), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(7549), 1, - anon_sym_DOLLAR, - ACTIONS(3944), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7449), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7451), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(3118), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167588,44 +164375,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128470] = 17, + [127121] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(3960), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(3962), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(3964), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(3973), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7447), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7453), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(7551), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR, - ACTIONS(3944), 2, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7449), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7451), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - STATE(3118), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167635,91 +164422,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128534] = 17, + [127185] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3807), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(3811), 1, + ACTIONS(6619), 1, aux_sym_number_token1, - ACTIONS(3813), 1, + ACTIONS(6621), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, + ACTIONS(6627), 1, anon_sym_BQUOTE, - ACTIONS(3821), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, + ACTIONS(6635), 1, sym__brace_start, - ACTIONS(7467), 1, + ACTIONS(6787), 1, sym_word, - ACTIONS(7475), 1, + ACTIONS(6795), 1, sym__comment_word, - ACTIONS(3801), 2, + ACTIONS(7461), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, + ACTIONS(6631), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7471), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7473), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128598] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7553), 1, - anon_sym_DOLLAR, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, + ACTIONS(6791), 2, sym__special_character, sym_test_operator, - ACTIONS(7059), 2, + ACTIONS(6793), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, + STATE(2768), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167729,185 +164469,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128662] = 17, + [127249] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7007), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + aux_sym__c_word_token1, + ACTIONS(6468), 1, anon_sym_DOLLAR, - ACTIONS(7011), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(7015), 1, + ACTIONS(6472), 1, aux_sym_number_token1, - ACTIONS(7017), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(7019), 1, + ACTIONS(6476), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, + ACTIONS(6478), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, + ACTIONS(6480), 1, anon_sym_BQUOTE, - ACTIONS(7025), 1, + ACTIONS(6482), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7421), 1, - sym_word, - ACTIONS(7429), 1, - sym__comment_word, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7425), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7427), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3565), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7465), 1, + anon_sym_LF, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + STATE(2781), 1, + sym__c_terminator, + ACTIONS(6460), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7463), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3797), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [128726] = 17, + [127319] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, + ACTIONS(6576), 1, anon_sym_DQUOTE, - ACTIONS(6800), 1, + ACTIONS(6580), 1, aux_sym_number_token1, - ACTIONS(6802), 1, + ACTIONS(6582), 1, aux_sym_number_token2, - ACTIONS(6804), 1, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, + ACTIONS(6586), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, + ACTIONS(6588), 1, anon_sym_BQUOTE, - ACTIONS(6810), 1, + ACTIONS(6590), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, + ACTIONS(6596), 1, sym__brace_start, - ACTIONS(7343), 1, + ACTIONS(7193), 1, sym_word, - ACTIONS(7349), 1, + ACTIONS(7199), 1, sym__comment_word, - ACTIONS(7555), 1, - anon_sym_DOLLAR, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7345), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7347), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128790] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7561), 1, + ACTIONS(7467), 1, anon_sym_DOLLAR, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7559), 2, + ACTIONS(6570), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7567), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7575), 2, + ACTIONS(6592), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(881), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128854] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7579), 1, - anon_sym_DOLLAR, - ACTIONS(7559), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, + ACTIONS(7195), 2, sym__special_character, sym_test_operator, - ACTIONS(7567), 2, + ACTIONS(7197), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7575), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(881), 9, + STATE(3724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167917,44 +164566,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128918] = 17, + [127383] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3753), 1, anon_sym_DOLLAR, - ACTIONS(3096), 1, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(3100), 1, + ACTIONS(3761), 1, aux_sym_number_token1, - ACTIONS(3102), 1, + ACTIONS(3763), 1, aux_sym_number_token2, - ACTIONS(3104), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, + ACTIONS(3769), 1, anon_sym_BQUOTE, - ACTIONS(3110), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(7581), 1, + ACTIONS(7047), 1, sym_word, - ACTIONS(7587), 1, + ACTIONS(7055), 1, sym__comment_word, - ACTIONS(3090), 2, + ACTIONS(3751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, + ACTIONS(3773), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7583), 2, + ACTIONS(7051), 2, sym__special_character, sym_test_operator, - ACTIONS(7585), 2, + ACTIONS(7053), 2, sym_raw_string, sym_ansi_c_string, - STATE(1767), 9, + STATE(1961), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167964,91 +164613,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [128982] = 17, + [127447] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(3811), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(3813), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(3821), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7467), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7475), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(7589), 1, + ACTIONS(7469), 1, anon_sym_DOLLAR, - ACTIONS(3801), 2, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7471), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7473), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129046] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7253), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168058,44 +164660,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129110] = 17, + [127511] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, - anon_sym_DOLLAR, - ACTIONS(6688), 1, + ACTIONS(5402), 1, anon_sym_DQUOTE, - ACTIONS(6692), 1, + ACTIONS(5406), 1, aux_sym_number_token1, - ACTIONS(6694), 1, + ACTIONS(5408), 1, aux_sym_number_token2, - ACTIONS(6696), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, + ACTIONS(5412), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, + ACTIONS(5414), 1, anon_sym_BQUOTE, - ACTIONS(6704), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, + ACTIONS(5426), 1, sym__brace_start, - ACTIONS(7477), 1, + ACTIONS(7317), 1, sym_word, - ACTIONS(7485), 1, + ACTIONS(7325), 1, sym__comment_word, - ACTIONS(6682), 2, + ACTIONS(7471), 1, + anon_sym_DOLLAR, + ACTIONS(5394), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, + ACTIONS(5418), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7481), 2, + ACTIONS(7321), 2, sym__special_character, sym_test_operator, - ACTIONS(7483), 2, + ACTIONS(7323), 2, sym_raw_string, sym_ansi_c_string, - STATE(4105), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168105,44 +164707,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129174] = 17, + [127575] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(2754), 1, aux_sym_number_token1, - ACTIONS(1901), 1, + ACTIONS(2756), 1, aux_sym_number_token2, - ACTIONS(1905), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, + ACTIONS(2770), 1, sym__brace_start, - ACTIONS(5765), 1, + ACTIONS(6344), 1, anon_sym_DQUOTE, - ACTIONS(5769), 1, + ACTIONS(6348), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, + ACTIONS(6350), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, + ACTIONS(7009), 1, sym_word, - ACTIONS(7593), 1, - anon_sym_DOLLAR, - ACTIONS(7599), 1, + ACTIONS(7015), 1, sym__comment_word, - ACTIONS(5759), 2, + ACTIONS(7473), 1, + anon_sym_DOLLAR, + ACTIONS(6340), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, + ACTIONS(6354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7595), 2, + ACTIONS(7011), 2, sym__special_character, sym_test_operator, - ACTIONS(7597), 2, + ACTIONS(7013), 2, sym_raw_string, sym_ansi_c_string, - STATE(1060), 9, + STATE(1229), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168152,44 +164754,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129238] = 17, + [127639] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(240), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR, - ACTIONS(246), 1, + ACTIONS(3384), 1, + anon_sym_DQUOTE, + ACTIONS(3388), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(3390), 1, aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(3394), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3396), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, + ACTIONS(3398), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3404), 1, + sym__brace_start, + ACTIONS(7353), 1, sym_word, - ACTIONS(7307), 1, + ACTIONS(7361), 1, sym__comment_word, - ACTIONS(1149), 2, + ACTIONS(3378), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, + ACTIONS(3400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(7357), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(7359), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + STATE(1817), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168199,91 +164801,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129302] = 17, + [127703] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(2543), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(2545), 1, aux_sym_number_token2, - ACTIONS(5495), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, + ACTIONS(2561), 1, sym__brace_start, - ACTIONS(6546), 1, + ACTIONS(6965), 1, + sym_word, + ACTIONS(6973), 1, anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6979), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(6981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, + ACTIONS(6985), 1, sym__comment_word, - ACTIONS(7601), 1, + ACTIONS(7475), 1, anon_sym_DOLLAR, - ACTIONS(6542), 2, + ACTIONS(6967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, + ACTIONS(6971), 2, sym__special_character, sym_test_operator, - ACTIONS(7137), 2, + ACTIONS(6975), 2, sym_raw_string, sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129366] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(7457), 1, - sym_word, - ACTIONS(7463), 1, - sym__comment_word, - ACTIONS(7603), 1, - anon_sym_DOLLAR, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, + ACTIONS(6983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7459), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7461), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2420), 9, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168293,44 +164848,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129430] = 17, + [127767] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(6803), 1, sym__comment_word, - ACTIONS(7605), 1, + ACTIONS(7477), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(6799), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168340,44 +164895,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129494] = 17, + [127831] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(6734), 1, + ACTIONS(6550), 1, aux_sym_number_token1, - ACTIONS(6736), 1, + ACTIONS(6552), 1, aux_sym_number_token2, - ACTIONS(6738), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, + ACTIONS(6556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, + ACTIONS(6558), 1, anon_sym_BQUOTE, - ACTIONS(6744), 1, + ACTIONS(6560), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, + ACTIONS(6566), 1, sym__brace_start, - ACTIONS(7081), 1, + ACTIONS(6987), 1, sym_word, - ACTIONS(7087), 1, + ACTIONS(6993), 1, sym__comment_word, - ACTIONS(7607), 1, + ACTIONS(7479), 1, anon_sym_DOLLAR, - ACTIONS(6724), 2, + ACTIONS(6540), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, + ACTIONS(6562), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7083), 2, + ACTIONS(6989), 2, sym__special_character, sym_test_operator, - ACTIONS(7085), 2, + ACTIONS(6991), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 9, + STATE(3265), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168387,91 +164942,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129558] = 17, + [127895] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(2754), 1, aux_sym_number_token1, - ACTIONS(5491), 1, + ACTIONS(2756), 1, aux_sym_number_token2, - ACTIONS(5495), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, + ACTIONS(2770), 1, sym__brace_start, - ACTIONS(6546), 1, + ACTIONS(6344), 1, anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6348), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6350), 1, anon_sym_BQUOTE, - ACTIONS(6554), 1, + ACTIONS(6352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, + ACTIONS(7009), 1, sym_word, - ACTIONS(7139), 1, + ACTIONS(7015), 1, sym__comment_word, - ACTIONS(7609), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129622] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6199), 1, + ACTIONS(7481), 1, anon_sym_DOLLAR, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(6195), 2, + ACTIONS(6340), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, + ACTIONS(6354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7613), 2, + ACTIONS(7011), 2, sym__special_character, sym_test_operator, - ACTIONS(7615), 2, + ACTIONS(7013), 2, sym_raw_string, sym_ansi_c_string, - STATE(875), 9, + STATE(1229), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168481,44 +164989,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129686] = 17, + [127959] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, + ACTIONS(5366), 1, anon_sym_DQUOTE, - ACTIONS(6048), 1, + ACTIONS(5370), 1, aux_sym_number_token1, - ACTIONS(6050), 1, + ACTIONS(5372), 1, aux_sym_number_token2, - ACTIONS(6052), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, + ACTIONS(5378), 1, anon_sym_BQUOTE, - ACTIONS(6058), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, + ACTIONS(5390), 1, sym__brace_start, - ACTIONS(7457), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(7463), 1, + ACTIONS(6803), 1, sym__comment_word, - ACTIONS(7619), 1, + ACTIONS(7483), 1, anon_sym_DOLLAR, - ACTIONS(6036), 2, + ACTIONS(5358), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, + ACTIONS(5382), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7459), 2, + ACTIONS(6799), 2, sym__special_character, sym_test_operator, - ACTIONS(7461), 2, + ACTIONS(6801), 2, sym_raw_string, sym_ansi_c_string, - STATE(2420), 9, + STATE(2652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168528,44 +165036,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129750] = 17, + [128023] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 1, + ACTIONS(2025), 1, + anon_sym_DOLLAR, + ACTIONS(2031), 1, aux_sym_number_token1, - ACTIONS(248), 1, + ACTIONS(2033), 1, aux_sym_number_token2, - ACTIONS(252), 1, + ACTIONS(2037), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, + ACTIONS(2051), 1, sym__brace_start, - ACTIONS(1159), 1, + ACTIONS(7221), 1, + sym_word, + ACTIONS(7229), 1, anon_sym_DQUOTE, - ACTIONS(1163), 1, + ACTIONS(7233), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, + ACTIONS(7235), 1, anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, + ACTIONS(7237), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7241), 1, sym__comment_word, - ACTIONS(7621), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, + ACTIONS(7223), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, + ACTIONS(7227), 2, sym__special_character, sym_test_operator, - ACTIONS(7305), 2, + ACTIONS(7231), 2, sym_raw_string, sym_ansi_c_string, - STATE(1488), 9, + ACTIONS(7239), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(960), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168575,44 +165083,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129814] = 17, + [128087] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, + ACTIONS(6028), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(6032), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(6034), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(6036), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(6038), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(6040), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(6042), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, + ACTIONS(6048), 1, sym__brace_start, - ACTIONS(7163), 1, + ACTIONS(6957), 1, sym_word, - ACTIONS(7171), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(7623), 1, + ACTIONS(7485), 1, anon_sym_DOLLAR, - ACTIONS(5671), 2, + ACTIONS(6020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(6044), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(6959), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(6961), 2, sym_raw_string, sym_ansi_c_string, - STATE(2793), 9, + STATE(3104), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168622,91 +165130,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [129878] = 17, + [128151] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, + ACTIONS(5493), 1, anon_sym_DQUOTE, - ACTIONS(5799), 1, + ACTIONS(5497), 1, aux_sym_number_token1, - ACTIONS(5801), 1, + ACTIONS(5499), 1, aux_sym_number_token2, - ACTIONS(5803), 1, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5503), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, + ACTIONS(5505), 1, anon_sym_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(5507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7625), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129942] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, + ACTIONS(5517), 1, sym__brace_start, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, + ACTIONS(7429), 1, sym_word, - ACTIONS(7599), 1, + ACTIONS(7435), 1, sym__comment_word, - ACTIONS(7627), 1, + ACTIONS(7487), 1, anon_sym_DOLLAR, - ACTIONS(5759), 2, + ACTIONS(5485), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, + ACTIONS(5509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7595), 2, + ACTIONS(7431), 2, sym__special_character, sym_test_operator, - ACTIONS(7597), 2, + ACTIONS(7433), 2, sym_raw_string, sym_ansi_c_string, - STATE(1060), 9, + STATE(1792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168716,44 +165177,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130006] = 17, + [128215] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, + ACTIONS(6546), 1, anon_sym_DQUOTE, - ACTIONS(5683), 1, + ACTIONS(6550), 1, aux_sym_number_token1, - ACTIONS(5685), 1, + ACTIONS(6552), 1, aux_sym_number_token2, - ACTIONS(5687), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, + ACTIONS(6556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, + ACTIONS(6558), 1, anon_sym_BQUOTE, - ACTIONS(5693), 1, + ACTIONS(6560), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, + ACTIONS(6566), 1, sym__brace_start, - ACTIONS(7163), 1, + ACTIONS(6987), 1, sym_word, - ACTIONS(7171), 1, + ACTIONS(6993), 1, sym__comment_word, - ACTIONS(7629), 1, + ACTIONS(7489), 1, anon_sym_DOLLAR, - ACTIONS(5671), 2, + ACTIONS(6540), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, + ACTIONS(6562), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7167), 2, + ACTIONS(6989), 2, sym__special_character, sym_test_operator, - ACTIONS(7169), 2, + ACTIONS(6991), 2, sym_raw_string, sym_ansi_c_string, - STATE(2793), 9, + STATE(3265), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168763,4769 +165224,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [130070] = 17, + [128279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130134] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7639), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130198] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7643), 1, - anon_sym_LF, - STATE(2803), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7641), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4029), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [130262] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(7645), 1, - anon_sym_DOLLAR, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130326] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, - sym_word, - ACTIONS(7599), 1, - sym__comment_word, - ACTIONS(5759), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7595), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7597), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130390] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7647), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130454] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7649), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130518] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(7399), 1, - sym_word, - ACTIONS(7405), 1, - sym__comment_word, - ACTIONS(7651), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7401), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7403), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130582] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130646] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(7477), 1, - sym_word, - ACTIONS(7485), 1, - sym__comment_word, - ACTIONS(7663), 1, - anon_sym_DOLLAR, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7481), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7483), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4105), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130710] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(7039), 1, - sym_word, - ACTIONS(7047), 1, - sym__comment_word, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7043), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7045), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130774] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130838] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(7399), 1, - sym_word, - ACTIONS(7405), 1, - sym__comment_word, - ACTIONS(7667), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7401), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7403), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130902] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_DOLLAR, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130966] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7669), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131030] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, - sym_word, - ACTIONS(7295), 1, - sym__comment_word, - ACTIONS(7671), 1, - anon_sym_DOLLAR, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7291), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7293), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131094] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_DOLLAR, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131158] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7681), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131222] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7683), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131286] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131350] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7687), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131414] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, - sym_word, - ACTIONS(7295), 1, - sym__comment_word, - ACTIONS(7689), 1, - anon_sym_DOLLAR, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7291), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7293), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131478] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131542] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131606] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7705), 1, - anon_sym_DOLLAR, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131670] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(7713), 1, - anon_sym_DOLLAR, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131734] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, - sym_word, - ACTIONS(7095), 1, - sym__comment_word, - ACTIONS(7715), 1, - anon_sym_DOLLAR, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7091), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7093), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131798] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - anon_sym_DOLLAR, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7559), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7567), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7575), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(881), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131862] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, - sym_word, - ACTIONS(7095), 1, - sym__comment_word, - ACTIONS(7717), 1, - anon_sym_DOLLAR, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7091), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7093), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131926] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131990] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7719), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132054] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7721), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132118] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(7723), 1, - anon_sym_DOLLAR, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132182] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(7725), 1, - anon_sym_DOLLAR, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132246] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132310] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, - sym_word, - ACTIONS(7523), 1, - sym__comment_word, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7519), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7521), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1094), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132374] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, - sym__brace_start, - ACTIONS(7505), 1, - sym_word, - ACTIONS(7511), 1, - sym__comment_word, - ACTIONS(7727), 1, - anon_sym_DOLLAR, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7507), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7509), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3505), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132438] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7729), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132502] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, - sym__brace_start, - ACTIONS(7505), 1, - sym_word, - ACTIONS(7511), 1, - sym__comment_word, - ACTIONS(7731), 1, - anon_sym_DOLLAR, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7507), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7509), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3505), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132566] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(7581), 1, - sym_word, - ACTIONS(7587), 1, - sym__comment_word, - ACTIONS(7733), 1, - anon_sym_DOLLAR, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7583), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7585), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(7735), 1, - anon_sym_DOLLAR, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7613), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7615), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132694] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(7737), 1, - anon_sym_DOLLAR, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7613), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7615), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132758] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_DOLLAR, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132822] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(7489), 1, - sym_word, - ACTIONS(7495), 1, - sym__comment_word, - ACTIONS(7739), 1, - anon_sym_DOLLAR, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(423), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132886] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7741), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132950] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(7581), 1, - sym_word, - ACTIONS(7587), 1, - sym__comment_word, - ACTIONS(7743), 1, - anon_sym_DOLLAR, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7583), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7585), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133014] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133078] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(7489), 1, - sym_word, - ACTIONS(7495), 1, - sym__comment_word, - ACTIONS(7745), 1, - anon_sym_DOLLAR, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(423), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133142] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(7527), 1, - sym_word, - ACTIONS(7533), 1, - sym__comment_word, - ACTIONS(7747), 1, - anon_sym_DOLLAR, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7529), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7531), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133206] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(7527), 1, - sym_word, - ACTIONS(7533), 1, - sym__comment_word, - ACTIONS(7749), 1, - anon_sym_DOLLAR, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7529), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7531), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133270] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133334] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7751), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133398] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7753), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133462] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7755), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133526] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7757), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133590] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, - sym_word, - ACTIONS(7363), 1, - sym__comment_word, - ACTIONS(7759), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7359), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7361), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133654] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133718] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(7437), 1, - sym_word, - ACTIONS(7443), 1, - sym__comment_word, - ACTIONS(7761), 1, - anon_sym_DOLLAR, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7439), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7441), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133782] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(7437), 1, - sym_word, - ACTIONS(7443), 1, - sym__comment_word, - ACTIONS(7763), 1, - anon_sym_DOLLAR, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7439), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7441), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133846] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(7331), 1, - sym_word, - ACTIONS(7339), 1, - sym__comment_word, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7335), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7337), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(822), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133910] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(7765), 1, - anon_sym_DOLLAR, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133974] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134038] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6000), 1, - anon_sym_DOLLAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134102] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(7535), 1, - sym_word, - ACTIONS(7541), 1, - sym__comment_word, - ACTIONS(7767), 1, - anon_sym_DOLLAR, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7537), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7539), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(694), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134166] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(7535), 1, - sym_word, - ACTIONS(7541), 1, - sym__comment_word, - ACTIONS(7769), 1, - anon_sym_DOLLAR, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7537), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7539), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(694), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134230] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7771), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134294] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, - sym_word, - ACTIONS(7363), 1, - sym__comment_word, - ACTIONS(7773), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7359), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7361), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134397] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7777), 1, - anon_sym_LF, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3308), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3310), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [134448] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - aux_sym_concatenation_token1, - ACTIONS(7784), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [134489] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [134530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7791), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2714), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134571] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7804), 1, - anon_sym_LT_LT_LT, - ACTIONS(7807), 1, - sym_file_descriptor, - ACTIONS(7796), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2715), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7799), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7794), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [134616] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(7810), 1, - anon_sym_LF, - ACTIONS(3238), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2857), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [134667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2724), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134786] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2715), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7812), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [134831] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [134872] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7824), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2714), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7826), 1, - aux_sym_concatenation_token1, - ACTIONS(7829), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7832), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7834), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7836), 1, - aux_sym_concatenation_token1, - ACTIONS(7839), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [135076] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7844), 1, - anon_sym_LF, - ACTIONS(7846), 1, - sym_file_descriptor, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3339), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2857), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [135126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1280), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1284), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1338), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1272), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [135336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1334), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1330), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1258), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1276), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7852), 1, - sym__special_character, - STATE(2738), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1352), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [135510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1322), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1330), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1322), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2857), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [135652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7855), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1280), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1318), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1346), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135828] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7846), 1, - sym_file_descriptor, - ACTIONS(7857), 1, - anon_sym_LF, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3317), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3310), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [135878] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7859), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2752), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1342), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7861), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2752), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1334), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1298), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1272), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136130] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7864), 1, - sym__special_character, - STATE(2758), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1310), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(7345), 1, aux_sym_concatenation_token1, - [136202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7866), 1, - sym__special_character, - STATE(2758), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(7347), 1, + sym__concat, + STATE(2582), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1352), 21, + ACTIONS(3745), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173547,79 +165259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136278] = 3, + [128320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(7495), 1, sym_variable_name, - anon_sym_LF, - ACTIONS(1268), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, + STATE(4097), 1, + sym_subscript, + ACTIONS(7493), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_LF, - ACTIONS(1268), 22, + STATE(2586), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173641,20 +165294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136346] = 6, + [128361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7869), 1, + ACTIONS(7345), 1, aux_sym_concatenation_token1, - ACTIONS(7872), 1, + ACTIONS(7347), 1, sym__concat, - STATE(2762), 1, + STATE(2650), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1264), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1258), 21, + ACTIONS(1262), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173662,7 +165315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -173676,81 +165328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1276), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1298), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136454] = 6, + sym__special_character, + [128402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(7345), 1, aux_sym_concatenation_token1, - ACTIONS(7818), 1, + ACTIONS(7497), 1, sym__concat, - STATE(2744), 1, + STATE(2584), 1, aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7875), 21, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173772,19 +165364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136494] = 6, + [128443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(7345), 1, aux_sym_concatenation_token1, - ACTIONS(7818), 1, + ACTIONS(7499), 1, sym__concat, - STATE(2777), 1, + STATE(2584), 1, aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(1284), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7879), 21, + ACTIONS(1282), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173806,46 +165399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1326), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136568] = 3, + [128484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(3254), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_LF, - ACTIONS(1294), 22, + STATE(2592), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173867,16 +165432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136602] = 3, + [128521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, + ACTIONS(7501), 1, + aux_sym_concatenation_token1, + ACTIONS(7504), 1, sym__concat, + STATE(2584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, + sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1326), 22, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173898,47 +165467,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136636] = 3, + [128562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1314), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, + ACTIONS(3170), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, + ACTIONS(3409), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_LF, - ACTIONS(1302), 22, + STATE(2592), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173947,11 +165490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -173960,17 +165501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [136704] = 3, + [128601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(7511), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(4097), 1, + sym_subscript, + ACTIONS(7509), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1346), 21, + STATE(2586), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173978,9 +165522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173990,21 +165536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136738] = 6, + [128642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(7818), 1, + ACTIONS(7516), 1, sym__concat, - STATE(2835), 1, + STATE(2665), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1264), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1242), 21, + ACTIONS(1262), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174012,6 +165556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -174026,82 +165571,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, sym__special_character, - [136778] = 3, + [128683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 5, - sym_file_descriptor, + ACTIONS(7518), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1310), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136812] = 3, + ACTIONS(4843), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4841), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [128720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, + ACTIONS(7520), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136846] = 6, + ACTIONS(4837), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4835), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [128757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7522), 1, aux_sym_concatenation_token1, - ACTIONS(7850), 1, + ACTIONS(7525), 1, sym__concat, - STATE(2831), 1, + STATE(2590), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(1271), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 20, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174121,124 +165671,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [136886] = 6, + anon_sym_BQUOTE, + [128798] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7883), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, + ACTIONS(3185), 1, + anon_sym_LT_LT_LT, + ACTIONS(7530), 1, anon_sym_LF, - ACTIONS(1246), 21, - anon_sym_SEMI, + ACTIONS(7532), 1, + sym_file_descriptor, + ACTIONS(3170), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3179), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(3181), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT_DASH, + ACTIONS(3250), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2780), 4, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(2592), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7528), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136926] = 3, + [128849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(3185), 1, + anon_sym_LT_LT_LT, + ACTIONS(7532), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7536), 1, anon_sym_LF, - ACTIONS(1318), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3181), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2593), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136960] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 21, + ACTIONS(7534), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [137000] = 8, + [128894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, + ACTIONS(7546), 1, anon_sym_LF, - ACTIONS(7846), 1, + ACTIONS(7548), 1, + anon_sym_LT_LT_LT, + ACTIONS(7551), 1, sym_file_descriptor, - ACTIONS(3242), 2, + ACTIONS(7540), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2783), 4, + STATE(2593), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, + ACTIONS(7543), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -174247,57 +165775,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7812), 9, + ACTIONS(7538), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP, - [137044] = 3, + [128939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(7554), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1284), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137078] = 3, + ACTIONS(4782), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4780), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [128976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(7556), 1, + sym__concat, + ACTIONS(4794), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4792), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [129013] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7345), 1, + aux_sym_concatenation_token1, + ACTIONS(7347), 1, sym__concat, + STATE(2581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1268), 21, + ACTIONS(3741), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174305,9 +165873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174317,26 +165887,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137112] = 8, + [129054] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7892), 1, + ACTIONS(3185), 1, anon_sym_LT_LT_LT, - ACTIONS(7895), 1, + ACTIONS(7532), 1, sym_file_descriptor, - ACTIONS(7796), 2, + ACTIONS(7558), 1, + anon_sym_LF, + ACTIONS(3170), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3177), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3179), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3181), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2783), 4, + ACTIONS(3183), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2592), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7889), 8, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -174345,25 +165927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7794), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [137156] = 3, + [129105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, sym__concat, + STATE(2777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1314), 22, + ACTIONS(1262), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174371,11 +165948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174385,17 +165959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [137190] = 3, + sym__special_character, + anon_sym_BQUOTE, + [129145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1340), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1268), 21, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174403,9 +165977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174416,21 +165992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137224] = 6, + [129179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2792), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, + ACTIONS(7564), 1, sym_variable_name, + STATE(4113), 1, + sym_subscript, + ACTIONS(7493), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(3837), 20, + STATE(2624), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174451,20 +166026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137264] = 6, + [129219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(7501), 1, + ACTIONS(7516), 1, sym__concat, - STATE(2790), 1, + STATE(2664), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(7568), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(3841), 20, + ACTIONS(7566), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174472,6 +166046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -174485,19 +166060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137304] = 5, + [129259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7898), 1, + ACTIONS(7570), 1, sym__special_character, - STATE(2738), 1, + STATE(2602), 1, aux_sym__literal_repeat1, - ACTIONS(3843), 4, + ACTIONS(1369), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3841), 20, + ACTIONS(1364), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174518,16 +166093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [137342] = 3, + [129297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1338), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174535,9 +166109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174548,21 +166124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137376] = 6, + [129331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7900), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1246), 20, + ACTIONS(1346), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174570,6 +166140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -174583,19 +166154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137416] = 6, + aux_sym_concatenation_token1, + [129365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2744), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, + ACTIONS(1360), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(7902), 21, + ACTIONS(1358), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174617,20 +166185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137456] = 6, + aux_sym_concatenation_token1, + [129399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7906), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(7573), 1, + sym__special_character, + STATE(2607), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1252), 20, + ACTIONS(3741), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174638,6 +166205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -174651,16 +166219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137496] = 3, + [129437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(7575), 1, + sym__special_character, + STATE(2607), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1258), 21, + ACTIONS(1364), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174668,9 +166238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174680,23 +166252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137530] = 6, + [129475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(7850), 1, + ACTIONS(7516), 1, sym__concat, - STATE(2820), 1, + STATE(2665), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, + ACTIONS(7580), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3837), 18, + ACTIONS(7578), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174704,8 +166272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174715,19 +166286,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137569] = 6, + [129515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(5038), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(5036), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [129549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7562), 1, sym__concat, - STATE(2930), 1, + STATE(2775), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1264), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 20, + ACTIONS(1262), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174747,19 +166351,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, sym__special_character, - anon_sym_BQUOTE, - [137608] = 4, + [129589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(5040), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [129623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 19, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174767,9 +166398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174779,287 +166412,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137643] = 8, + aux_sym_concatenation_token1, + [129657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7918), 1, - anon_sym_LT_LT_LT, - ACTIONS(7921), 1, + ACTIONS(1314), 4, sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2797), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7915), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [137686] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7844), 1, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(7926), 1, - sym_file_descriptor, - ACTIONS(3428), 2, + ACTIONS(1312), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3339), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [137735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(7932), 1, - sym_file_descriptor, - STATE(2886), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7775), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137774] = 8, + aux_sym_concatenation_token1, + [129691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(7936), 1, + ACTIONS(1290), 4, sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(7814), 2, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - STATE(2809), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 7, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7934), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [137817] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7938), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4160), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137874] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4251), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137931] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7964), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4214), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137988] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + [129725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3841), 19, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175079,21 +166504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138027] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [129759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3841), 18, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175101,8 +166522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175112,15 +166536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138066] = 3, + aux_sym_concatenation_token1, + [129793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1318), 21, + ACTIONS(1338), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175142,52 +166568,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [138099] = 11, + [129827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 1, - anon_sym_BQUOTE, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - ACTIONS(7968), 1, - anon_sym_LF, - ACTIONS(7970), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3829), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138148] = 3, + ACTIONS(4794), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4792), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [129861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, + ACTIONS(7345), 1, + aux_sym_concatenation_token1, + ACTIONS(7347), 1, sym__concat, + STATE(2650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1326), 22, + ACTIONS(3741), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175195,7 +166620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -175209,51 +166633,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [138181] = 8, + [129901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, - anon_sym_LT_LT_LT, - ACTIONS(7978), 1, + ACTIONS(3254), 2, sym_file_descriptor, - ACTIONS(7802), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2809), 4, + STATE(2658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 7, + ACTIONS(3252), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7972), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [138224] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [129937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1326), 21, + ACTIONS(1296), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175275,84 +166696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [138257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3985), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2860), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3989), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138335] = 5, + [129971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(7881), 3, + ACTIONS(1294), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(7879), 20, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175360,9 +166712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175372,20 +166726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [138372] = 4, + aux_sym_concatenation_token1, + [130005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 3, + ACTIONS(1356), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 18, + ACTIONS(1354), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175393,8 +166743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175404,15 +166757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138407] = 3, + aux_sym_concatenation_token1, + [130039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(7582), 1, + sym_variable_name, + STATE(4113), 1, + sym_subscript, + ACTIONS(7509), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1298), 21, + STATE(2624), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175420,9 +166779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175432,23 +166792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138440] = 6, + [130079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7987), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1246), 18, + ACTIONS(1350), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175456,8 +166808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175467,45 +166822,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138479] = 3, + aux_sym_concatenation_token1, + [130113] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(3298), 1, + anon_sym_LT_LT_LT, + ACTIONS(7587), 1, anon_sym_LF, - ACTIONS(1268), 21, + ACTIONS(7589), 1, + sym_file_descriptor, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3292), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3294), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3296), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2780), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7585), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138512] = 3, + [130163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4780), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [130197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 21, + ACTIONS(1312), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175525,23 +166922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [138545] = 6, + [130231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7989), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - STATE(2861), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7822), 3, + ACTIONS(1318), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(7820), 18, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175549,8 +166940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175560,21 +166954,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138584] = 6, + aux_sym_concatenation_token1, + [130265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7991), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, + ACTIONS(7591), 1, + sym__special_character, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(3743), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 18, + ACTIONS(3741), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175582,6 +166975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -175593,36 +166987,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138623] = 11, + anon_sym_BQUOTE, + [130303] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, + ACTIONS(3298), 1, anon_sym_LT_LT_LT, - ACTIONS(7936), 1, + ACTIONS(7589), 1, sym_file_descriptor, - ACTIONS(7993), 1, + ACTIONS(7593), 1, anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(3181), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, + ACTIONS(3294), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3667), 3, + ACTIONS(3296), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3360), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2800), 4, + ACTIONS(3183), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7934), 8, + ACTIONS(7585), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -175631,14 +167027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [138672] = 3, + [130353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1298), 22, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175661,15 +167058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [138705] = 3, + [130387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1356), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1268), 21, + ACTIONS(1354), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175691,15 +167089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [138738] = 3, + [130421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(1310), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175707,9 +167105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175720,23 +167120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138771] = 5, + [130455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 3, + ACTIONS(7595), 1, + aux_sym_concatenation_token1, + ACTIONS(7598), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 16, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175744,7 +167141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -175753,19 +167153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [138808] = 6, + anon_sym_BQUOTE, + [130495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(1318), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 20, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175785,15 +167183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [138847] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [130529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1346), 22, + ACTIONS(1292), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175801,11 +167202,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175816,14 +167215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [138880] = 3, + anon_sym_BQUOTE, + [130563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(1271), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1342), 22, + ACTIONS(1266), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175846,95 +167247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [138913] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7995), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4267), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [138970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2860), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [139009] = 6, + [130597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7997), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1246), 19, + ACTIONS(1334), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175942,9 +167263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175954,20 +167277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139048] = 6, + aux_sym_concatenation_token1, + [130631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7999), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1352), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 19, + ACTIONS(1350), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175987,99 +167307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139087] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7857), 1, - anon_sym_LF, - ACTIONS(7926), 1, - sym_file_descriptor, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3317), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139136] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8001), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4279), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139193] = 6, + [130665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(8003), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1246), 20, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176087,6 +167325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -176100,19 +167339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139232] = 6, + aux_sym_concatenation_token1, + [130699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(7345), 1, aux_sym_concatenation_token1, - ACTIONS(8005), 1, + ACTIONS(7347), 1, sym__concat, - STATE(2762), 1, + STATE(2649), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3747), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1252), 20, + ACTIONS(3745), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176133,15 +167374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139271] = 3, + [130739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(1314), 21, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176149,9 +167390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176162,16 +167405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139304] = 3, + [130773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1294), 21, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176193,15 +167436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [139337] = 3, + [130807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, sym__concat, - ts_builtin_sym_end, + STATE(2664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1342), 21, + ACTIONS(7601), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176209,9 +167456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176221,16 +167470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139370] = 3, + [130847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, sym__concat, + STATE(2806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1268), 22, + ACTIONS(1262), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176238,7 +167490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -176252,18 +167503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [139403] = 5, + sym__special_character, + [130887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - sym__special_character, - STATE(2876), 1, - aux_sym__literal_repeat1, - ACTIONS(7887), 2, + ACTIONS(1290), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7885), 21, + ACTIONS(1288), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176271,11 +167521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176285,14 +167533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139440] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [130921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1268), 22, + ACTIONS(1320), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176300,11 +167552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176315,15 +167565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [139473] = 3, + anon_sym_BQUOTE, + [130955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, + ACTIONS(7345), 1, + aux_sym_concatenation_token1, + ACTIONS(7605), 1, sym__concat, - ts_builtin_sym_end, + STATE(2584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1346), 21, + ACTIONS(1282), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176331,9 +167587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176343,16 +167600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139506] = 3, + [130995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, + ACTIONS(7345), 1, + aux_sym_concatenation_token1, + ACTIONS(7607), 1, sym__concat, + STATE(2584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1338), 22, + ACTIONS(1276), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176360,7 +167621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -176374,22 +167634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [139539] = 5, + [131035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, + ACTIONS(1360), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 17, + ACTIONS(1358), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176398,7 +167652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -176407,15 +167663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [139576] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [131069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1271), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1280), 21, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176437,18 +167696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [139609] = 5, + [131103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(7887), 3, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7885), 20, + ACTIONS(1308), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176468,21 +167725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [139646] = 6, + [131137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7516), 1, sym__concat, - STATE(2915), 1, + STATE(2665), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(7611), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 19, + ACTIONS(7609), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176490,8 +167747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176501,16 +167761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [139685] = 3, + [131177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(3296), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3409), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1302), 21, + STATE(2658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176518,10 +167783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -176530,16 +167794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139718] = 3, + [131215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1310), 22, + ACTIONS(1346), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176547,11 +167811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176562,36 +167824,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [139751] = 11, + anon_sym_BQUOTE, + [131249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, + ACTIONS(7546), 1, + anon_sym_LF, + ACTIONS(7616), 1, anon_sym_LT_LT_LT, - ACTIONS(7936), 1, + ACTIONS(7619), 1, sym_file_descriptor, - ACTIONS(8009), 1, - anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(7540), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, + STATE(2657), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7613), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7538), 9, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3548), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2800), 4, + [131293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_LT_LT_LT, + ACTIONS(7536), 1, + anon_sym_LF, + ACTIONS(7589), 1, + sym_file_descriptor, + ACTIONS(3181), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2657), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7934), 8, + ACTIONS(7585), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -176600,15 +167887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [139800] = 3, + ACTIONS(7534), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP, + [131337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1276), 21, + ACTIONS(1330), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176630,15 +167928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [139833] = 3, + [131371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, sym__concat, - ts_builtin_sym_end, + STATE(2804), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(1272), 21, + ACTIONS(1262), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176658,95 +167961,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139866] = 8, + sym__special_character, + [131411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(7926), 1, + ACTIONS(7622), 1, + aux_sym_concatenation_token1, + ACTIONS(7625), 1, + sym__concat, + STATE(2661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2797), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 8, + anon_sym_LF, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(7924), 8, + [131451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1334), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [139909] = 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [131485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_BQUOTE, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - ACTIONS(7970), 1, + ACTIONS(1314), 5, sym_file_descriptor, - ACTIONS(8011), 1, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, + ACTIONS(1312), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3835), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7966), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [139958] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [131519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(8013), 1, + ACTIONS(7628), 1, sym__concat, - STATE(2712), 1, + STATE(2661), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1284), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1252), 19, + ACTIONS(1282), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176754,8 +168078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176765,21 +168092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [139997] = 6, + [131559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(8015), 1, + ACTIONS(7630), 1, sym__concat, - STATE(2712), 1, + STATE(2661), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1278), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1246), 19, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176787,8 +168112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176798,15 +168126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140036] = 3, + [131599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1318), 22, + ACTIONS(1334), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176829,96 +168156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [140069] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8017), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4207), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [140126] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8019), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [140165] = 6, + [131632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8021), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - STATE(2861), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7789), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7787), 18, + ACTIONS(1292), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176926,6 +168172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -176937,14 +168184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140204] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [131665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1272), 22, + ACTIONS(1350), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176967,15 +168216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [140237] = 3, + [131698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 21, + ACTIONS(1354), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176983,9 +168231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176996,18 +168246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140270] = 5, + [131731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - sym__special_character, - STATE(2876), 1, - aux_sym__literal_repeat1, - ACTIONS(7881), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(7879), 21, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177029,90 +168275,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140307] = 15, - ACTIONS(63), 1, + aux_sym_concatenation_token1, + [131764] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, + ACTIONS(7636), 1, + anon_sym_RBRACE3, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, + ACTIONS(7644), 1, anon_sym_BQUOTE, - ACTIONS(7960), 1, + ACTIONS(7646), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4247), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, sym_command_substitution, - [140364] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - sym__brace_start, - ACTIONS(8026), 1, - aux_sym_concatenation_token1, - ACTIONS(8029), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4640), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [140403] = 3, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [131823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1330), 21, + ACTIONS(1358), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177120,9 +168334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177133,21 +168349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140436] = 6, + [131856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8032), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(7789), 2, + ACTIONS(1348), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - STATE(2868), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 19, + ACTIONS(1346), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177155,9 +168364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177167,20 +168378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140475] = 6, + aux_sym_concatenation_token1, + [131889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2857), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1332), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_LF, - ACTIONS(3841), 19, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177188,8 +168394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177199,21 +168408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140514] = 6, + aux_sym_concatenation_token1, + [131922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(1322), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_LF, - ACTIONS(3837), 19, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177221,8 +168424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177232,22 +168438,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, + [131955] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7652), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4652), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132014] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, - [140553] = 5, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7654), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4719), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 2, + ACTIONS(1264), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 17, + ACTIONS(1262), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177255,7 +168540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177264,96 +168554,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140590] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8035), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4202), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [140647] = 8, + sym__special_character, + [132106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(8040), 1, - anon_sym_LT_LT_LT, - ACTIONS(8043), 1, + ACTIONS(1318), 3, sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2873), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 8, + sym__concat, + anon_sym_LF, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(8037), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [140690] = 4, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, + [132139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 19, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177361,8 +168600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177372,15 +168614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [140725] = 3, + aux_sym_concatenation_token1, + [132172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1258), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177403,17 +168645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [140758] = 5, + [132205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8046), 1, + ACTIONS(1284), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7658), 1, + sym__concat, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [132244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7660), 1, sym__special_character, - STATE(2876), 1, + STATE(2683), 1, aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(1369), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1352), 21, + ACTIONS(1364), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177435,14 +168710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [140795] = 3, + [132281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 3, + ACTIONS(7663), 1, + sym__special_character, + STATE(2684), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1334), 22, + ACTIONS(1364), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177450,11 +168729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177464,16 +168741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [140828] = 3, + anon_sym_BQUOTE, + [132318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(3409), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1258), 21, + ACTIONS(3471), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2772), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 17, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177482,9 +168765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177493,17 +168774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140861] = 3, + [132355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1322), 21, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177511,9 +168789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177524,15 +168804,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, + [132388] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7666), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4669), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132447] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7668), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, + anon_sym_DOLLAR, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, + aux_sym_number_token1, + ACTIONS(7682), 1, + aux_sym_number_token2, + ACTIONS(7684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, anon_sym_BQUOTE, - [140894] = 3, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3997), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [132510] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 3, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7692), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4650), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1330), 22, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177555,92 +168965,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [140927] = 3, + [132602] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 22, + ACTIONS(7694), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4662), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132661] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1271), 1, + sym__brace_start, + ACTIONS(7696), 1, + aux_sym_concatenation_token1, + ACTIONS(7699), 1, + sym__concat, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, - [140960] = 15, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [132700] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(7944), 1, + ACTIONS(7674), 1, aux_sym__c_word_token1, - ACTIONS(7946), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - ACTIONS(7948), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE, - ACTIONS(7950), 1, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(7952), 1, + ACTIONS(7682), 1, aux_sym_number_token2, - ACTIONS(7954), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7960), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8049), 1, + ACTIONS(7702), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4225), 2, + STATE(3973), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2371), 10, + STATE(2222), 7, sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, sym__c_parenthesized_expression, sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [141017] = 6, + [132763] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7704), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4625), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132822] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7706), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4623), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132881] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7708), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4609), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132940] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7710), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4617), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [132999] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7712), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4600), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133058] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7714), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4601), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7850), 1, + ACTIONS(7562), 1, sym__concat, - STATE(2832), 1, + STATE(2777), 1, aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(3743), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(3837), 19, + ACTIONS(3741), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177648,7 +169365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -177660,19 +169376,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141056] = 6, + anon_sym_BQUOTE, + [133156] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7716), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4584), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7818), 1, + ACTIONS(7562), 1, sym__concat, - STATE(2835), 1, + STATE(2774), 1, aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, + ACTIONS(3747), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7885), 20, + ACTIONS(3745), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177682,8 +169443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177693,140 +169452,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141095] = 6, + anon_sym_BQUOTE, + [133254] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, - STATE(4376), 1, + ACTIONS(7718), 1, + anon_sym_RBRACE3, + STATE(2125), 1, sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2885), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [141134] = 6, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4654), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133313] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, + ACTIONS(3183), 1, + anon_sym_RPAREN, + ACTIONS(3473), 1, + anon_sym_LT_LT_LT, + ACTIONS(7593), 1, anon_sym_LF, - ACTIONS(8061), 1, + ACTIONS(7722), 1, sym_file_descriptor, - STATE(2886), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8056), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 13, - anon_sym_SEMI, + ACTIONS(3467), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(3469), 2, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(3471), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 22, + ACTIONS(3360), 3, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [141206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2772), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7720), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [141239] = 3, + [133362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1284), 22, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177849,19 +169564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [141272] = 6, + [133395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, + ACTIONS(1298), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(7902), 20, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177869,6 +169579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -177882,53 +169593,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - sym__brace_start, - ACTIONS(7981), 1, aux_sym_concatenation_token1, - ACTIONS(8064), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + [133428] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(7678), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7680), 1, aux_sym_number_token1, + ACTIONS(7682), 1, aux_sym_number_token2, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [141350] = 6, + ACTIONS(7724), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3965), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [133491] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7726), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4568), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133550] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8066), 1, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, - STATE(4391), 1, + ACTIONS(7728), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4569), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133609] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7730), 1, + anon_sym_RBRACE3, + STATE(2125), 1, sym_subscript, - ACTIONS(7822), 2, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4269), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - STATE(2868), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 19, + ACTIONS(1320), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177948,14 +169796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141389] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [133701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1280), 22, + ACTIONS(1330), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177963,11 +169814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177978,19 +169827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [141422] = 6, + anon_sym_BQUOTE, + [133734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, + ACTIONS(1271), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(7875), 20, + ACTIONS(1266), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177998,6 +169843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -178011,18 +169857,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141461] = 5, + aux_sym_concatenation_token1, + [133767] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8068), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7732), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4554), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [133826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7734), 1, + sym_variable_name, + STATE(4140), 1, + sym_subscript, + ACTIONS(7509), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1352), 20, + STATE(2715), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178030,7 +169922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178043,14 +169934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [141498] = 3, + [133865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1294), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178073,47 +169964,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [141531] = 6, + [133898] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2916), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2780), 1, + anon_sym_RPAREN, + ACTIONS(3473), 1, + anon_sym_LT_LT_LT, + ACTIONS(7587), 1, anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, + ACTIONS(7722), 1, + sym_file_descriptor, + ACTIONS(3467), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(3469), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3471), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3292), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2772), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7720), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [141570] = 3, + [133947] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7737), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4449), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134006] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7739), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4524), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134065] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7741), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4504), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1322), 22, + ACTIONS(1312), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178121,11 +170147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -178136,19 +170160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [141603] = 6, + anon_sym_BQUOTE, + [134157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(7879), 20, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178156,6 +170176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -178169,20 +170190,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141642] = 6, + aux_sym_concatenation_token1, + [134190] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, - STATE(4376), 1, + ACTIONS(7743), 1, + anon_sym_RBRACE3, + STATE(2125), 1, sym_subscript, - ACTIONS(7822), 2, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4492), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - STATE(2885), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 19, + ACTIONS(1312), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178190,6 +170250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178201,64 +170262,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [141681] = 3, + [134282] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7745), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4491), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134341] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1284), 21, + STATE(2741), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1262), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - aux_sym_concatenation_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [141714] = 8, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [134380] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3833), 1, + ACTIONS(3641), 1, + ts_builtin_sym_end, + ACTIONS(3647), 1, anon_sym_LT_LT_LT, - ACTIONS(7814), 1, + ACTIONS(7751), 1, anon_sym_LF, - ACTIONS(7970), 1, + ACTIONS(7753), 1, sym_file_descriptor, - ACTIONS(3430), 2, + ACTIONS(3411), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2873), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 8, - anon_sym_SEMI, + ACTIONS(3645), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, + ACTIONS(3643), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(7966), 8, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7749), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178267,14 +170378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [141757] = 3, + [134429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(7755), 1, + sym_variable_name, + STATE(4140), 1, + sym_subscript, + ACTIONS(7493), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1276), 22, + STATE(2715), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178282,11 +170399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -178296,15 +170410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [141790] = 3, + anon_sym_BQUOTE, + [134468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1302), 22, + ACTIONS(1346), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178312,11 +170427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -178327,18 +170440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [141823] = 4, + anon_sym_BQUOTE, + [134501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(1360), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 18, + ACTIONS(1358), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178346,6 +170457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178357,19 +170469,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [141857] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [134534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8073), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 19, + ACTIONS(1354), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178377,6 +170487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178388,15 +170499,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [134567] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7757), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4476), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134626] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7759), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4468), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134685] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, - [141895] = 3, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7761), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4465), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 21, + ACTIONS(1350), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178416,65 +170658,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [141927] = 3, - ACTIONS(3), 1, + [134777] = 18, + ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 2, - sym__concat, - sym__brace_start, - ACTIONS(1318), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(7678), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7680), 1, aux_sym_number_token1, + ACTIONS(7682), 1, aux_sym_number_token2, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [141959] = 10, + ACTIONS(7763), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3974), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [134840] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(2780), 1, + anon_sym_BQUOTE, + ACTIONS(3669), 1, anon_sym_LT_LT_LT, - ACTIONS(8077), 1, + ACTIONS(7767), 1, anon_sym_LF, - ACTIONS(8079), 1, + ACTIONS(7769), 1, sym_file_descriptor, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(3665), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + ACTIONS(3667), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3916), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2953), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + ACTIONS(7765), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178483,49 +170743,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [142005] = 3, + [134889] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 4, - sym_file_descriptor, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4374), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(7771), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4445), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [134948] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, + anon_sym_DOLLAR, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, + aux_sym_number_token1, + ACTIONS(7682), 1, + aux_sym_number_token2, + ACTIONS(7684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7773), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3969), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [135011] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, - [142037] = 3, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7775), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4432), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 2, - sym__concat, + ACTIONS(1278), 1, sym__brace_start, - ACTIONS(1326), 22, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7777), 1, + sym__concat, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -178541,56 +170907,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [142069] = 10, + [135109] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8081), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3920), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142115] = 6, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7779), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4431), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(8083), 1, + ACTIONS(7783), 1, sym__concat, - STATE(2712), 1, + STATE(2873), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1264), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 18, + ACTIONS(1262), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178609,56 +170982,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142153] = 10, + sym__special_character, + [135207] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8085), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3918), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142199] = 6, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7785), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4385), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135266] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8087), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7787), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4371), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135325] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7789), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4372), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7791), 1, + sym__special_character, + STATE(2684), 1, + aux_sym__literal_repeat1, + ACTIONS(7580), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1246), 18, + ACTIONS(7578), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178666,6 +171131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178677,20 +171143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142237] = 6, + anon_sym_BQUOTE, + [135421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8089), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(1318), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1246), 18, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178698,6 +171160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178709,19 +171172,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142275] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135454] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7793), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4360), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135513] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7795), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4345), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135572] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7797), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4342), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135631] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7799), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4332), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135690] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7801), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4323), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 19, + ACTIONS(1288), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178729,6 +171405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178740,21 +171417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [142313] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8091), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 18, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178762,6 +171435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178773,19 +171447,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142351] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [135815] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2960), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7803), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4314), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135874] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7805), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4305), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135933] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7807), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4306), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [135992] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7809), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4300), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [136051] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7811), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4295), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [136110] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7813), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4288), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [136169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7875), 19, + ACTIONS(1308), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178805,19 +171735,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142389] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [136202] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2906), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7815), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4280), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [136261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7875), 19, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178825,6 +171796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178836,20 +171808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [142427] = 6, + [136294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(1340), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7879), 19, + ACTIONS(1338), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178857,6 +171826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178868,78 +171838,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [142465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym__concat, - sym__brace_start, - ACTIONS(1268), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142497] = 3, + [136327] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, - sym__concat, - sym__brace_start, - ACTIONS(1268), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, + ACTIONS(7646), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142529] = 6, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7817), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4188), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [136386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2906), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7902), 19, + ACTIONS(1296), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178947,6 +171899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178958,21 +171911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [142567] = 6, + [136419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(7789), 2, + ACTIONS(1271), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - STATE(2925), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 18, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178980,6 +171929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -178991,138 +171941,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym__concat, - sym__brace_start, - ACTIONS(1314), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142637] = 6, + [136452] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, + ACTIONS(3647), 1, + anon_sym_LT_LT_LT, + ACTIONS(7753), 1, sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7536), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7885), 19, + STATE(2819), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7534), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7749), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 2, - sym__concat, - sym__brace_start, - ACTIONS(1338), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - sym__brace_start, - ACTIONS(1258), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142739] = 6, + [136495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8096), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(7819), 1, + sym_variable_name, + STATE(4158), 1, + sym_subscript, + STATE(2816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7493), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1246), 19, + ACTIONS(7491), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179141,49 +172011,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [142777] = 3, + [136534] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(2782), 1, + ts_builtin_sym_end, + ACTIONS(3647), 1, + anon_sym_LT_LT_LT, + ACTIONS(7753), 1, sym_file_descriptor, + ACTIONS(7821), 1, anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, + ACTIONS(3411), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3645), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3659), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7749), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [136583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_LT_LT_LT, + ACTIONS(7536), 1, + anon_sym_LF, + ACTIONS(7722), 1, + sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2788), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7534), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7720), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [142809] = 6, + [136626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7879), 19, + ACTIONS(1334), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179203,84 +172112,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - sym__brace_start, - ACTIONS(1302), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142879] = 10, + [136659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7823), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, - ACTIONS(8098), 1, + sym_variable_name, anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(1282), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3900), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [142925] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [136698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7825), 1, sym__concat, - STATE(2960), 1, + STATE(2590), 1, aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7902), 19, + ACTIONS(1276), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179288,7 +172169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -179300,153 +172180,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [142963] = 10, + [136737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7827), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 4, sym_file_descriptor, - ACTIONS(8100), 1, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(1282), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3791), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143009] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4278), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 2, - sym__concat, - sym__brace_start, - ACTIONS(1342), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 2, - sym__concat, - sym__brace_start, - ACTIONS(1346), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143127] = 6, + [136776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7829), 1, sym__concat, - STATE(2965), 1, + STATE(2590), 1, aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7885), 19, + ACTIONS(1276), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179454,7 +172234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -179466,167 +172245,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143165] = 8, + anon_sym_BQUOTE, + [136815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(8127), 1, - anon_sym_LT_LT_LT, - ACTIONS(8130), 1, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2941), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 7, + anon_sym_LF, + ACTIONS(1262), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(8124), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - sym_file_descriptor, - ACTIONS(8135), 1, - anon_sym_LF, - STATE(3064), 1, - sym_file_redirect, - ACTIONS(7775), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8133), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143245] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4340), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143299] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + sym__special_character, anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4333), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143353] = 5, + [136854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 2, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, + sym__concat, + STATE(2804), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 16, + ACTIONS(3741), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179634,7 +172300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -179643,115 +172312,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143389] = 3, + [136893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 2, - sym__concat, - sym__brace_start, - ACTIONS(1294), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143421] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, + ACTIONS(7562), 1, + sym__concat, + STATE(2805), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, sym_file_descriptor, - ACTIONS(8139), 1, + sym_variable_name, anon_sym_LF, - STATE(3086), 1, - sym_file_redirect, - ACTIONS(7775), 8, + ACTIONS(3745), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143459] = 14, + [136932] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(8104), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(8106), 1, + ACTIONS(7674), 1, aux_sym__c_word_token1, - ACTIONS(8108), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - ACTIONS(8110), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(7682), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, + ACTIONS(7831), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4174), 2, + STATE(4005), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2303), 10, + STATE(2222), 7, sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, sym__c_parenthesized_expression, sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [143513] = 3, + [136995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 3, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, + sym__concat, + STATE(2806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7580), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(4374), 21, + ACTIONS(7578), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179759,7 +172410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -179773,46 +172423,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143545] = 6, + [137034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7932), 1, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, + sym__concat, + STATE(2810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 2, sym_file_descriptor, - ACTIONS(8143), 1, anon_sym_LF, - STATE(3031), 1, - sym_file_redirect, - ACTIONS(7775), 8, + ACTIONS(7566), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8141), 13, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [137073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, + sym__concat, + STATE(2806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7609), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143583] = 3, + [137112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, + ACTIONS(7514), 1, + aux_sym_concatenation_token1, + ACTIONS(7516), 1, + sym__concat, + STATE(2810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(3837), 21, + ACTIONS(7601), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179820,7 +172509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -179834,97 +172522,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143615] = 3, + [137151] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, - sym__concat, - sym__brace_start, - ACTIONS(1284), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, + ACTIONS(7646), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143647] = 8, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7833), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4234), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [137210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(8079), 1, + ACTIONS(3254), 2, sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2941), 4, + anon_sym_LF, + STATE(2772), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 7, + ACTIONS(3252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(8075), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143689] = 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [137245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(7546), 1, + anon_sym_LF, + ACTIONS(7841), 1, anon_sym_LT_LT_LT, - ACTIONS(8079), 1, + ACTIONS(7844), 1, sym_file_descriptor, - ACTIONS(8145), 1, - anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(7835), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + STATE(2788), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7538), 8, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3756), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + ACTIONS(7838), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -179933,66 +172631,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143735] = 6, + [137288] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, sym_variable_name, + ACTIONS(7847), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4254), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [137347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, anon_sym_LF, - ACTIONS(3837), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7853), 1, + sym_file_descriptor, + STATE(2824), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7849), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143773] = 10, + [137386] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7855), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4189), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [137445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(3183), 1, + anon_sym_BQUOTE, + ACTIONS(3669), 1, anon_sym_LT_LT_LT, - ACTIONS(8079), 1, + ACTIONS(7769), 1, sym_file_descriptor, - ACTIONS(8147), 1, + ACTIONS(7857), 1, anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + ACTIONS(3665), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, + ACTIONS(3667), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3898), 3, + ACTIONS(3820), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2953), 4, + STATE(2800), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + ACTIONS(7765), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -180001,60 +172788,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143819] = 14, - ACTIONS(63), 1, + [137494] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7859), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4464), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(7948), 1, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [137553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, + sym__concat, + STATE(2741), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3886), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7950), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7952), 1, aux_sym_number_token2, - ACTIONS(7954), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, anon_sym_BQUOTE, - ACTIONS(7960), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4348), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [137592] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7861), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, sym_command_substitution, - [143873] = 3, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4243), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [137651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, - sym__concat, + ACTIONS(3882), 1, sym__brace_start, - ACTIONS(1272), 22, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, + sym__concat, + STATE(2682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3878), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -180070,34 +172940,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, sym_test_operator, - [143905] = 10, + [137690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3762), 1, + ACTIONS(7546), 1, + anon_sym_LF, + ACTIONS(7866), 1, anon_sym_LT_LT_LT, - ACTIONS(8079), 1, + ACTIONS(7869), 1, sym_file_descriptor, - ACTIONS(8149), 1, - anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(7835), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, + STATE(2797), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7538), 8, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3896), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, + anon_sym_BQUOTE, + ACTIONS(7863), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -180106,19 +172975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143951] = 6, + [137733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8151), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3254), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1252), 19, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180126,7 +172994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -180138,14 +173005,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [143989] = 3, + anon_sym_BQUOTE, + [137768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, + ACTIONS(7872), 1, sym_variable_name, + STATE(4078), 1, + sym_subscript, + ACTIONS(7509), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(4370), 21, + STATE(2799), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180153,11 +173027,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180167,117 +173039,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144021] = 3, + [137807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, - sym__concat, - sym__brace_start, - ACTIONS(1310), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(3669), 1, + anon_sym_LT_LT_LT, + ACTIONS(7536), 1, + anon_sym_LF, + ACTIONS(7769), 1, + sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2797), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7534), 8, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_PIPE_AMP, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144053] = 14, + ACTIONS(7765), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [137850] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(7944), 1, + ACTIONS(7674), 1, aux_sym__c_word_token1, - ACTIONS(7946), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - ACTIONS(7948), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE, - ACTIONS(7950), 1, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(7952), 1, + ACTIONS(7682), 1, aux_sym_number_token2, - ACTIONS(7954), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7960), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, + ACTIONS(7875), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4349), 2, + STATE(4042), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2371), 10, + STATE(2222), 7, sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, sym__c_parenthesized_expression, sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [144107] = 3, - ACTIONS(3), 1, + [137913] = 18, + ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 2, - sym__concat, - sym__brace_start, - ACTIONS(1322), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(7678), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7680), 1, aux_sym_number_token1, + ACTIONS(7682), 1, aux_sym_number_token2, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144139] = 6, + ACTIONS(7877), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4041), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [137976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(8153), 1, + ACTIONS(7783), 1, sym__concat, - STATE(2726), 1, + STATE(2851), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1264), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1246), 19, + ACTIONS(1262), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180297,20 +173196,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144177] = 6, + sym__special_character, + [138015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7879), 1, sym__concat, - STATE(2918), 1, + STATE(2590), 1, aux_sym_concatenation_repeat1, - ACTIONS(7904), 3, + ACTIONS(1278), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(7902), 18, + ACTIONS(1276), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180318,6 +173218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -180329,55 +173230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144215] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4155), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144269] = 3, + [138054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 4, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7881), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4370), 20, + ACTIONS(1282), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180397,82 +173263,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144301] = 3, + [138093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, - sym__concat, - sym__brace_start, - ACTIONS(1298), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8158), 1, + ACTIONS(7883), 1, + sym__concat, + STATE(2661), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, - STATE(2970), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8155), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 12, + anon_sym_LF, + ACTIONS(1276), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144371] = 6, + [138132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2918), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 3, + ACTIONS(3409), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7875), 18, + ACTIONS(3667), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2800), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 17, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180480,9 +173318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180491,20 +173327,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144409] = 6, + anon_sym_BQUOTE, + [138169] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2915), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 3, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7885), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4235), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [138228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7887), 1, + sym_variable_name, + STATE(4078), 1, + sym_subscript, + ACTIONS(7493), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7879), 18, + STATE(2799), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180512,6 +173392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -180523,20 +173404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144447] = 6, + [138267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7514), 1, aux_sym_concatenation_token1, - ACTIONS(7850), 1, + ACTIONS(7889), 1, sym__concat, - STATE(2916), 1, + STATE(2661), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(1284), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(3841), 18, + ACTIONS(1282), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180546,6 +173426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180555,47 +173437,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144485] = 6, + [138306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8161), 1, + ACTIONS(7891), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(7611), 2, sym_file_descriptor, - STATE(2970), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 12, + anon_sym_LF, + ACTIONS(7609), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144523] = 3, + [138343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 4, + ACTIONS(7891), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(7580), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3837), 20, + ACTIONS(7578), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180603,9 +173487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180615,61 +173501,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144555] = 14, + [138380] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(8167), 1, + ACTIONS(7674), 1, aux_sym__c_word_token1, - ACTIONS(8169), 1, + ACTIONS(7676), 1, + anon_sym_DOLLAR, + ACTIONS(7678), 1, anon_sym_DQUOTE, - ACTIONS(8171), 1, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(8173), 1, + ACTIONS(7682), 1, + aux_sym_number_token2, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8179), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8163), 2, + ACTIONS(7893), 1, + anon_sym_RPAREN_RPAREN, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4134), 2, + STATE(3972), 2, sym__c_expression, sym__c_variable_assignment, - STATE(2269), 10, + STATE(2222), 7, sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, sym__c_parenthesized_expression, sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [144609] = 6, + [138443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8181), 1, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, + sym__concat, + STATE(2833), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, + sym_file_descriptor, sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(7822), 2, + anon_sym_LF, + ACTIONS(1262), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [138482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3409), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - STATE(2925), 2, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 16, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7895), 1, + sym_variable_name, + STATE(4158), 1, + sym_subscript, + STATE(2816), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 18, + ACTIONS(7509), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7507), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180688,176 +173644,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144647] = 14, - ACTIONS(63), 1, + [138558] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(6828), 1, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7898), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4219), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8167), 1, - aux_sym__c_word_token1, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [138617] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, + ACTIONS(7644), 1, anon_sym_BQUOTE, - ACTIONS(8179), 1, + ACTIONS(7646), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4126), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7900), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, sym_command_substitution, - [144701] = 3, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4196), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [138676] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, - sym__concat, - sym__brace_start, - ACTIONS(1280), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(7905), 1, + anon_sym_LT_LT_LT, + ACTIONS(7908), 1, + sym_file_descriptor, + ACTIONS(7546), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7835), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2819), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7538), 7, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_PIPE_AMP, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(7902), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [138719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7791), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + STATE(2684), 1, + aux_sym__literal_repeat1, + ACTIONS(7611), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7609), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144733] = 3, + [138756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, - sym__concat, - sym__brace_start, - ACTIONS(1276), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(3254), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2769), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 18, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144765] = 3, + [138791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 2, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, sym__concat, - sym__brace_start, - ACTIONS(1330), 22, - anon_sym_LPAREN_LPAREN, + STATE(2775), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3741), 18, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(1262), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144797] = 3, + [138863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 2, - sym__concat, - sym__brace_start, - ACTIONS(1334), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(7916), 1, + anon_sym_LF, + ACTIONS(7918), 1, + sym_file_descriptor, + STATE(2824), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7913), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7911), 13, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_LF, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + [138902] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_BANG2, + ACTIONS(7642), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, anon_sym_BQUOTE, + ACTIONS(7646), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144829] = 6, + ACTIONS(7648), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7650), 1, + sym_variable_name, + ACTIONS(7921), 1, + anon_sym_RBRACE3, + STATE(2125), 1, + sym_subscript, + STATE(3834), 1, + sym_command_substitution, + STATE(3837), 1, + aux_sym__expansion_body_repeat1, + STATE(4204), 1, + sym__expansion_body, + ACTIONS(7640), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(7632), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(7634), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [138961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7562), 1, sym__concat, - STATE(2915), 1, + STATE(2776), 1, aux_sym_concatenation_repeat1, - ACTIONS(7887), 3, + ACTIONS(3747), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7885), 18, + ACTIONS(3745), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180876,14 +174000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144867] = 3, + [139000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8183), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8185), 20, + ACTIONS(7609), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180891,7 +174021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -180903,14 +174032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [144898] = 3, + [139038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8187), 21, + ACTIONS(7601), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180918,11 +174053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180932,14 +174064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [144929] = 3, + [139076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 3, + ACTIONS(3747), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8193), 20, + ACTIONS(3745), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180960,44 +174093,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [144960] = 5, - ACTIONS(63), 1, + [139108] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [144995] = 3, + ACTIONS(7546), 1, + anon_sym_LF, + ACTIONS(7926), 1, + anon_sym_LT_LT_LT, + ACTIONS(7929), 1, + sym_file_descriptor, + ACTIONS(7835), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2830), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7538), 7, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7923), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [139150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8197), 3, + ACTIONS(3254), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8199), 20, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181005,7 +174146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -181017,20 +174157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145026] = 6, + [139184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7783), 1, sym__concat, - STATE(3017), 1, + STATE(3014), 1, aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, + ACTIONS(1264), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(7902), 18, + ACTIONS(1262), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181049,13 +174188,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145063] = 3, + sym__special_character, + [139222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8203), 2, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7932), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(8201), 21, + ACTIONS(1276), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181063,11 +174210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181077,13 +174221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145094] = 3, + [139260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8207), 2, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7934), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(8205), 21, + ACTIONS(1282), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181091,11 +174242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181105,70 +174253,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145125] = 3, + [139298] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_LPAREN, + ACTIONS(7940), 1, + aux_sym__c_word_token1, + ACTIONS(7942), 1, + anon_sym_DOLLAR, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, + aux_sym_number_token1, + ACTIONS(7948), 1, + aux_sym_number_token2, + ACTIONS(7950), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3930), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2255), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [139358] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7536), 1, anon_sym_LF, - ACTIONS(8211), 20, + ACTIONS(7960), 1, + sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2830), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7534), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7958), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145156] = 3, + [139400] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8213), 3, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(7962), 1, anon_sym_LF, - ACTIONS(8215), 20, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3806), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145187] = 3, + [139446] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7980), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7982), 1, + sym_variable_name, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1872), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [139504] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(7984), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1939), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [139562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7986), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8187), 20, + ACTIONS(1282), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181188,15 +174482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145218] = 3, + [139600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8217), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8219), 20, + ACTIONS(7601), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181216,43 +174514,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145249] = 3, + [139638] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8223), 2, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, + ACTIONS(7988), 1, anon_sym_LF, - ACTIONS(8221), 21, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3800), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145280] = 3, + [139684] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(7990), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1837), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [139742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8225), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2851), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8227), 20, + ACTIONS(7609), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181272,75 +174624,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145311] = 6, + [139780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8229), 1, + ACTIONS(4151), 4, sym_file_descriptor, - ACTIONS(7930), 2, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - STATE(3032), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7934), 8, + ACTIONS(4149), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7928), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145348] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8231), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - sym_word, - ACTIONS(8233), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [145383] = 3, + [139812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 2, + ACTIONS(4144), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8193), 21, + ACTIONS(4142), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181348,11 +174669,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181362,13 +174681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145414] = 3, + anon_sym_BQUOTE, + [139844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8211), 21, + ACTIONS(7566), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181376,11 +174702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181390,13 +174714,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145445] = 3, + [139882] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(7992), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1843), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [139940] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym_number_token2, + ACTIONS(7996), 1, + anon_sym_LPAREN, + ACTIONS(7998), 1, + aux_sym__c_word_token1, + ACTIONS(8000), 1, + anon_sym_DQUOTE, + ACTIONS(8002), 1, + aux_sym_number_token1, + ACTIONS(8004), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8008), 1, + anon_sym_BQUOTE, + ACTIONS(8010), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + ACTIONS(7994), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3866), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [140000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8207), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2851), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7580), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8205), 21, + ACTIONS(7578), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181404,11 +174819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181418,13 +174831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145476] = 3, + [140038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8237), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8012), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8235), 21, + ACTIONS(1276), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181432,11 +174851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181446,14 +174863,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145507] = 3, + [140076] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8014), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1857), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8239), 3, + ACTIONS(3409), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8241), 20, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 16, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181461,10 +174927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181473,47 +174936,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [145538] = 5, + [140170] = 17, ACTIONS(63), 1, sym_comment, - STATE(3024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8243), 8, - anon_sym_LPAREN, + ACTIONS(6468), 1, anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, + ACTIONS(6474), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(8245), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7996), 1, + anon_sym_LPAREN, + ACTIONS(7998), 1, + aux_sym__c_word_token1, + ACTIONS(8000), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8002), 1, + aux_sym_number_token1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + ACTIONS(8006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8008), 1, + anon_sym_BQUOTE, + ACTIONS(8010), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [145573] = 6, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + ACTIONS(7994), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3873), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2140), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [140230] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, + sym_file_descriptor, + ACTIONS(8016), 1, anon_sym_LF, - ACTIONS(8161), 1, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3822), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [140276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + anon_sym_LF, + ACTIONS(8021), 1, sym_file_descriptor, - STATE(3086), 1, + STATE(2856), 2, sym_file_redirect, - ACTIONS(7842), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(8018), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -181522,7 +175034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 12, + ACTIONS(7911), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181535,16 +175047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145610] = 6, + [140314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, + ACTIONS(7851), 1, anon_sym_LF, - ACTIONS(8161), 1, + ACTIONS(8024), 1, sym_file_descriptor, - STATE(3031), 1, + STATE(2856), 2, sym_file_redirect, - ACTIONS(7842), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(7585), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -181553,7 +175066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8141), 12, + ACTIONS(7849), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181566,13 +175079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145647] = 3, + [140352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8213), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8026), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8215), 21, + ACTIONS(1276), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181580,11 +175099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181594,13 +175110,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145678] = 3, + anon_sym_BQUOTE, + [140390] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8028), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1865), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140448] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8030), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2052), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8032), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8247), 21, + ACTIONS(1282), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181608,11 +175215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181622,45 +175226,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145709] = 6, + anon_sym_BQUOTE, + [140544] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, + anon_sym_DOLLAR, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, + aux_sym_number_token1, + ACTIONS(7682), 1, + aux_sym_number_token2, + ACTIONS(7684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4082), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [140604] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8034), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2039), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140662] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8036), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1874), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140720] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8038), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1890), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140778] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8040), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1955), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140836] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_LPAREN, + ACTIONS(7940), 1, + aux_sym__c_word_token1, + ACTIONS(7942), 1, + anon_sym_DOLLAR, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, + aux_sym_number_token1, + ACTIONS(7948), 1, + aux_sym_number_token2, + ACTIONS(7950), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4001), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2255), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [140896] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8042), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1885), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [140954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8161), 1, + ACTIONS(3747), 3, sym_file_descriptor, - STATE(3064), 1, - sym_file_redirect, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 12, + sym_variable_name, + anon_sym_LF, + ACTIONS(3745), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145746] = 3, + [140986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 3, + ACTIONS(4151), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(8253), 20, + ACTIONS(4149), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181668,9 +175567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181680,14 +175581,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [141018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym__concat, + sym__brace_start, + ACTIONS(1350), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [145777] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [141050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 2, + ACTIONS(4144), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7875), 21, + ACTIONS(4142), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181709,13 +175639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145808] = 3, + [141082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8257), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8044), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8255), 21, + ACTIONS(1276), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181723,11 +175660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181737,14 +175671,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145839] = 3, + [141120] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8046), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1893), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8259), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8048), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8261), 20, + ACTIONS(1282), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181752,7 +175734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -181764,14 +175745,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [141216] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_LPAREN, + ACTIONS(7940), 1, + aux_sym__c_word_token1, + ACTIONS(7942), 1, + anon_sym_DOLLAR, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, + aux_sym_number_token1, + ACTIONS(7948), 1, + aux_sym_number_token2, + ACTIONS(7950), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, anon_sym_BQUOTE, - [145870] = 3, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4030), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2255), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [141276] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8050), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1896), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8052), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(7493), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8263), 21, + STATE(2883), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181779,11 +175851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181793,104 +175862,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145901] = 6, - ACTIONS(3), 1, + [141372] = 16, + ACTIONS(63), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8267), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8054), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1912), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7853), 1, sym_file_descriptor, + ACTIONS(8058), 1, anon_sym_LF, - ACTIONS(1246), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3006), 1, + sym_file_redirect, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8269), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 18, + ACTIONS(8056), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [145975] = 3, + [141468] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8265), 3, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8060), 1, anon_sym_LF, - ACTIONS(8263), 20, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3802), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146006] = 3, + [141514] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8062), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1905), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8271), 3, + ACTIONS(8064), 1, + sym_variable_name, + STATE(4104), 1, + sym_subscript, + ACTIONS(7509), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8273), 20, + STATE(2883), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181898,7 +176035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -181910,245 +176046,992 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146037] = 6, - ACTIONS(63), 1, + [141610] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - aux_sym_concatenation_token1, - ACTIONS(8275), 1, + ACTIONS(1356), 2, sym__concat, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 12, sym__brace_start, + ACTIONS(1354), 22, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [146074] = 3, + [141642] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8083), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8085), 1, + sym_variable_name, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2067), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141700] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8087), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1797), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141758] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8089), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1918), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141816] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8091), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1927), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8237), 3, + ACTIONS(7853), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8095), 1, anon_sym_LF, - ACTIONS(8235), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(3031), 1, + sym_file_redirect, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8279), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8277), 21, + ACTIONS(8093), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146136] = 3, + [141912] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8097), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1923), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [141970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8283), 2, - sym_file_descriptor, + ACTIONS(1360), 2, + sym__concat, + sym__brace_start, + ACTIONS(1358), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - ACTIONS(8281), 21, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym__concat, + sym__brace_start, + ACTIONS(1346), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146167] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142034] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8195), 1, - aux_sym_concatenation_token1, - ACTIONS(8285), 1, - sym__concat, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 8, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8099), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1910), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142092] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8101), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1883), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym__concat, + sym__brace_start, + ACTIONS(1312), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1254), 12, + sym_test_operator, + [142182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym__concat, sym__brace_start, + ACTIONS(1312), 22, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [146204] = 3, + [142214] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8103), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1804), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8289), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8287), 21, + ACTIONS(1332), 2, + sym__concat, + sym__brace_start, + ACTIONS(1330), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146235] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142304] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8105), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1870), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142362] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8107), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1873), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8291), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1271), 2, + sym__concat, + sym__brace_start, + ACTIONS(1266), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - ACTIONS(8293), 20, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym__concat, + sym__brace_start, + ACTIONS(1320), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [146266] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [142484] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8109), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1892), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142542] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 3, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8111), 1, anon_sym_LF, - ACTIONS(4390), 20, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3783), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146297] = 3, + [142588] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8113), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1935), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142646] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8115), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1924), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142704] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8117), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1916), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142762] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8119), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1835), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142820] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8121), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1803), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8203), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8201), 20, + ACTIONS(7566), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182156,7 +177039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182168,48 +177050,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146328] = 3, + [142916] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8123), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1940), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [142974] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8295), 3, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(8125), 1, anon_sym_LF, - ACTIONS(8297), 20, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3844), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146359] = 6, + [143020] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8127), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1906), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7783), 1, sym__concat, - STATE(3016), 1, + STATE(2873), 1, aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(7580), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7879), 18, + ACTIONS(7578), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182228,46 +177202,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146396] = 3, + [143116] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8129), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1826), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143174] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8131), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1934), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143232] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_LPAREN, + ACTIONS(7674), 1, + aux_sym__c_word_token1, + ACTIONS(7676), 1, + anon_sym_DOLLAR, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, + aux_sym_number_token1, + ACTIONS(7682), 1, + aux_sym_number_token2, + ACTIONS(7684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4168), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2222), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [143292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8301), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8299), 21, + ACTIONS(1318), 2, + sym__concat, + sym__brace_start, + ACTIONS(1316), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146427] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143324] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8133), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1787), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143382] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8135), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1876), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143440] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8137), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1846), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8306), 1, + ACTIONS(7853), 1, sym_file_descriptor, - ACTIONS(8059), 2, - ts_builtin_sym_end, + ACTIONS(8141), 1, anon_sym_LF, - STATE(3032), 2, + STATE(3051), 1, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8303), 8, + ACTIONS(7528), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -182276,56 +177502,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8054), 10, + ACTIONS(8139), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146464] = 3, + [143536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4390), 20, + ACTIONS(1306), 2, + sym__concat, + sym__brace_start, + ACTIONS(1304), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [146495] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143568] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8312), 1, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, - STATE(3034), 2, + ACTIONS(8143), 1, + anon_sym_LF, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3832), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8309), 8, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -182334,26 +177581,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8054), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146532] = 3, + [143614] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8145), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1801), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8279), 3, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, + sym__concat, + STATE(2834), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(8277), 20, + ACTIONS(3745), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182361,7 +177644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182373,15 +177655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146563] = 3, + [143710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8289), 3, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, + sym__concat, + STATE(2833), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3743), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(8287), 20, + ACTIONS(3741), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182389,7 +177676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182401,43 +177687,707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146594] = 3, + [143748] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8147), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1938), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143806] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8149), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1868), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143864] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8151), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1853), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [143922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8207), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1294), 2, + sym__concat, + sym__brace_start, + ACTIONS(1292), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - ACTIONS(8205), 20, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [143954] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8153), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1902), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144012] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8155), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1869), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144070] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8157), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1852), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144128] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8159), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1830), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144186] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8161), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1796), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144244] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8163), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1818), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144302] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8165), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1833), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144360] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8167), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1844), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym__concat, + sym__brace_start, + ACTIONS(1300), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [146625] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144450] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8169), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1849), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144508] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8171), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1867), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144566] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8085), 1, + sym_variable_name, + ACTIONS(8173), 1, + aux_sym__simple_variable_name_token1, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2081), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144624] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8085), 1, + sym_variable_name, + ACTIONS(8175), 1, + aux_sym__simple_variable_name_token1, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2055), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8315), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2861), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8317), 20, + ACTIONS(7601), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182445,7 +178395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182458,42 +178407,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146656] = 3, + [144720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8321), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8319), 21, + ACTIONS(1290), 2, + sym__concat, + sym__brace_start, + ACTIONS(1288), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146687] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8323), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8325), 20, + ACTIONS(7609), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182501,7 +178456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182514,70 +178468,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146718] = 3, + [144790] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8085), 1, + sym_variable_name, + ACTIONS(8177), 1, + aux_sym__simple_variable_name_token1, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2085), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8225), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8227), 20, + ACTIONS(1310), 2, + sym__concat, + sym__brace_start, + ACTIONS(1308), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [146749] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [144880] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8085), 1, + sym_variable_name, + ACTIONS(8179), 1, + aux_sym__simple_variable_name_token1, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2050), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [144938] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8329), 2, + ACTIONS(3789), 1, + anon_sym_LT_LT_LT, + ACTIONS(7960), 1, sym_file_descriptor, + ACTIONS(8181), 1, anon_sym_LF, - ACTIONS(8327), 21, - anon_sym_SEMI, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3785), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3787), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3804), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146780] = 3, + [144984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2861), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7902), 20, + ACTIONS(7566), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182585,7 +178637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182598,41 +178649,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [146811] = 3, + [145022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8333), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8331), 21, + ACTIONS(1340), 2, + sym__concat, + sym__brace_start, + ACTIONS(1338), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146842] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [145054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8225), 2, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(2858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7580), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8227), 21, + ACTIONS(7578), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182640,11 +178698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182654,78 +178709,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [146873] = 3, + anon_sym_BQUOTE, + [145092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8225), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8227), 21, + ACTIONS(1298), 2, + sym__concat, + sym__brace_start, + ACTIONS(1296), 22, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_LF, anon_sym_AMP, - [146904] = 11, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [145124] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8183), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1880), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [145182] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_LPAREN, + ACTIONS(7940), 1, + aux_sym__c_word_token1, + ACTIONS(7942), 1, + anon_sym_DOLLAR, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, + aux_sym_number_token1, + ACTIONS(7948), 1, + aux_sym_number_token2, + ACTIONS(7950), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4153), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2255), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [145242] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8185), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1897), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [145300] = 17, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7938), 1, + anon_sym_LPAREN, + ACTIONS(7940), 1, + aux_sym__c_word_token1, + ACTIONS(7942), 1, + anon_sym_DOLLAR, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, + aux_sym_number_token1, + ACTIONS(7948), 1, + aux_sym_number_token2, + ACTIONS(7950), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4161), 2, + sym__c_expression, + sym__c_variable_assignment, + STATE(2255), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [145360] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_LPAREN, + ACTIONS(8069), 1, + anon_sym_BANG, + ACTIONS(8075), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, + aux_sym_number_token1, + ACTIONS(8079), 1, + aux_sym_number_token2, + ACTIONS(8081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8085), 1, + sym_variable_name, + ACTIONS(8187), 1, + aux_sym__simple_variable_name_token1, + STATE(2035), 1, + sym__arithmetic_binary_expression, + STATE(2042), 1, + sym__arithmetic_ternary_expression, + STATE(2047), 1, + sym__arithmetic_unary_expression, + STATE(2057), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8071), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(8073), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(2076), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [145418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - anon_sym_SLASH, - ACTIONS(8343), 1, - anon_sym_LBRACK, - ACTIONS(8345), 1, - anon_sym_COLON, - ACTIONS(8353), 1, - anon_sym_AT, - ACTIONS(8335), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8341), 2, - anon_sym_PERCENT, - anon_sym_POUND, - ACTIONS(8347), 2, - anon_sym_POUND_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8351), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8349), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8337), 8, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_COLON_EQ, - anon_sym_COLON_DASH, - anon_sym_COLON_PLUS, - anon_sym_COLON_QMARK, - [146951] = 3, + ACTIONS(1336), 2, + sym__concat, + sym__brace_start, + ACTIONS(1334), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [145450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8355), 3, + ACTIONS(1264), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8357), 20, + ACTIONS(1262), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182733,9 +178994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182745,46 +179008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [146982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8359), 1, - sym_file_descriptor, - STATE(3034), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147019] = 3, + sym__special_character, + [145482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8361), 3, + ACTIONS(1264), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8363), 20, + ACTIONS(1262), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182804,15 +179036,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + sym__special_character, anon_sym_BQUOTE, - [147050] = 3, + [145514] = 16, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7964), 1, + anon_sym_LPAREN, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7972), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + aux_sym_number_token1, + ACTIONS(7976), 1, + aux_sym_number_token2, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7982), 1, + sym_variable_name, + ACTIONS(8189), 1, + aux_sym__simple_variable_name_token1, + STATE(1854), 1, + sym__arithmetic_unary_expression, + STATE(1856), 1, + sym__arithmetic_ternary_expression, + STATE(1858), 1, + sym__arithmetic_binary_expression, + STATE(1919), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7970), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1859), 7, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + [145572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8257), 3, + ACTIONS(8191), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8255), 20, + ACTIONS(8193), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182833,14 +179108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147081] = 3, + [145603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8321), 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8195), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8319), 20, + ACTIONS(1282), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182848,7 +179128,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -182860,15 +179139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147112] = 3, + [145640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 3, + ACTIONS(8197), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7875), 20, + ACTIONS(8199), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182889,13 +179167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147143] = 3, + [145671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8217), 2, + ACTIONS(8203), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8219), 21, + ACTIONS(8201), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182917,13 +179195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147174] = 3, + [145702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8259), 2, + ACTIONS(8197), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8261), 21, + ACTIONS(8199), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182931,11 +179210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182945,14 +179222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147205] = 3, + anon_sym_BQUOTE, + [145733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 3, + ACTIONS(8205), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8367), 20, + ACTIONS(8207), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182973,42 +179251,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147236] = 3, + [145764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8239), 2, + ACTIONS(8024), 1, sym_file_descriptor, + ACTIONS(8141), 1, anon_sym_LF, - ACTIONS(8241), 21, + STATE(3051), 1, + sym_file_redirect, + ACTIONS(7585), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8139), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147267] = 3, + [145801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8333), 3, + ACTIONS(8209), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8331), 20, + ACTIONS(8211), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183029,50 +179310,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147298] = 6, + [145832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, + ACTIONS(8024), 1, sym_file_descriptor, + ACTIONS(8095), 1, anon_sym_LF, - ACTIONS(7875), 18, + STATE(3031), 1, + sym_file_redirect, + ACTIONS(7585), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8093), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [145869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8024), 1, + sym_file_descriptor, + ACTIONS(8058), 1, + anon_sym_LF, + STATE(3006), 1, + sym_file_redirect, + ACTIONS(7585), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8056), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147335] = 6, + [145906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, + ACTIONS(8213), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7885), 18, + ACTIONS(8215), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183080,6 +179387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -183091,13 +179399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147372] = 3, + anon_sym_BQUOTE, + [145937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8217), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8253), 21, + ACTIONS(8219), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183105,11 +179415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183119,13 +179427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147403] = 3, + anon_sym_BQUOTE, + [145968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8323), 2, + ACTIONS(8223), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8325), 21, + ACTIONS(8221), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183147,14 +179456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147434] = 3, + [145999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8207), 3, + ACTIONS(8225), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8205), 20, + ACTIONS(8227), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183175,13 +179484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147465] = 3, + [146030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8197), 2, + ACTIONS(8229), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8199), 21, + ACTIONS(8231), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183189,11 +179499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183203,41 +179511,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147496] = 3, + anon_sym_BQUOTE, + [146061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8371), 2, + ACTIONS(8236), 1, sym_file_descriptor, + ACTIONS(7916), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8369), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2980), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8233), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7911), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147527] = 3, + [146098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8375), 2, + ACTIONS(7603), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8373), 21, + ACTIONS(7601), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183259,13 +179571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147558] = 3, + [146129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(7568), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4390), 21, + ACTIONS(7566), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183287,13 +179599,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147589] = 3, + [146160] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 1, + sym__brace_start, + ACTIONS(8239), 1, + sym__special_character, + STATE(2983), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [146195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8271), 2, + ACTIONS(8223), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8273), 21, + ACTIONS(8221), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183301,11 +179644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183315,13 +179656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147620] = 3, + anon_sym_BQUOTE, + [146226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 2, + ACTIONS(8242), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7902), 21, + ACTIONS(8244), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183329,11 +179672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183343,14 +179684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147651] = 3, + anon_sym_BQUOTE, + [146257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 3, + ACTIONS(8246), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8247), 20, + ACTIONS(8248), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183371,14 +179713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147682] = 3, + [146288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8301), 3, + ACTIONS(8250), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8299), 20, + ACTIONS(8252), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183399,13 +179741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147713] = 3, + [146319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(8256), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4390), 21, + ACTIONS(8254), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183427,14 +179769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147744] = 3, + [146350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8223), 3, + ACTIONS(8258), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8221), 20, + ACTIONS(8260), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183455,13 +179797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [147775] = 3, + [146381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8183), 2, + ACTIONS(8264), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8185), 21, + ACTIONS(8262), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183483,13 +179825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147806] = 3, + [146412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8315), 2, + ACTIONS(8268), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8317), 21, + ACTIONS(8266), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183511,13 +179853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147837] = 3, + [146443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8355), 2, + ACTIONS(8272), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8357), 21, + ACTIONS(8270), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183539,44 +179881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [147868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - sym__brace_start, - ACTIONS(8377), 1, - sym__special_character, - STATE(3077), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [147903] = 3, + [146474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8380), 3, + ACTIONS(8229), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8382), 20, + ACTIONS(8231), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183584,9 +179895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183596,15 +179909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147934] = 3, + [146505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8329), 3, + ACTIONS(8246), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8327), 20, + ACTIONS(8248), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183612,9 +179923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183624,15 +179937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147965] = 3, + [146536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8384), 3, + ACTIONS(8276), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8386), 20, + ACTIONS(8274), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183640,9 +179951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183652,14 +179965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [147996] = 3, + [146567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8361), 2, + ACTIONS(8278), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8363), 21, + ACTIONS(8280), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183667,11 +179980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183681,14 +179992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148027] = 3, + anon_sym_BQUOTE, + [146598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8375), 3, + ACTIONS(8278), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8373), 20, + ACTIONS(8280), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183709,44 +180021,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148058] = 6, + [146629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8388), 1, + ACTIONS(8250), 2, sym_file_descriptor, - STATE(3091), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7966), 8, + anon_sym_LF, + ACTIONS(8252), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7928), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [148095] = 3, + [146660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 2, + ACTIONS(7603), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8367), 21, + ACTIONS(7601), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183754,11 +180064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183768,14 +180076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148126] = 3, + anon_sym_BQUOTE, + [146691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8283), 3, + ACTIONS(8276), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8281), 20, + ACTIONS(8274), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183796,13 +180105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148157] = 3, + [146722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8384), 2, + ACTIONS(7568), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8386), 21, + ACTIONS(7566), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183810,11 +180120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183824,13 +180132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148188] = 3, + anon_sym_BQUOTE, + [146753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8291), 2, + ACTIONS(8203), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8293), 21, + ACTIONS(8201), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183838,11 +180148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183852,14 +180160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148219] = 3, + anon_sym_BQUOTE, + [146784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8371), 3, + ACTIONS(8282), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8369), 20, + ACTIONS(8284), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183880,13 +180189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [148250] = 3, + [146815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8380), 2, + ACTIONS(8288), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8382), 21, + ACTIONS(8286), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183908,74 +180217,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(8390), 1, - sym__special_character, - STATE(3077), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148316] = 6, + [146846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8395), 1, + ACTIONS(8191), 2, sym_file_descriptor, - STATE(3091), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8392), 8, + anon_sym_LF, + ACTIONS(8193), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8054), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [148353] = 3, + [146877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8295), 2, + ACTIONS(8292), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(8297), 21, + ACTIONS(8290), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183997,1086 +180273,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148384] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8398), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148419] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8401), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148455] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148485] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8403), 1, - aux_sym_concatenation_token1, - ACTIONS(8405), 1, - sym__concat, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148521] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148555] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148589] = 6, + [146908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8410), 1, + ACTIONS(8294), 3, sym_file_descriptor, - STATE(3099), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8407), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 10, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8296), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148625] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8413), 1, - sym_file_descriptor, - STATE(3099), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8075), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7928), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [148691] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3103), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148725] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8403), 1, - aux_sym_concatenation_token1, - ACTIONS(8415), 1, - sym__concat, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148761] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(1242), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148821] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8417), 1, - aux_sym__c_word_token1, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2244), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [148871] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148901] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8419), 1, - aux_sym__c_word_token1, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2340), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [148951] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148981] = 6, + [146939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(8388), 1, + ACTIONS(8298), 3, sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 11, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8300), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [149017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8388), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(7966), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8133), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [149053] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149083] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149113] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8421), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149147] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [149213] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149243] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149273] = 6, + [146970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8388), 1, + ACTIONS(8288), 3, sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(7966), 8, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8286), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8256), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8254), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [149309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8424), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [149345] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149375] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149405] = 6, + [147032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8229), 1, + ACTIONS(8298), 2, sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8139), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7934), 8, + ACTIONS(8300), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8284), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149441] = 6, + [147094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8229), 1, + ACTIONS(8242), 2, sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(8143), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7934), 8, + ACTIONS(8244), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8141), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147125] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8302), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1276), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149477] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149507] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8426), 1, - aux_sym__c_word_token1, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2260), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149557] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8428), 1, - aux_sym__c_word_token1, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2301), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149607] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8430), 1, - aux_sym__c_word_token1, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2319), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149657] = 6, + [147162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8229), 1, + ACTIONS(8304), 1, sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8135), 2, + ACTIONS(7851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(7934), 8, + STATE(2980), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7749), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -185085,7 +180520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8133), 10, + ACTIONS(7849), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185096,164 +180531,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149693] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149723] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8432), 1, - aux_sym__c_word_token1, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2385), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149773] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149803] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149833] = 6, + [147199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8359), 1, + ACTIONS(8278), 2, sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(7924), 8, + anon_sym_LF, + ACTIONS(8280), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8133), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8306), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8308), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149869] = 6, + anon_sym_BQUOTE, + [147261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, + ACTIONS(7916), 1, anon_sym_LF, - ACTIONS(8359), 1, + ACTIONS(8313), 1, sym_file_descriptor, - STATE(3071), 1, + STATE(3018), 2, sym_file_redirect, - ACTIONS(7924), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(8310), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -185262,7 +180606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8141), 11, + ACTIONS(7911), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185274,27 +180618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [149905] = 6, + [147298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(3234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, + ACTIONS(8197), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1242), 16, + ACTIONS(8199), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -185303,460 +180645,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [149941] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149971] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3989), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [150007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3094), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3985), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [150043] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150073] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150133] = 6, + anon_sym_AMP, + [147329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8359), 1, + ACTIONS(8318), 2, sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(7924), 8, + anon_sym_LF, + ACTIONS(8316), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8320), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8322), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150169] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8448), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8450), 1, - sym_test_operator, - ACTIONS(8452), 1, - sym_variable_name, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1909), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150220] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8454), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8456), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1837), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150271] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8458), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8460), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(2067), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150322] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8462), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8464), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1866), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150373] = 10, - ACTIONS(63), 1, + anon_sym_BQUOTE, + [147391] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7794), 1, - anon_sym_PIPE, - ACTIONS(8466), 1, - anon_sym_LT_LT, - ACTIONS(8475), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8478), 1, - anon_sym_LT_LT_LT, - ACTIONS(8481), 1, + ACTIONS(4231), 2, sym_file_descriptor, - ACTIONS(8472), 3, + anon_sym_LF, + ACTIONS(4229), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(7802), 4, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8292), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8290), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3148), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8469), 5, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [150416] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8488), 1, - anon_sym_esac, - ACTIONS(8484), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8486), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150447] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150476] = 6, + [147453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(3236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, + ACTIONS(8324), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3837), 15, + ACTIONS(8326), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -185765,326 +180784,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [150511] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8490), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8492), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1751), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150562] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150591] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8494), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8496), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1924), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150642] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8502), 1, - anon_sym_esac, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150673] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8518), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8520), 1, - sym_test_operator, - ACTIONS(8522), 1, - sym_variable_name, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2104), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150724] = 6, + [147484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8413), 1, + ACTIONS(4231), 2, sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8075), 8, + anon_sym_LF, + ACTIONS(4229), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8133), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8330), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8328), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150759] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8528), 1, - anon_sym_esac, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150790] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8530), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8532), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1838), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150841] = 4, - ACTIONS(63), 1, + [147546] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8528), 1, + ACTIONS(8197), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8199), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150872] = 3, - ACTIONS(63), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147577] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(8332), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8334), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150901] = 6, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, + ACTIONS(7851), 1, anon_sym_LF, - ACTIONS(8413), 1, + ACTIONS(8336), 1, sym_file_descriptor, - STATE(3071), 1, + STATE(3039), 2, sym_file_redirect, - ACTIONS(8075), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(7765), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -186093,7 +180917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8141), 10, + ACTIONS(7849), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186104,228 +180928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [150936] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8534), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8536), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1846), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150987] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8538), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8540), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1835), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151038] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8542), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8544), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1945), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151089] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8546), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8548), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1850), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151140] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151169] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8554), 1, - anon_sym_esac, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151200] = 6, + [147645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8556), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(7822), 2, + ACTIONS(8338), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - STATE(3262), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 15, + ACTIONS(8340), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -186334,518 +180955,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [151235] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151264] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151293] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8558), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8560), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1762), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151344] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8562), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8564), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1887), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151424] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8570), 1, - anon_sym_esac, - ACTIONS(8566), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8568), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151455] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8572), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8574), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1768), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151506] = 4, - ACTIONS(63), 1, + [147676] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8502), 1, + ACTIONS(8225), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8227), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151537] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151566] = 6, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8413), 1, + ACTIONS(8306), 2, sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8075), 8, + anon_sym_LF, + ACTIONS(8308), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(8137), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8205), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8207), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [151601] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151630] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8576), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8578), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1874), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151681] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8580), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8582), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1879), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151732] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151761] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8584), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8586), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1755), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151812] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8588), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8590), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1760), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151863] = 6, + [147769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(7850), 1, + ACTIONS(7783), 1, sym__concat, - STATE(3234), 1, + STATE(2966), 1, aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, + ACTIONS(7603), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(3841), 15, + ACTIONS(7601), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -186853,6 +181062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -186861,1260 +181071,566 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [151898] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8592), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8594), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1896), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151949] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_esac, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151980] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8606), 1, - anon_sym_esac, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152011] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8554), 1, - anon_sym_esac, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152042] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8608), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8610), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1897), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152093] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8612), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8614), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1825), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152144] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8618), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1904), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152195] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8620), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8622), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1743), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152246] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_esac, - ACTIONS(8624), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8626), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152277] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8630), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8632), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1905), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152328] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8634), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8636), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1869), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152379] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8638), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8640), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1750), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152430] = 4, - ACTIONS(63), 1, + anon_sym_AMP, + [147806] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8646), 1, + ACTIONS(8294), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8296), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8642), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152461] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8648), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8650), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1829), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152512] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8652), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8654), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1872), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152563] = 4, - ACTIONS(63), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147837] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(8344), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8342), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152594] = 12, - ACTIONS(63), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147868] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3014), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7609), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4442), 1, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, anon_sym_LT_LT_LT, - ACTIONS(8660), 1, + anon_sym_AMP, + [147905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 2, sym_file_descriptor, - ACTIONS(4447), 2, + anon_sym_LF, + ACTIONS(8215), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(3215), 4, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [147936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + anon_sym_LF, + ACTIONS(8349), 1, + sym_file_descriptor, + STATE(3039), 2, sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, + aux_sym_redirected_statement_repeat2, + ACTIONS(8346), 8, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [152641] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - anon_sym_esac, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7911), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152672] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8668), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8670), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1911), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152723] = 3, - ACTIONS(63), 1, + [147973] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(8352), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8354), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152752] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8672), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8674), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1736), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152803] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8676), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8678), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1759), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152854] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152883] = 12, - ACTIONS(63), 1, + [148004] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, + ACTIONS(8318), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8316), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4442), 1, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, anon_sym_LT_LT_LT, - ACTIONS(8660), 1, + anon_sym_AMP, + anon_sym_BQUOTE, + [148035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8358), 2, sym_file_descriptor, - ACTIONS(4447), 2, + anon_sym_LF, + ACTIONS(8356), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8360), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [152930] = 4, - ACTIONS(63), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148097] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8684), 1, + ACTIONS(8366), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8364), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152961] = 3, - ACTIONS(63), 1, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148128] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152990] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8686), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8688), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1737), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153041] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8690), 1, - sym__special_character, - STATE(3214), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153074] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4449), 1, + ACTIONS(7783), 1, + sym__concat, + STATE(2966), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7566), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, - ACTIONS(4451), 1, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, anon_sym_LT_LT_LT, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(8660), 1, + anon_sym_AMP, + [148165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8217), 2, sym_file_descriptor, - ACTIONS(8658), 3, + anon_sym_LF, + ACTIONS(8219), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(7814), 4, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8352), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8354), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3148), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [153117] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8693), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8695), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1927), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153168] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8697), 1, - sym__special_character, - STATE(3214), 1, - aux_sym__literal_repeat1, - ACTIONS(8231), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8233), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153201] = 4, - ACTIONS(63), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148227] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8703), 1, + ACTIONS(8338), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8340), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, - ACTIONS(8699), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8701), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153232] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8705), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8707), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1715), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153283] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8709), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8711), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2116), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153334] = 8, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(8715), 1, + ACTIONS(8258), 2, sym_file_descriptor, - ACTIONS(3430), 2, + anon_sym_LF, + ACTIONS(8260), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(7812), 4, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8332), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8334), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - STATE(3226), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8713), 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8326), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [153373] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153402] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8717), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8719), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1730), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153453] = 9, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - ACTIONS(8715), 1, + ACTIONS(8264), 3, sym_file_descriptor, - ACTIONS(8721), 1, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3430), 2, + ACTIONS(8262), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4272), 2, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(4304), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8211), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8713), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [153494] = 4, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(8366), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 15, + ACTIONS(8364), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -188123,235 +181639,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153525] = 8, + anon_sym_AMP, + anon_sym_BQUOTE, + [148444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, + ACTIONS(8362), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(8726), 1, + ACTIONS(8360), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(8729), 1, + anon_sym_AMP, + anon_sym_BQUOTE, + [148475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8358), 3, sym_file_descriptor, - ACTIONS(7912), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8356), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(7794), 4, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8320), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8322), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - STATE(3226), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8723), 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8268), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8266), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [153564] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153593] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8732), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8734), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1732), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153644] = 3, - ACTIONS(63), 1, + [148568] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(4231), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4229), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153673] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153702] = 3, - ACTIONS(63), 1, + [148599] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(4231), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4229), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153731] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8736), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8738), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1723), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153782] = 6, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, + ACTIONS(7851), 1, + anon_sym_LF, + ACTIONS(8368), 1, + sym_file_descriptor, + STATE(3018), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7720), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7849), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8330), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1242), 16, + ACTIONS(8328), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -188360,21 +181866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [153817] = 6, + anon_sym_AMP, + anon_sym_BQUOTE, + [148698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(8740), 1, + ACTIONS(7783), 1, sym__concat, - STATE(2712), 1, + STATE(3014), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, + ACTIONS(7580), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1246), 15, + ACTIONS(7578), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -188382,6 +181889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -188390,53 +181898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153852] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153881] = 6, + anon_sym_AMP, + [148735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8742), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, + ACTIONS(8344), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1252), 15, + ACTIONS(8342), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -188445,290 +181925,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [153916] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8746), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1820), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153967] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - anon_sym_esac, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153998] = 5, - ACTIONS(63), 1, + [148766] = 3, + ACTIONS(3), 1, sym_comment, - STATE(3465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 5, + ACTIONS(8278), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(8280), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(1244), 13, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [148797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8272), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(8270), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [154031] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8750), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8752), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1726), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154082] = 4, - ACTIONS(63), 1, + anon_sym_AMP, + anon_sym_BQUOTE, + [148828] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8758), 1, - anon_sym_esac, - ACTIONS(8754), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8756), 14, - sym_extglob_pattern, + ACTIONS(3888), 1, sym__brace_start, + ACTIONS(8370), 1, + sym__special_character, + STATE(2983), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 20, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [154113] = 14, + [148863] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8760), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8762), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(2041), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154164] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8000), 1, + anon_sym_DQUOTE, + ACTIONS(8002), 1, aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8764), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8766), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1718), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(8006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8008), 1, + anon_sym_BQUOTE, + ACTIONS(8010), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8372), 1, + aux_sym__c_word_token1, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + ACTIONS(7994), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2129), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [154215] = 14, + sym_command_substitution, + [148919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8095), 1, + anon_sym_LF, + ACTIONS(8336), 1, + sym_file_descriptor, + STATE(2978), 1, + sym_file_redirect, + ACTIONS(7765), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8093), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148955] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(7938), 1, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, aux_sym_number_token1, - ACTIONS(8444), 1, + ACTIONS(7948), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + ACTIONS(7950), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8768), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8770), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1921), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8374), 1, + aux_sym__c_word_token1, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2239), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [154266] = 3, + sym_command_substitution, + [149011] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 6, + STATE(3093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8376), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1324), 15, - sym__concat, + ACTIONS(1264), 13, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -188738,796 +182152,801 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [154295] = 14, - ACTIONS(63), 1, + [149045] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8772), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8774), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1863), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154346] = 14, - ACTIONS(63), 1, + ACTIONS(8304), 1, + sym_file_descriptor, + STATE(3024), 1, + sym_file_redirect, + ACTIONS(8141), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7749), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8139), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149081] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8776), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8778), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1719), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154397] = 14, - ACTIONS(63), 1, + ACTIONS(8058), 1, + anon_sym_LF, + ACTIONS(8336), 1, + sym_file_descriptor, + STATE(3023), 1, + sym_file_redirect, + ACTIONS(7765), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8056), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [149117] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8780), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8782), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2110), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154448] = 14, - ACTIONS(63), 1, + ACTIONS(8304), 1, + sym_file_descriptor, + STATE(3023), 1, + sym_file_redirect, + ACTIONS(8058), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7749), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8056), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149153] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(1278), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(8378), 1, + sym__concat, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(8442), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8784), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8786), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1777), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154499] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8792), 1, - anon_sym_esac, - ACTIONS(8788), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(8790), 14, - sym_extglob_pattern, + sym_test_operator, + [149189] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 1, sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(8380), 1, + sym__concat, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LF, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [154530] = 4, - ACTIONS(63), 1, + [149225] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8684), 1, - anon_sym_esac, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, + ACTIONS(8141), 1, + anon_sym_LF, + ACTIONS(8336), 1, + sym_file_descriptor, + STATE(3024), 1, + sym_file_redirect, + ACTIONS(7765), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8139), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [149261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1264), 1, sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, + sym__concat, + STATE(3075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1262), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LF, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [154561] = 14, + [149297] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(8444), 1, + ACTIONS(7682), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8794), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8796), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1739), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8382), 1, + aux_sym__c_word_token1, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2205), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [154612] = 4, + sym_command_substitution, + [149353] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8802), 1, - anon_sym_esac, - ACTIONS(8798), 6, - anon_sym_LPAREN, + STATE(3080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8384), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8800), 14, - sym_extglob_pattern, + ACTIONS(1271), 13, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [154643] = 4, - ACTIONS(63), 1, + [149387] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 1, - anon_sym_esac, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, + ACTIONS(1264), 1, sym__brace_start, + ACTIONS(1262), 21, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_LF, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - [154674] = 14, + [149417] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, + anon_sym_LF, + ACTIONS(8387), 1, + sym_file_descriptor, + STATE(3083), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7958), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7849), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149453] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + anon_sym_LF, + ACTIONS(8392), 1, + sym_file_descriptor, + STATE(3083), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8389), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7911), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149489] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, + STATE(3093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8376), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3886), 6, anon_sym_DOLLAR, - ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8516), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3888), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8804), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8806), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2099), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154725] = 4, + [149523] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8646), 1, - anon_sym_esac, - ACTIONS(8642), 6, - anon_sym_LPAREN, + STATE(3096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8376), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3878), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, + ACTIONS(3882), 13, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [154756] = 14, + [149557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8058), 1, + anon_sym_LF, + ACTIONS(8368), 1, + sym_file_descriptor, + STATE(3023), 1, + sym_file_redirect, + ACTIONS(7720), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8056), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149593] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8504), 1, + ACTIONS(7938), 1, anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR, - ACTIONS(8512), 1, + ACTIONS(7944), 1, + anon_sym_DQUOTE, + ACTIONS(7946), 1, aux_sym_number_token1, - ACTIONS(8514), 1, + ACTIONS(7948), 1, aux_sym_number_token2, - ACTIONS(8516), 1, + ACTIONS(7950), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8808), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8810), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2066), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(7952), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7954), 1, + anon_sym_BQUOTE, + ACTIONS(7956), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8395), 1, + aux_sym__c_word_token1, + STATE(2251), 1, + sym__c_postfix_expression, + STATE(2252), 1, + sym__c_binary_expression, + STATE(2253), 1, + sym__c_unary_expression, + ACTIONS(7936), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2188), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [154807] = 14, + sym_command_substitution, + [149649] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, + ACTIONS(6474), 1, aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8812), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8814), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1781), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154858] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8000), 1, + anon_sym_DQUOTE, + ACTIONS(8002), 1, aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8816), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8818), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1802), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(8006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8008), 1, + anon_sym_BQUOTE, + ACTIONS(8010), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8397), 1, + aux_sym__c_word_token1, + STATE(2155), 1, + sym__c_postfix_expression, + STATE(2170), 1, + sym__c_binary_expression, + STATE(2171), 1, + sym__c_unary_expression, + ACTIONS(7994), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2154), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [154909] = 5, - ACTIONS(63), 1, + sym_command_substitution, + [149705] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3334), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(1242), 6, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1244), 12, + ACTIONS(7562), 1, + sym__concat, + STATE(3136), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 3, sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1262), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [154942] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8822), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8824), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1818), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154993] = 6, + sym__special_character, + [149741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, + ACTIONS(8095), 1, anon_sym_LF, - STATE(3262), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8368), 1, + sym_file_descriptor, + STATE(2978), 1, + sym_file_redirect, + ACTIONS(7720), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8093), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155028] = 14, - ACTIONS(63), 1, + anon_sym_AMP, + [149777] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(3888), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, + sym__concat, + STATE(3075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3886), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(8442), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8829), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8831), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1821), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155079] = 14, - ACTIONS(63), 1, + [149813] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(3882), 1, + sym__brace_start, + ACTIONS(7656), 1, + aux_sym_concatenation_token1, + ACTIONS(7747), 1, + sym__concat, + STATE(3076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3878), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(8442), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8833), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8835), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1862), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155130] = 12, + [149849] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(8660), 1, + ACTIONS(8376), 1, + aux_sym_concatenation_token1, + ACTIONS(8399), 1, + sym__concat, + STATE(3080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [149885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8141), 1, + anon_sym_LF, + ACTIONS(8368), 1, sym_file_descriptor, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3215), 4, + STATE(3024), 1, sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, + ACTIONS(7720), 8, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155177] = 14, + ACTIONS(8139), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149921] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(7678), 1, + anon_sym_DQUOTE, + ACTIONS(7680), 1, aux_sym_number_token1, - ACTIONS(8444), 1, + ACTIONS(7682), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8837), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8839), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1843), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8401), 1, + aux_sym__c_word_token1, + STATE(2176), 1, + sym__c_binary_expression, + STATE(2220), 1, + sym__c_postfix_expression, + STATE(2221), 1, + sym__c_unary_expression, + ACTIONS(7670), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2216), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [155228] = 4, + sym_command_substitution, + [149977] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8845), 1, - anon_sym_esac, - ACTIONS(8841), 6, - anon_sym_LPAREN, + ACTIONS(8376), 1, + aux_sym_concatenation_token1, + ACTIONS(8403), 1, + sym__concat, + STATE(3080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8843), 14, - sym_extglob_pattern, + ACTIONS(1284), 13, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [155259] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8847), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8849), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1716), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155310] = 5, + [150013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 2, + ACTIONS(8304), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3221), 4, + STATE(2978), 1, sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(8095), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(7749), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -189536,239 +182955,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8093), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [155343] = 14, + anon_sym_AMP, + [150049] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(8409), 1, + anon_sym_esac, + ACTIONS(8405), 6, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8407), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8851), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8853), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1861), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155394] = 14, + [150080] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(8415), 1, + anon_sym_esac, + ACTIONS(8411), 6, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8413), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8855), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8857), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1873), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155445] = 14, + [150111] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(8421), 1, + anon_sym_esac, + ACTIONS(8417), 6, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8419), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8859), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8861), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1886), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155496] = 14, + [150142] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(8427), 1, + anon_sym_esac, + ACTIONS(8423), 6, anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, aux_sym_number_token1, - ACTIONS(8444), 1, aux_sym_number_token2, - ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8425), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8863), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8865), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1775), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155547] = 14, + [150173] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, + ACTIONS(1334), 6, anon_sym_DOLLAR, - ACTIONS(8512), 1, aux_sym_number_token1, - ACTIONS(8514), 1, aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8867), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8869), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2137), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155598] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8877), 1, - anon_sym_RBRACE3, - ACTIONS(8879), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1336), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - STATE(3419), 1, - aux_sym_expansion_repeat1, - STATE(4633), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8871), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155646] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150202] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8889), 6, + ACTIONS(8433), 1, + anon_sym_esac, + ACTIONS(8429), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8891), 14, + ACTIONS(8431), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189783,192 +183127,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [155674] = 13, - ACTIONS(3), 1, + [150233] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8895), 1, - anon_sym_RBRACE3, - STATE(3278), 1, - aux_sym_expansion_repeat1, - STATE(4986), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(1266), 6, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8893), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155722] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1271), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8899), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4927), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155770] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150262] = 12, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(4212), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(4252), 1, + anon_sym_LT_LT, + ACTIONS(4254), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4256), 1, + anon_sym_LT_LT_LT, + ACTIONS(8439), 1, + sym_file_descriptor, + ACTIONS(4250), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8437), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3109), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8435), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [150309] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1350), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1352), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8903), 1, - anon_sym_RBRACE3, - STATE(3308), 1, - aux_sym_expansion_repeat1, - STATE(4706), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8901), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155818] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150338] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(1296), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1298), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8907), 1, - anon_sym_RBRACE3, - STATE(3284), 1, - aux_sym_expansion_repeat1, - STATE(4919), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8905), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155866] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150367] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8445), 1, + anon_sym_esac, + ACTIONS(8441), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8443), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8911), 1, - anon_sym_RBRACE3, - STATE(3293), 1, - aux_sym_expansion_repeat1, - STATE(4779), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8909), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155914] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150398] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_LT_LT, + ACTIONS(4254), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4256), 1, + anon_sym_LT_LT_LT, + ACTIONS(7534), 1, + anon_sym_PIPE, + ACTIONS(8439), 1, + sym_file_descriptor, + ACTIONS(8437), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7536), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(3120), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8435), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [150441] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8524), 6, + ACTIONS(8451), 1, + anon_sym_esac, + ACTIONS(8447), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8526), 14, + ACTIONS(8449), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189983,87 +183327,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [155942] = 13, - ACTIONS(3), 1, + [150472] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(1354), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1356), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8913), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4675), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155990] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150501] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8433), 1, + anon_sym_esac, + ACTIONS(8429), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8431), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8915), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4909), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156038] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150532] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8917), 6, + ACTIONS(8427), 1, + anon_sym_esac, + ACTIONS(8423), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8919), 14, + ACTIONS(8425), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190078,21 +183407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156066] = 5, + [150563] = 5, ACTIONS(63), 1, sym_comment, - STATE(3286), 1, + STATE(3180), 1, aux_sym_concatenation_repeat1, - ACTIONS(8921), 2, + ACTIONS(8453), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1258), 5, + ACTIONS(1262), 6, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1263), 12, + sym__special_character, + ACTIONS(1264), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190105,17 +183435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156098] = 3, + [150596] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8754), 6, + ACTIONS(8459), 1, + anon_sym_esac, + ACTIONS(8455), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8756), 14, + ACTIONS(8457), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190130,80 +183462,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156126] = 13, - ACTIONS(3), 1, + [150627] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8465), 1, + anon_sym_esac, + ACTIONS(8461), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8463), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8926), 1, - anon_sym_RBRACE3, - STATE(3283), 1, - aux_sym_expansion_repeat1, - STATE(4906), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150658] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 6, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8924), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156174] = 6, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150687] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8928), 1, + ACTIONS(1346), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8467), 1, sym_variable_name, - STATE(4379), 1, + STATE(4083), 1, sym_subscript, - STATE(3406), 2, + ACTIONS(7493), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(3132), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 5, + ACTIONS(7491), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(7822), 11, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [150751] = 10, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7538), 1, + anon_sym_PIPE, + ACTIONS(8469), 1, + anon_sym_LT_LT, + ACTIONS(8478), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8481), 1, + anon_sym_LT_LT_LT, + ACTIONS(8484), 1, sym_file_descriptor, + ACTIONS(8475), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7546), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(3120), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8472), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [156208] = 3, + [150794] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8917), 6, + ACTIONS(8491), 1, + anon_sym_esac, + ACTIONS(8487), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8919), 14, + ACTIONS(8489), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190218,423 +183630,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156236] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8932), 1, - anon_sym_RBRACE3, - STATE(3298), 1, - aux_sym_expansion_repeat1, - STATE(4531), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8930), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156284] = 3, + [150825] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8934), 6, - anon_sym_LPAREN, + ACTIONS(1338), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8936), 14, - sym_extglob_pattern, + ACTIONS(1340), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156312] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8938), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4693), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156360] = 6, + [150854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, + ACTIONS(8058), 1, anon_sym_LF, - ACTIONS(7902), 15, + ACTIONS(8387), 1, + sym_file_descriptor, + STATE(3023), 1, + sym_file_redirect, + ACTIONS(7958), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8056), 10, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8095), 1, + anon_sym_LF, + ACTIONS(8387), 1, + sym_file_descriptor, + STATE(2978), 1, + sym_file_redirect, + ACTIONS(7958), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8093), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [156394] = 13, - ACTIONS(3), 1, + anon_sym_AMP, + [150924] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8491), 1, + anon_sym_esac, + ACTIONS(8487), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8489), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8942), 1, - anon_sym_RBRACE3, - STATE(3307), 1, - aux_sym_expansion_repeat1, - STATE(4503), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8940), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156442] = 13, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [150955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8141), 1, + anon_sym_LF, + ACTIONS(8387), 1, + sym_file_descriptor, + STATE(3024), 1, + sym_file_redirect, + ACTIONS(7958), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8139), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150990] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8465), 1, + anon_sym_esac, + ACTIONS(8461), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8463), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8944), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4813), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156490] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151021] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(1312), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1314), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8948), 1, - anon_sym_RBRACE3, - STATE(3301), 1, - aux_sym_expansion_repeat1, - STATE(4900), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8946), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156538] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151050] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(1304), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8950), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4563), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156586] = 3, + sym_word, + ACTIONS(1306), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151079] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8642), 6, - anon_sym_LPAREN, + ACTIONS(1300), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, + ACTIONS(1302), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156614] = 3, + [151108] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8484), 6, - anon_sym_LPAREN, + ACTIONS(1330), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8486), 14, - sym_extglob_pattern, + ACTIONS(1332), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156642] = 13, + [151137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + ACTIONS(8493), 1, sym_variable_name, - ACTIONS(8952), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4894), 1, - sym__expansion_body, - STATE(605), 2, + STATE(4083), 1, sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156690] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4440), 1, + ACTIONS(7509), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(3132), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4442), 1, anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, anon_sym_LT_LT_LT, - ACTIONS(8660), 1, + [151172] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(7562), 1, + sym__concat, + STATE(3134), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3747), 3, sym_file_descriptor, - ACTIONS(4447), 2, + sym_variable_name, + anon_sym_LF, + ACTIONS(3745), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [151207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(8496), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1282), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156734] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [151242] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8954), 6, - anon_sym_LPAREN, + ACTIONS(1308), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, + ACTIONS(1310), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156762] = 3, + [151271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + aux_sym_concatenation_token1, + ACTIONS(8498), 1, + sym__concat, + STATE(2590), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1276), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [151306] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8500), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1264), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [151339] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8958), 6, + ACTIONS(8506), 1, + anon_sym_esac, + ACTIONS(8502), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8960), 14, + ACTIONS(8504), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190649,52 +184098,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156790] = 13, + [151370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8964), 1, - anon_sym_RBRACE3, - STATE(3296), 1, - aux_sym_expansion_repeat1, - STATE(4878), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8962), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156838] = 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1264), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1262), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [151405] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8966), 6, + ACTIONS(8512), 1, + anon_sym_esac, + ACTIONS(8508), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8968), 14, + ACTIONS(8510), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190709,122 +184154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [156866] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8970), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4464), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156914] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8972), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4556), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156962] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8976), 1, - anon_sym_RBRACE3, - STATE(3312), 1, - aux_sym_expansion_repeat1, - STATE(4888), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8974), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157010] = 3, + [151436] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8934), 6, + ACTIONS(8518), 1, + anon_sym_esac, + ACTIONS(8514), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8936), 14, + ACTIONS(8516), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190839,87 +184181,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157038] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8980), 1, - anon_sym_RBRACE3, - STATE(3353), 1, - aux_sym_expansion_repeat1, - STATE(4657), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8978), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157086] = 13, + [151467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8982), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4881), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157134] = 3, + ACTIONS(4172), 1, + anon_sym_LT_LT_LT, + ACTIONS(8522), 1, + anon_sym_LF, + ACTIONS(8524), 1, + sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4079), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4168), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8520), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [151508] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8984), 6, + ACTIONS(8518), 1, + anon_sym_esac, + ACTIONS(8514), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8986), 14, + ACTIONS(8516), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190934,77 +184240,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157162] = 3, + [151539] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3409), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4079), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3168), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [151572] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym_LF, + ACTIONS(8529), 1, + anon_sym_LT_LT_LT, + ACTIONS(8532), 1, + sym_file_descriptor, + ACTIONS(7835), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7538), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3145), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8526), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [151611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(3158), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3252), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [151642] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, + ACTIONS(1312), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, + ACTIONS(1314), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157190] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8992), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4916), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157238] = 3, + [151671] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8642), 6, + ACTIONS(8539), 1, + anon_sym_esac, + ACTIONS(8535), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8644), 14, + ACTIONS(8537), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191019,77 +184379,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157266] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8996), 1, - anon_sym_RBRACE3, - STATE(3324), 1, - aux_sym_expansion_repeat1, - STATE(4478), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8994), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157314] = 3, + [151702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8798), 6, - anon_sym_LPAREN, + ACTIONS(1320), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8800), 14, - sym_extglob_pattern, + ACTIONS(1322), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157342] = 3, + [151731] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8624), 6, + ACTIONS(8545), 1, + anon_sym_esac, + ACTIONS(8541), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8626), 14, + ACTIONS(8543), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191104,17 +184432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157370] = 3, + [151762] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8550), 6, + ACTIONS(8545), 1, + anon_sym_esac, + ACTIONS(8541), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8552), 14, + ACTIONS(8543), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191129,262 +184459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157398] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9000), 1, - anon_sym_RBRACE3, - STATE(3315), 1, - aux_sym_expansion_repeat1, - STATE(4914), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8998), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157446] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9002), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4891), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157494] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9004), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4475), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157542] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9006), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4424), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157590] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9010), 1, - anon_sym_RBRACE3, - STATE(3323), 1, - aux_sym_expansion_repeat1, - STATE(4458), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9008), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157638] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9012), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4454), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157686] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9016), 1, - anon_sym_RBRACE3, - STATE(3326), 1, - aux_sym_expansion_repeat1, - STATE(4440), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9014), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157734] = 3, + [151793] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8934), 6, + ACTIONS(8506), 1, + anon_sym_esac, + ACTIONS(8502), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8936), 14, + ACTIONS(8504), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191399,54 +184486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [157762] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9018), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4406), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157810] = 6, + [151824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(7560), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(7562), 1, sym__concat, - STATE(3436), 1, + STATE(3136), 1, aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, + ACTIONS(3743), 3, sym_file_descriptor, + sym_variable_name, anon_sym_LF, - ACTIONS(7879), 15, + ACTIONS(3741), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -191462,178 +184515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [157844] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9022), 1, - anon_sym_RBRACE3, - STATE(3329), 1, - aux_sym_expansion_repeat1, - STATE(4417), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9020), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157892] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8820), 1, - aux_sym_concatenation_token1, - ACTIONS(9024), 1, - sym__concat, - STATE(3286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1254), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157926] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9026), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4418), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157974] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8820), 1, - aux_sym_concatenation_token1, - ACTIONS(9028), 1, - sym__concat, - STATE(3286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1248), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [158008] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9032), 1, - anon_sym_RBRACE3, - STATE(3333), 1, - aux_sym_expansion_repeat1, - STATE(4430), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9030), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158056] = 3, + [151859] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8988), 6, + ACTIONS(8551), 1, + anon_sym_esac, + ACTIONS(8547), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8990), 14, + ACTIONS(8549), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191648,309 +184542,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158084] = 3, + [151890] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9034), 6, - anon_sym_LPAREN, + ACTIONS(1292), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(9036), 14, - sym_extglob_pattern, + ACTIONS(1294), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158112] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9040), 1, - anon_sym_RBRACE3, - STATE(3340), 1, - aux_sym_expansion_repeat1, - STATE(4875), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9038), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158160] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9044), 1, - anon_sym_RBRACE3, - STATE(3322), 1, - aux_sym_expansion_repeat1, - STATE(4877), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9042), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158208] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9046), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4868), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158256] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9048), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4432), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158304] = 13, - ACTIONS(3), 1, + [151919] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9052), 1, - anon_sym_RBRACE3, - STATE(3341), 1, - aux_sym_expansion_repeat1, - STATE(4441), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(1288), 6, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9050), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158352] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, anon_sym_BQUOTE, - ACTIONS(8883), 1, + sym_word, + ACTIONS(1290), 15, + sym__concat, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9056), 1, - anon_sym_RBRACE3, - STATE(3350), 1, - aux_sym_expansion_repeat1, - STATE(4452), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9054), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158400] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [151948] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9058), 6, - anon_sym_LPAREN, + ACTIONS(1316), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(9060), 14, - sym_extglob_pattern, + ACTIONS(1318), 15, + sym__concat, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158428] = 10, + [151977] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LT_LT_LT, + ACTIONS(7536), 1, + anon_sym_LF, + ACTIONS(8524), 1, + sym_file_descriptor, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(7534), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3145), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8520), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [152016] = 12, ACTIONS(63), 1, sym_comment, - ACTIONS(7812), 1, + ACTIONS(141), 1, + anon_sym_RBRACK, + ACTIONS(4212), 1, anon_sym_PIPE, - ACTIONS(9062), 1, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(4252), 1, anon_sym_LT_LT, - ACTIONS(9068), 1, + ACTIONS(4254), 1, anon_sym_LT_LT_DASH, - ACTIONS(9070), 1, + ACTIONS(4256), 1, anon_sym_LT_LT_LT, - ACTIONS(9072), 1, + ACTIONS(8439), 1, sym_file_descriptor, - ACTIONS(7814), 3, + ACTIONS(4250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9066), 3, + ACTIONS(8437), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(3451), 4, + STATE(3109), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9064), 5, + ACTIONS(8435), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [158470] = 3, + [152063] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8550), 6, + ACTIONS(8551), 1, + anon_sym_esac, + ACTIONS(8547), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8552), 14, + ACTIONS(8549), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191965,300 +184713,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158498] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9074), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4445), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158546] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9078), 1, - anon_sym_RBRACE3, - STATE(3347), 1, - aux_sym_expansion_repeat1, - STATE(4451), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9076), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158594] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9082), 1, - anon_sym_RBRACE3, - STATE(3356), 1, - aux_sym_expansion_repeat1, - STATE(4862), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9080), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158642] = 13, - ACTIONS(3), 1, + [152094] = 12, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9084), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4565), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158690] = 13, - ACTIONS(3), 1, + ACTIONS(129), 1, + anon_sym_RBRACK, + ACTIONS(4212), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(4252), 1, + anon_sym_LT_LT, + ACTIONS(4254), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4256), 1, + anon_sym_LT_LT_LT, + ACTIONS(8439), 1, + sym_file_descriptor, + ACTIONS(4250), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8437), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3109), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8435), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [152141] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9086), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4455), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8553), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158738] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8555), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9088), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4904), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158786] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152169] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9090), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4635), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8447), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158834] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8449), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9094), 1, - anon_sym_RBRACE3, - STATE(3351), 1, - aux_sym_expansion_repeat1, - STATE(4463), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9092), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158882] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152197] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9096), 1, + ACTIONS(8557), 1, sym__special_character, - STATE(3432), 1, + STATE(3164), 1, aux_sym__literal_repeat1, - ACTIONS(3989), 5, + ACTIONS(1364), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3991), 13, + ACTIONS(1369), 13, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, @@ -192272,218 +184825,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [158914] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9098), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4855), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158962] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9100), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4469), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159010] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9104), 1, - anon_sym_RBRACE3, - STATE(3357), 1, - aux_sym_expansion_repeat1, - STATE(4474), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9102), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159058] = 13, - ACTIONS(3), 1, + [152229] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9106), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4482), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159106] = 4, + STATE(3183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7566), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7568), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152261] = 5, ACTIONS(63), 1, sym_comment, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 5, + STATE(3180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7578), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3306), 11, + ACTIONS(7580), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [159136] = 13, + [152293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9110), 1, - anon_sym_RBRACE3, - STATE(3359), 1, - aux_sym_expansion_repeat1, - STATE(4722), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9108), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159184] = 3, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7580), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7578), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7568), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7566), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152361] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8841), 6, + ACTIONS(8560), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8843), 14, + ACTIONS(8562), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192498,69 +184960,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159212] = 3, + [152389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7609), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(7783), 1, + sym__concat, + STATE(3199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7603), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(7601), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152457] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159240] = 5, + ACTIONS(8564), 1, + sym_variable_name, + STATE(4130), 1, + sym_subscript, + STATE(3172), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7507), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7509), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152491] = 5, ACTIONS(63), 1, sym_comment, - STATE(3495), 1, + STATE(3180), 1, aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, + ACTIONS(8453), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1242), 5, + ACTIONS(7609), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 12, + ACTIONS(7611), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [159272] = 3, + [152523] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9034), 6, + ACTIONS(8567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9036), 14, + ACTIONS(8569), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192575,246 +185096,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159300] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9116), 1, - anon_sym_RBRACE3, - STATE(3352), 1, - aux_sym_expansion_repeat1, - STATE(4907), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9114), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159348] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9118), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4504), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159396] = 6, + [152551] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 4, + STATE(3183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7601), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - STATE(3345), 4, + ACTIONS(7603), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152583] = 4, + ACTIONS(63), 1, + sym_comment, + STATE(3231), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3477), 10, + ACTIONS(3252), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3254), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [159430] = 13, - ACTIONS(3), 1, + [152613] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + ACTIONS(8571), 1, sym_variable_name, - ACTIONS(9122), 1, - anon_sym_RBRACE3, - STATE(3376), 1, - aux_sym_expansion_repeat1, - STATE(4526), 1, - sym__expansion_body, - STATE(605), 2, + STATE(4130), 1, sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9120), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159478] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3430), 1, + STATE(3172), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(7491), 5, anon_sym_LT_LT, - ACTIONS(3760), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(8079), 1, + anon_sym_AMP_GT, + ACTIONS(7493), 11, sym_file_descriptor, - ACTIONS(9128), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(9130), 1, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - ACTIONS(9132), 1, anon_sym_LT_LT_LT, - ACTIONS(9124), 2, + [152647] = 11, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4212), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(4252), 1, + anon_sym_LT_LT, + ACTIONS(4254), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4256), 1, + anon_sym_LT_LT_LT, + ACTIONS(8439), 1, + sym_file_descriptor, + ACTIONS(4250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8075), 3, + ACTIONS(8437), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2953), 4, + STATE(3109), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9126), 5, + ACTIONS(8435), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [159522] = 6, - ACTIONS(3), 1, + [152691] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(7908), 1, + ACTIONS(8423), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8425), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152719] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8453), 1, aux_sym_concatenation_token1, - ACTIONS(7910), 1, + ACTIONS(8573), 1, sym__concat, - STATE(3433), 1, + STATE(3188), 1, aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1276), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + ACTIONS(1278), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [159556] = 13, - ACTIONS(3), 1, + [152753] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8567), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8569), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9136), 1, - anon_sym_RBRACE3, - STATE(3367), 1, - aux_sym_expansion_repeat1, - STATE(4512), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9134), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159604] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152781] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9138), 6, + ACTIONS(8575), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9140), 14, + ACTIONS(8577), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192829,17 +185313,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159632] = 3, + [152809] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8453), 1, + aux_sym_concatenation_token1, + ACTIONS(8579), 1, + sym__concat, + STATE(3188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1284), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [152843] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8988), 6, + ACTIONS(8461), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8990), 14, + ACTIONS(8463), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192854,157 +185366,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159660] = 13, - ACTIONS(3), 1, + [152871] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9142), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4517), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8581), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159708] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8583), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9144), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4548), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159756] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152899] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9148), 1, - anon_sym_RBRACE3, - STATE(3390), 1, - aux_sym_expansion_repeat1, - STATE(4845), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8581), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9146), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159804] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9152), 1, - anon_sym_RBRACE3, - STATE(3375), 1, - aux_sym_expansion_repeat1, - STATE(4499), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9150), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159852] = 3, + sym_word, + ACTIONS(8583), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [152927] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9154), 6, + ACTIONS(8461), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9156), 14, + ACTIONS(8463), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193019,118 +185441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [159880] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9158), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4861), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9160), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4537), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159976] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7875), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7877), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160008] = 5, + [152955] = 5, ACTIONS(63), 1, sym_comment, - STATE(3334), 1, + STATE(3188), 1, aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, + ACTIONS(8585), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(7879), 5, + ACTIONS(1266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7881), 12, + ACTIONS(1271), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193143,52 +185468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [160040] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9164), 1, - anon_sym_RBRACE3, - STATE(3381), 1, - aux_sym_expansion_repeat1, - STATE(4547), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9162), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160088] = 3, + [152987] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9166), 6, + ACTIONS(8581), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9168), 14, + ACTIONS(8583), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193203,45 +185493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160116] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160150] = 3, + [153015] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9138), 6, + ACTIONS(8423), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9140), 14, + ACTIONS(8425), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193256,17 +185518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160178] = 3, + [153043] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9154), 6, + ACTIONS(8581), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9156), 14, + ACTIONS(8583), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193281,87 +185543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160206] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9170), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4790), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160254] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9172), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4835), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160302] = 3, + [153071] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8984), 6, + ACTIONS(8429), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8986), 14, + ACTIONS(8431), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193376,157 +185568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160330] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9174), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4554), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160378] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9178), 1, - anon_sym_RBRACE3, - STATE(3389), 1, - aux_sym_expansion_repeat1, - STATE(4730), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9176), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160426] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9182), 1, - anon_sym_RBRACE3, - STATE(3392), 1, - aux_sym_expansion_repeat1, - STATE(4562), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9180), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160474] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9186), 1, - anon_sym_RBRACE3, - STATE(3402), 1, - aux_sym_expansion_repeat1, - STATE(4577), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9184), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160522] = 3, + [153099] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8984), 6, + ACTIONS(8547), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8986), 14, + ACTIONS(8549), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193541,17 +185593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160550] = 3, + [153127] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9188), 6, + ACTIONS(8588), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9190), 14, + ACTIONS(8590), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193566,17 +185618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160578] = 3, + [153155] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8602), 6, + ACTIONS(8547), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8604), 14, + ACTIONS(8549), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193591,17 +185643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160606] = 3, + [153183] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8934), 6, + ACTIONS(8588), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8936), 14, + ACTIONS(8590), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193616,17 +185668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160634] = 3, + [153211] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9154), 6, + ACTIONS(8502), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9156), 14, + ACTIONS(8504), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193641,122 +185693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160662] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9192), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4569), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160710] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9194), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4611), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160758] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9198), 1, - anon_sym_RBRACE3, - STATE(3414), 1, - aux_sym_expansion_repeat1, - STATE(4832), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9196), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160806] = 3, + [153239] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8788), 6, + ACTIONS(8592), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8790), 14, + ACTIONS(8594), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193771,80 +185718,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160834] = 13, + [153267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9202), 1, - anon_sym_RBRACE3, - STATE(3401), 1, - aux_sym_expansion_repeat1, - STATE(4587), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9200), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160882] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9204), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3406), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7789), 11, + ACTIONS(7781), 1, + aux_sym_concatenation_token1, + ACTIONS(8596), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, sym_file_descriptor, + anon_sym_LF, + ACTIONS(1282), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [160916] = 3, + [153301] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8524), 6, + ACTIONS(8592), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8526), 14, + ACTIONS(8594), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193859,17 +185771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160944] = 3, + [153329] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9154), 6, + ACTIONS(8411), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9156), 14, + ACTIONS(8413), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193884,209 +185796,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [160972] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9207), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4599), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161020] = 3, + [153357] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(8588), 6, anon_sym_LPAREN, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4372), 13, + ACTIONS(8590), 14, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161048] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9211), 1, - anon_sym_RBRACE3, - STATE(3409), 1, - aux_sym_expansion_repeat1, - STATE(4610), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9209), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161096] = 5, + [153385] = 3, ACTIONS(63), 1, sym_comment, - STATE(3412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9213), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161128] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9218), 1, - anon_sym_RBRACE3, - STATE(3380), 1, - aux_sym_expansion_repeat1, - STATE(4841), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8588), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9216), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161176] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8590), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9220), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4825), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161224] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153413] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8566), 6, + ACTIONS(8575), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8568), 14, + ACTIONS(8577), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194101,44 +185871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161252] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7902), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7904), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161284] = 3, + [153441] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9138), 6, + ACTIONS(8541), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9140), 14, + ACTIONS(8543), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194153,271 +185896,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161312] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3334), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7885), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7887), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161344] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9222), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4615), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161392] = 3, + [153469] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4374), 7, + ACTIONS(8598), 6, anon_sym_LPAREN, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4376), 13, + ACTIONS(8600), 14, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161420] = 13, - ACTIONS(3), 1, + [153497] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9226), 1, - anon_sym_RBRACE3, - STATE(3427), 1, - aux_sym_expansion_repeat1, - STATE(4636), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8405), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9224), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161468] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8407), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9230), 1, - anon_sym_RBRACE3, - STATE(3425), 1, - aux_sym_expansion_repeat1, - STATE(4821), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9228), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161516] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153525] = 3, ACTIONS(63), 1, sym_comment, - STATE(3465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3843), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161548] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9232), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4426), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8602), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161596] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8604), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9234), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4815), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161644] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153553] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8889), 6, + ACTIONS(8575), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8891), 14, + ACTIONS(8577), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194432,87 +185996,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161672] = 13, - ACTIONS(3), 1, + [153581] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9236), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4679), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8567), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161720] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8569), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9238), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4641), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161768] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153609] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 6, + ACTIONS(8592), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8664), 14, + ACTIONS(8594), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194527,86 +186046,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161796] = 5, - ACTIONS(63), 1, + [153637] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3443), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, + ACTIONS(7781), 1, aux_sym_concatenation_token1, - ACTIONS(3837), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3839), 12, + ACTIONS(8606), 1, + sym__concat, + STATE(2635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, - sym_variable_name, + anon_sym_LF, + ACTIONS(1276), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [161828] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9242), 1, - anon_sym_RBRACE3, - STATE(3428), 1, - aux_sym_expansion_repeat1, - STATE(4661), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9240), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161876] = 5, + [153671] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9244), 1, - sym__special_character, - STATE(3432), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, + ACTIONS(8592), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1357), 13, + ACTIONS(8594), 14, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194616,143 +186099,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [161908] = 6, - ACTIONS(3), 1, + [153699] = 11, + ACTIONS(63), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(9247), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(3469), 1, + anon_sym_LT_LT, + ACTIONS(3787), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 15, + ACTIONS(8612), 1, + anon_sym_PIPE_AMP, + ACTIONS(8614), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8616), 1, + anon_sym_LT_LT_LT, + ACTIONS(8608), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7958), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(2836), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8610), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161942] = 13, - ACTIONS(3), 1, + [153743] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8618), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8620), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9251), 1, - anon_sym_RBRACE3, - STATE(3439), 1, - aux_sym_expansion_repeat1, - STATE(4809), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153771] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8541), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9249), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161990] = 13, - ACTIONS(3), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(8543), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153799] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8575), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8577), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9253), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4671), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162038] = 6, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153827] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(9255), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_PIPE_AMP, + ACTIONS(3168), 4, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(3231), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3409), 10, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [162072] = 3, + [153861] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9034), 6, + ACTIONS(8535), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9036), 14, + ACTIONS(8537), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194767,122 +186260,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162100] = 13, - ACTIONS(3), 1, + [153889] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9259), 1, - anon_sym_RBRACE3, - STATE(3435), 1, - aux_sym_expansion_repeat1, - STATE(4681), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8514), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9257), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162148] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8516), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9261), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4802), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162196] = 13, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153917] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8622), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8624), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9265), 1, - anon_sym_RBRACE3, - STATE(3424), 1, - aux_sym_expansion_repeat1, - STATE(4488), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9263), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162244] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [153945] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8699), 6, + ACTIONS(8567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8701), 14, + ACTIONS(8569), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194897,17 +186335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162272] = 3, + [153973] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8602), 6, + ACTIONS(8514), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8604), 14, + ACTIONS(8516), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194922,24 +186360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162300] = 6, + [154001] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8748), 1, - aux_sym_concatenation_token1, - ACTIONS(9267), 1, - sym__concat, - STATE(3412), 1, + STATE(3280), 1, aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, + ACTIONS(8626), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1262), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1254), 12, + ACTIONS(1264), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -194950,122 +186386,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [162334] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9269), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4820), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162382] = 13, - ACTIONS(3), 1, + sym__special_character, + [154033] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9271), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4685), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8553), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162430] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8555), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9275), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4699), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9273), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162478] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154061] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9034), 6, + ACTIONS(8553), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9036), 14, + ACTIONS(8555), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195080,17 +186437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162506] = 3, + [154089] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9277), 6, + ACTIONS(8628), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9279), 14, + ACTIONS(8630), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195105,17 +186462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162534] = 3, + [154117] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8984), 6, + ACTIONS(8628), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8986), 14, + ACTIONS(8630), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195130,189 +186487,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162562] = 13, - ACTIONS(3), 1, + [154145] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8508), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8510), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9283), 1, - anon_sym_RBRACE3, - STATE(3445), 1, - aux_sym_expansion_repeat1, - STATE(4696), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9281), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162610] = 10, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154173] = 10, ACTIONS(63), 1, sym_comment, - ACTIONS(7794), 1, + ACTIONS(7538), 1, anon_sym_PIPE, - ACTIONS(9285), 1, + ACTIONS(8632), 1, anon_sym_LT_LT, - ACTIONS(9294), 1, + ACTIONS(8641), 1, anon_sym_LT_LT_DASH, - ACTIONS(9297), 1, + ACTIONS(8644), 1, anon_sym_LT_LT_LT, - ACTIONS(9300), 1, + ACTIONS(8647), 1, sym_file_descriptor, - ACTIONS(7802), 3, + ACTIONS(7546), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(9291), 3, + ACTIONS(8638), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(3451), 4, + STATE(3230), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(9288), 5, + ACTIONS(8635), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [162652] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9303), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4739), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162700] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9307), 1, - anon_sym_RBRACE3, - STATE(3466), 1, - aux_sym_expansion_repeat1, - STATE(4797), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9305), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162748] = 13, - ACTIONS(3), 1, + [154215] = 10, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9309), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4712), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162796] = 3, + ACTIONS(7534), 1, + anon_sym_PIPE, + ACTIONS(8650), 1, + anon_sym_LT_LT, + ACTIONS(8656), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8658), 1, + anon_sym_LT_LT_LT, + ACTIONS(8660), 1, + sym_file_descriptor, + ACTIONS(7536), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(8654), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3230), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8652), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [154257] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8889), 6, + ACTIONS(8502), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8891), 14, + ACTIONS(8504), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195327,52 +186601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162824] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9313), 1, - anon_sym_RBRACE3, - STATE(3454), 1, - aux_sym_expansion_repeat1, - STATE(4723), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9311), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162872] = 3, + [154285] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8917), 6, + ACTIONS(8487), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8919), 14, + ACTIONS(8489), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195387,17 +186626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162900] = 3, + [154313] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8498), 6, + ACTIONS(8662), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8500), 14, + ACTIONS(8664), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195412,52 +186651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [162928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9315), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4732), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162976] = 3, + [154341] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8498), 6, + ACTIONS(8487), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8500), 14, + ACTIONS(8489), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195472,17 +186676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163004] = 3, + [154369] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8680), 6, + ACTIONS(8455), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8682), 14, + ACTIONS(8457), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195497,52 +186701,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163032] = 13, - ACTIONS(3), 1, + [154397] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + STATE(3247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8500), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3741), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3743), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(9319), 1, - anon_sym_RBRACE3, - STATE(3459), 1, - aux_sym_expansion_repeat1, - STATE(4741), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9317), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163080] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154429] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8889), 6, + ACTIONS(8666), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8891), 14, + ACTIONS(8668), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195557,17 +186753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163108] = 3, + [154457] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8917), 6, + ACTIONS(8670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8919), 14, + ACTIONS(8672), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195582,22 +186778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163136] = 6, + [154485] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8748), 1, - aux_sym_concatenation_token1, - ACTIONS(9321), 1, - sym__concat, - STATE(3412), 1, + STATE(3243), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, + ACTIONS(8500), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3745), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1248), 12, + ACTIONS(3747), 12, sym_file_descriptor, sym_variable_name, anon_sym_AMP_AMP, @@ -195610,87 +186805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [163170] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9323), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4792), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9327), 1, - anon_sym_RBRACE3, - STATE(3444), 1, - aux_sym_expansion_repeat1, - STATE(4798), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9325), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163266] = 3, + [154517] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8596), 6, + ACTIONS(8553), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8598), 14, + ACTIONS(8555), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195705,147 +186830,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163294] = 13, - ACTIONS(3), 1, + [154545] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9329), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4747), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8674), 1, + sym__special_character, + STATE(3164), 1, + aux_sym__literal_repeat1, + ACTIONS(3886), 5, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163342] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(3888), 13, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154577] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8500), 1, + aux_sym_concatenation_token1, + ACTIONS(8676), 1, + sym__concat, + STATE(3250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1284), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(9333), 1, - anon_sym_RBRACE3, - STATE(3476), 1, - aux_sym_expansion_repeat1, - STATE(4757), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9331), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163390] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154611] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 7, + ACTIONS(8670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1244), 13, + ACTIONS(8672), 14, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163418] = 13, - ACTIONS(3), 1, + [154639] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8628), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8630), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9337), 1, - anon_sym_RBRACE3, - STATE(3477), 1, - aux_sym_expansion_repeat1, - STATE(4788), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9335), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163466] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154667] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9138), 6, + ACTIONS(8670), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9140), 14, + ACTIONS(8672), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195860,42 +186960,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163494] = 13, - ACTIONS(3), 1, + [154695] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + ACTIONS(8500), 1, + aux_sym_concatenation_token1, + ACTIONS(8678), 1, + sym__concat, + STATE(3250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1278), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(9341), 1, - anon_sym_RBRACE3, - STATE(3469), 1, - aux_sym_expansion_repeat1, - STATE(4756), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9339), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163542] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154729] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(8680), 6, @@ -195920,87 +187013,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163570] = 13, - ACTIONS(3), 1, + [154757] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9343), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4761), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, + ACTIONS(8417), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163618] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8419), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154785] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8684), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1271), 12, + sym_file_descriptor, sym_variable_name, - ACTIONS(9345), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4780), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163666] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154817] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 6, + ACTIONS(8429), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8664), 14, + ACTIONS(8431), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196015,52 +187090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163694] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9347), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4762), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163742] = 3, + [154845] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8596), 6, + ACTIONS(8628), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(8598), 14, + ACTIONS(8630), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196075,52 +187115,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163770] = 13, - ACTIONS(3), 1, + [154873] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(8670), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, + sym_word, + ACTIONS(8672), 14, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(8883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9351), 1, - anon_sym_RBRACE3, - STATE(3479), 1, - aux_sym_expansion_repeat1, - STATE(4774), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9349), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163818] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [154901] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9353), 6, + ACTIONS(8441), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(9355), 14, + ACTIONS(8443), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196135,16 +187165,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_test_operator, - [163846] = 3, + [154929] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 5, + STATE(3293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8626), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7601), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1320), 14, + ACTIONS(7603), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [154960] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1294), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -196159,16 +187215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [163873] = 3, + [154987] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1350), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1332), 14, + ACTIONS(1352), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -196183,21 +187239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [163900] = 5, + [155014] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9357), 1, - sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(7885), 5, + ACTIONS(1304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7887), 12, + ACTIONS(1306), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196209,16 +187262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [163931] = 3, + aux_sym_concatenation_token1, + [155041] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 14, + ACTIONS(1314), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -196233,70 +187287,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [163958] = 6, - ACTIONS(3), 1, + [155068] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(9359), 1, + ACTIONS(1354), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1356), 14, sym_file_descriptor, - STATE(3488), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7928), 7, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, + aux_sym_concatenation_token1, + [155095] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1338), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(1340), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [163991] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [155122] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(9364), 1, + ACTIONS(1316), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1318), 14, sym_file_descriptor, - STATE(3488), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8054), 7, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [155149] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1296), 5, anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1298), 14, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(9361), 8, - anon_sym_GT_GT, + aux_sym_concatenation_token1, + [155176] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1292), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(1294), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [164024] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [155203] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1328), 14, + ACTIONS(1271), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -196311,50 +187431,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164051] = 6, + [155230] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(9112), 1, - aux_sym_concatenation_token1, - ACTIONS(9367), 1, - sym__concat, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, + ACTIONS(8687), 1, + sym__special_character, + STATE(3291), 1, + aux_sym__literal_repeat1, + ACTIONS(7578), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1254), 11, + ACTIONS(7580), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164084] = 3, + [155261] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 5, + ACTIONS(1266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1278), 14, + ACTIONS(1271), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -196362,49 +187481,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164111] = 5, + [155288] = 3, ACTIONS(63), 1, sym_comment, - STATE(3490), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7875), 5, + ACTIONS(1350), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7877), 11, + ACTIONS(1352), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164142] = 3, + aux_sym_concatenation_token1, + [155315] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1316), 14, + ACTIONS(1336), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -196412,119 +187529,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164169] = 5, + [155342] = 3, ACTIONS(63), 1, sym_comment, - STATE(3495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7879), 5, + ACTIONS(1334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7881), 11, + ACTIONS(1336), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164200] = 6, + aux_sym_concatenation_token1, + [155369] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(9112), 1, - aux_sym_concatenation_token1, - ACTIONS(9369), 1, - sym__concat, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, + ACTIONS(8695), 1, + sym_file_descriptor, + ACTIONS(7911), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3271), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8692), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1248), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(8689), 5, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164233] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1320), 14, - sym_file_descriptor, - sym__concat, + ACTIONS(7916), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164260] = 5, + [155404] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9371), 1, - sym__special_character, - STATE(3497), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, + ACTIONS(1300), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1357), 12, + ACTIONS(1302), 14, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164291] = 3, + aux_sym_concatenation_token1, + [155431] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 5, + ACTIONS(1304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1282), 14, + ACTIONS(1306), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -196539,72 +187629,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164318] = 5, + [155458] = 7, ACTIONS(63), 1, sym_comment, - STATE(3495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7885), 5, + ACTIONS(8698), 1, + sym_file_descriptor, + ACTIONS(7849), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3271), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8437), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7887), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(8435), 5, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164349] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1296), 14, - sym_file_descriptor, - sym__concat, + ACTIONS(7851), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164376] = 5, + [155493] = 3, ACTIONS(63), 1, sym_comment, - STATE(3490), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7902), 5, + ACTIONS(1308), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7904), 11, + ACTIONS(1310), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196615,66 +187680,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164407] = 5, + aux_sym_concatenation_token1, + [155520] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9374), 1, - sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, + ACTIONS(1358), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1357), 12, + ACTIONS(1360), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164438] = 3, - ACTIONS(63), 1, + aux_sym_concatenation_token1, + [155547] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(8702), 1, + anon_sym_LPAREN, + ACTIONS(8704), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 14, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(8706), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8710), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8712), 1, + anon_sym_RBRACE3, + ACTIONS(8714), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8716), 1, anon_sym_BQUOTE, + ACTIONS(8718), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [164465] = 3, + ACTIONS(8720), 1, + sym_variable_name, + ACTIONS(8700), 2, + sym_raw_string, + sym_word, + ACTIONS(8708), 2, + sym_ansi_c_string, + aux_sym__expansion_expression_token1, + STATE(3924), 3, + sym_string, + sym_simple_expansion, + sym_expansion, + STATE(4428), 3, + sym_array, + sym__concatenation_in_expansion, + sym_command_substitution, + [155596] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1346), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1312), 14, + ACTIONS(1348), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -196689,16 +187764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164492] = 3, + [155623] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1346), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1263), 14, + ACTIONS(1348), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -196713,68 +187788,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164519] = 3, + [155650] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(8626), 1, + aux_sym_concatenation_token1, + ACTIONS(8722), 1, + sym__concat, + STATE(3282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1276), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1270), 14, + ACTIONS(1278), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164546] = 7, + [155683] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9377), 1, - sym_file_descriptor, - ACTIONS(7928), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3533), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7930), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164581] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 5, + ACTIONS(1288), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1263), 14, + ACTIONS(1290), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -196789,19 +187839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164608] = 3, + [155710] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 5, + STATE(3282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8724), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1328), 14, + ACTIONS(1271), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196812,23 +187865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164635] = 5, + [155741] = 3, ACTIONS(63), 1, sym_comment, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9379), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 5, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1263), 11, + ACTIONS(1314), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196839,49 +187888,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164666] = 5, + aux_sym_concatenation_token1, + [155768] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9382), 1, - sym__special_character, - STATE(3497), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 5, + ACTIONS(1358), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3843), 12, + ACTIONS(1360), 14, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164697] = 3, + aux_sym_concatenation_token1, + [155795] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1280), 5, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1282), 14, + ACTIONS(1314), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -196889,23 +187937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164724] = 3, + [155822] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1320), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1316), 14, + ACTIONS(1322), 14, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -196913,19 +187961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164751] = 3, + [155849] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 5, + STATE(3280), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8626), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7578), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 14, + ACTIONS(7580), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196936,20 +187987,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164778] = 3, + [155880] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 5, + STATE(3293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8626), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(7566), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1274), 14, + ACTIONS(7568), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196960,22 +188013,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164805] = 5, + [155911] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9357), 1, + ACTIONS(1262), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1264), 14, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(7879), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [155938] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7881), 12, + ACTIONS(1314), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -196987,18 +188060,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [164836] = 3, + aux_sym_concatenation_token1, + [155965] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(8727), 1, + sym__special_character, + STATE(3291), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1340), 14, + ACTIONS(1369), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -197010,24 +188087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164863] = 3, + [155996] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1300), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1344), 14, + ACTIONS(1302), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197035,40 +188111,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164890] = 3, + [156023] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(8626), 1, + aux_sym_concatenation_token1, + ACTIONS(8730), 1, + sym__concat, + STATE(3282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 14, + ACTIONS(1284), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164917] = 3, + [156056] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1288), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1296), 14, + ACTIONS(1290), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -197083,16 +188162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164944] = 3, + [156083] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 14, + ACTIONS(1332), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -197107,16 +188186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164971] = 3, + [156110] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 5, + ACTIONS(1354), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1274), 14, + ACTIONS(1356), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197131,64 +188210,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [164998] = 3, + [156137] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(8732), 1, + sym__special_character, + STATE(3308), 1, + aux_sym__literal_repeat1, + ACTIONS(3741), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1324), 14, + ACTIONS(3743), 12, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165025] = 3, + [156168] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(8687), 1, + sym__special_character, + STATE(3291), 1, + aux_sym__literal_repeat1, + ACTIONS(7609), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 14, + ACTIONS(7611), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165052] = 3, + [156199] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1320), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 14, + ACTIONS(1322), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -197203,23 +188286,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165079] = 3, + [156226] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1308), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1312), 14, + ACTIONS(1310), 14, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -197227,43 +188310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165106] = 3, + [156253] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 14, - sym_file_descriptor, + STATE(3280), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8626), 2, sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165133] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, + ACTIONS(7609), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1270), 14, + ACTIONS(7611), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -197274,17 +188336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165160] = 3, + [156284] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(1338), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1270), 14, + ACTIONS(1340), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197299,140 +188360,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165187] = 3, - ACTIONS(63), 1, + [156311] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1344), 14, + ACTIONS(7851), 1, + anon_sym_LF, + ACTIONS(8734), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + STATE(3304), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7849), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165214] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 5, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1324), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165241] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 5, - anon_sym_LT_LT, + ACTIONS(8520), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165268] = 7, - ACTIONS(63), 1, + [156344] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9390), 1, + ACTIONS(7916), 1, + anon_sym_LF, + ACTIONS(8739), 1, sym_file_descriptor, - ACTIONS(8054), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3533), 2, + STATE(3304), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(9387), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9384), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8059), 6, + ACTIONS(7911), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [165303] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 5, - anon_sym_LT_LT, + ACTIONS(8736), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165330] = 3, + [156377] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 14, + ACTIONS(1332), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197447,16 +188438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165357] = 3, + [156404] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 5, + ACTIONS(1316), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1278), 14, + ACTIONS(1318), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -197471,16 +188462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165384] = 3, + [156431] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1296), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1332), 14, + ACTIONS(1298), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197495,43 +188486,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165411] = 3, + [156458] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(8742), 1, + sym__special_character, + STATE(3308), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 14, + ACTIONS(1369), 12, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165438] = 3, + [156489] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1296), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1340), 14, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -197543,16 +188535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165465] = 3, + [156515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1284), 5, + ACTIONS(1346), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1286), 13, + ACTIONS(1348), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197566,16 +188558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165491] = 3, + [156541] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1308), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1328), 13, + ACTIONS(1310), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197589,16 +188581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165517] = 3, + [156567] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1292), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1316), 13, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197612,16 +188604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165543] = 3, + [156593] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1300), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1344), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197635,113 +188627,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165569] = 3, - ACTIONS(63), 1, + [156619] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1282), 13, + ACTIONS(8095), 1, + anon_sym_LF, + ACTIONS(8734), 1, sym_file_descriptor, - sym__concat, + STATE(2978), 1, + sym_file_redirect, + ACTIONS(8093), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165595] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 5, - anon_sym_LT_LT, + ACTIONS(8520), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1304), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165621] = 5, + [156651] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(9393), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(7885), 5, + ACTIONS(8745), 1, + sym_file_descriptor, + ACTIONS(7849), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3325), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8654), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7887), 11, - sym_file_descriptor, + ACTIONS(7851), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8652), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - anon_sym_DQUOTE, - STATE(3980), 1, - sym_string, - ACTIONS(9399), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1215), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - ACTIONS(9395), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [165683] = 3, + [156685] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1354), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1300), 13, + ACTIONS(1356), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197755,16 +188703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165709] = 3, + [156711] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1316), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1296), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197778,16 +188726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165735] = 3, + [156737] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1320), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1348), 13, + ACTIONS(1322), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197801,21 +188749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165761] = 5, + [156763] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9401), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, + ACTIONS(1334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1357), 11, + ACTIONS(1336), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -197826,7 +188771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [165791] = 3, + aux_sym_concatenation_token1, + [156789] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(1338), 5, @@ -197849,65 +188795,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165817] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 6, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1244), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165843] = 6, + [156815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, + ACTIONS(8749), 1, anon_sym_DQUOTE, - STATE(3980), 1, + STATE(3748), 1, sym_string, - ACTIONS(9399), 2, + ACTIONS(8751), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1205), 5, + ACTIONS(1225), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_LF, anon_sym_AMP, - ACTIONS(9395), 9, + ACTIONS(8747), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [165875] = 3, + [156847] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1288), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1320), 13, + ACTIONS(1290), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197921,16 +188844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165901] = 3, + [156873] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1312), 13, + ACTIONS(1332), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -197944,18 +188867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [165927] = 3, + [156899] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1276), 5, + ACTIONS(8753), 1, + sym__special_character, + STATE(3331), 1, + aux_sym__literal_repeat1, + ACTIONS(7578), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1278), 13, + ACTIONS(7580), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -197966,46 +188892,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165953] = 7, + [156929] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(9410), 1, + ACTIONS(8761), 1, sym_file_descriptor, - ACTIONS(8054), 2, + ACTIONS(7911), 2, anon_sym_LT_LT, anon_sym_PIPE, - STATE(3558), 2, + STATE(3325), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(9407), 3, + ACTIONS(8758), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8059), 5, + ACTIONS(7916), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(9404), 5, + ACTIONS(8755), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [165987] = 3, + [156963] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(8753), 1, + sym__special_character, + STATE(3331), 1, + aux_sym__literal_repeat1, + ACTIONS(7609), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 13, + ACTIONS(7611), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -198016,22 +188944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [166013] = 5, + [156993] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9393), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(7879), 5, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7881), 11, + ACTIONS(1314), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -198042,42 +188966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8133), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166075] = 3, + aux_sym_concatenation_token1, + [157019] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1358), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1336), 13, + ACTIONS(1360), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -198091,39 +188990,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [166101] = 3, - ACTIONS(63), 1, + [157045] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 13, + ACTIONS(8141), 1, + anon_sym_LF, + ACTIONS(8734), 1, sym_file_descriptor, - sym__concat, + STATE(3024), 1, + sym_file_redirect, + ACTIONS(8139), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8520), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166127] = 3, + [157077] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1312), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1324), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -198137,18 +189039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [166153] = 3, + [157103] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(8764), 1, + sym__special_character, + STATE(3331), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1263), 13, + ACTIONS(1369), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -198159,17 +189064,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166179] = 6, + [157133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, + ACTIONS(8749), 1, + anon_sym_DQUOTE, + STATE(3748), 1, + sym_string, + ACTIONS(8751), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_LF, - ACTIONS(9359), 1, + anon_sym_AMP, + ACTIONS(8747), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [157165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8058), 1, + anon_sym_LF, + ACTIONS(8734), 1, sym_file_descriptor, - STATE(3071), 1, + STATE(3023), 1, sym_file_redirect, - ACTIONS(8141), 7, + ACTIONS(8056), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -198177,7 +189107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(8713), 8, + ACTIONS(8520), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -198186,92 +189116,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166211] = 6, - ACTIONS(3), 1, + [157197] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8137), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1262), 5, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(1264), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166243] = 7, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [157223] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - ACTIONS(7928), 2, + ACTIONS(1350), 5, anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3558), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9066), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7930), 5, + ACTIONS(1352), 13, + sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166277] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [157249] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(1262), 6, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1270), 13, + sym__special_character, + ACTIONS(1264), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166303] = 3, + [157275] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 5, + ACTIONS(1304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1274), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -198285,16 +189208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [166329] = 3, + [157301] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1332), 13, + ACTIONS(1271), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -198308,176 +189231,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [166355] = 3, + [157327] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3837), 5, + ACTIONS(8745), 1, + sym_file_descriptor, + STATE(3396), 1, + sym_file_redirect, + ACTIONS(8093), 2, anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(8654), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3839), 12, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8095), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(8652), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [157360] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8745), 1, + sym_file_descriptor, + STATE(3375), 1, + sym_file_redirect, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(8654), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8141), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166380] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3573), 1, - aux_sym_expansion_repeat1, - ACTIONS(9415), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(9420), 4, - anon_sym_DOLLAR, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(9418), 9, - sym_variable_name, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [166409] = 3, + ACTIONS(8652), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [157393] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4370), 5, + ACTIONS(8248), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4372), 12, + ACTIONS(8246), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166434] = 3, + [157418] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8261), 5, + ACTIONS(4149), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8259), 12, + ACTIONS(4151), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166459] = 7, + [157443] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - STATE(3594), 1, - sym_file_redirect, - ACTIONS(8137), 2, + ACTIONS(8254), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(9066), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8139), 5, + ACTIONS(8256), 12, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166492] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [157468] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8281), 5, + ACTIONS(1262), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8283), 12, + ACTIONS(1264), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166517] = 3, + sym__special_character, + [157493] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4374), 5, + ACTIONS(7566), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4376), 12, + ACTIONS(7568), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166542] = 3, + [157518] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8287), 5, + ACTIONS(7601), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8289), 12, + ACTIONS(7603), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198490,17 +189415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166567] = 3, + [157543] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(3745), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 12, + ACTIONS(3747), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -198511,17 +189437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [166592] = 3, + [157568] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7875), 5, + ACTIONS(8231), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7877), 12, + ACTIONS(8229), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198534,42 +189459,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166617] = 7, + [157593] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - STATE(3618), 1, - sym_file_redirect, - ACTIONS(8141), 2, + ACTIONS(8270), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(9066), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8143), 5, + ACTIONS(8272), 12, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166650] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [157618] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8221), 5, + ACTIONS(8266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8223), 12, + ACTIONS(8268), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198582,16 +189503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166675] = 3, + [157643] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8277), 5, + ACTIONS(8262), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8279), 12, + ACTIONS(8264), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198604,86 +189525,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166700] = 3, + [157668] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8241), 5, + ACTIONS(4142), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8239), 12, + ACTIONS(4144), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166725] = 7, + [157693] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(9413), 1, + ACTIONS(8745), 1, sym_file_descriptor, - STATE(3622), 1, + STATE(3364), 1, sym_file_redirect, - ACTIONS(8133), 2, + ACTIONS(8056), 2, anon_sym_LT_LT, anon_sym_PIPE, - ACTIONS(9066), 3, + ACTIONS(8654), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8135), 5, + ACTIONS(8058), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(9064), 5, + ACTIONS(8652), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [166758] = 3, + [157726] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7902), 5, + ACTIONS(8300), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7904), 12, + ACTIONS(8298), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166783] = 3, + [157750] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8373), 5, + ACTIONS(8316), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8375), 11, + ACTIONS(8318), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198695,16 +189615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166807] = 3, + [157774] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8297), 5, + ACTIONS(8215), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8295), 11, + ACTIONS(8213), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198716,16 +189636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166831] = 3, + [157798] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8363), 5, + ACTIONS(8280), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8361), 11, + ACTIONS(8278), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198737,16 +189657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166855] = 3, + [157822] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4390), 5, + ACTIONS(8284), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4392), 11, + ACTIONS(8282), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198758,16 +189678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166879] = 3, + [157846] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4390), 5, + ACTIONS(7601), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(4392), 11, + ACTIONS(7603), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198779,16 +189699,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166903] = 3, + [157870] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8263), 5, + ACTIONS(8260), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8265), 11, + ACTIONS(8258), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198800,16 +189720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166927] = 3, + [157894] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8386), 5, + ACTIONS(8231), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8384), 11, + ACTIONS(8229), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198821,16 +189741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166951] = 3, + [157918] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8327), 5, + ACTIONS(8342), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8329), 11, + ACTIONS(8344), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198842,16 +189762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166975] = 3, + [157942] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8205), 5, + ACTIONS(8280), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8207), 11, + ACTIONS(8278), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198863,16 +189783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [166999] = 3, + [157966] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8277), 5, + ACTIONS(8290), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8279), 11, + ACTIONS(8292), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198884,16 +189804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167023] = 3, + [157990] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8281), 5, + ACTIONS(8193), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8283), 11, + ACTIONS(8191), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198905,16 +189825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167047] = 3, + [158014] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8287), 5, + ACTIONS(8296), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8289), 11, + ACTIONS(8294), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198926,16 +189846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167071] = 3, + [158038] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8221), 5, + ACTIONS(7566), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8223), 11, + ACTIONS(7568), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198947,16 +189867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167095] = 3, + [158062] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8261), 5, + ACTIONS(8270), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8259), 11, + ACTIONS(8272), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198968,16 +189888,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167119] = 3, + [158086] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8771), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8773), 1, + sym_variable_name, + STATE(2163), 1, + sym_subscript, + STATE(3833), 1, + sym_command_substitution, + ACTIONS(8769), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8767), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [158124] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8241), 5, + ACTIONS(8244), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8239), 11, + ACTIONS(8242), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198989,16 +189937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167143] = 3, + [158148] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7902), 5, + ACTIONS(8308), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7904), 11, + ACTIONS(8306), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199010,16 +189958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167167] = 3, + [158172] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7875), 5, + ACTIONS(8266), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7877), 11, + ACTIONS(8268), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199031,28 +189979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167191] = 3, - ACTIONS(63), 1, + [158196] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(8215), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8213), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167215] = 3, + ACTIONS(7642), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + ACTIONS(7646), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8781), 1, + sym_variable_name, + STATE(3833), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(8777), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(8775), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [158232] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(8211), 5, @@ -199073,16 +190027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167239] = 3, + [158256] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8227), 5, + ACTIONS(8326), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8225), 11, + ACTIONS(8324), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199094,16 +190048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167263] = 3, + [158280] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8227), 5, + ACTIONS(8360), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8225), 11, + ACTIONS(8362), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199115,16 +190069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167287] = 3, + [158304] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8247), 5, + ACTIONS(8322), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8249), 11, + ACTIONS(8320), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199136,16 +190090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167311] = 3, + [158328] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8331), 5, + ACTIONS(8221), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8333), 11, + ACTIONS(8223), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199157,16 +190111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167335] = 3, + [158352] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8187), 5, + ACTIONS(8286), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8189), 11, + ACTIONS(8288), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199178,16 +190132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167359] = 3, + [158376] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8253), 5, + ACTIONS(8340), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8251), 11, + ACTIONS(8338), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199199,16 +190153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167383] = 3, + [158400] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8219), 5, + ACTIONS(8262), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8217), 11, + ACTIONS(8264), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199220,16 +190174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167407] = 3, + [158424] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8369), 5, + ACTIONS(8356), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8371), 11, + ACTIONS(8358), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199241,16 +190195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167431] = 3, + [158448] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8367), 5, + ACTIONS(8364), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8365), 11, + ACTIONS(8366), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199262,16 +190216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167455] = 3, + [158472] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8273), 5, + ACTIONS(8199), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8271), 11, + ACTIONS(8197), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199283,16 +190237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167479] = 3, + [158496] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8382), 5, + ACTIONS(8207), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8380), 11, + ACTIONS(8205), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199304,16 +190258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167503] = 3, + [158520] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8299), 5, + ACTIONS(8334), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8301), 11, + ACTIONS(8332), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199325,16 +190279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167527] = 3, + [158544] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8319), 5, + ACTIONS(8354), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8321), 11, + ACTIONS(8352), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199346,16 +190300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167551] = 3, + [158568] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8193), 5, + ACTIONS(8199), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8191), 11, + ACTIONS(8197), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199367,16 +190321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167575] = 3, + [158592] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8205), 5, + ACTIONS(8254), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8207), 11, + ACTIONS(8256), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199388,16 +190342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167599] = 3, + [158616] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8199), 5, + ACTIONS(8201), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8197), 11, + ACTIONS(8203), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199409,16 +190363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167623] = 3, + [158640] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8293), 5, + ACTIONS(8248), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8291), 11, + ACTIONS(8246), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199430,16 +190384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167647] = 3, + [158664] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8255), 5, + ACTIONS(4229), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8257), 11, + ACTIONS(4231), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199451,16 +190405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167671] = 3, + [158688] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8201), 5, + ACTIONS(8219), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8203), 11, + ACTIONS(8217), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199472,16 +190426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167695] = 3, + [158712] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8317), 5, + ACTIONS(4229), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8315), 11, + ACTIONS(4231), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199493,16 +190447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167719] = 3, + [158736] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8357), 5, + ACTIONS(8274), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8355), 11, + ACTIONS(8276), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199514,16 +190468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167743] = 3, + [158760] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8325), 5, + ACTIONS(8227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8323), 11, + ACTIONS(8225), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199535,16 +190489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167767] = 3, + [158784] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8185), 5, + ACTIONS(8252), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8183), 11, + ACTIONS(8250), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199556,16 +190510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167791] = 3, + [158808] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8235), 5, + ACTIONS(8328), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(8237), 11, + ACTIONS(8330), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199577,1619 +190531,1479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [167815] = 6, + [158832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(8706), 1, anon_sym_DQUOTE, - STATE(4132), 1, + STATE(3892), 1, sym_string, - ACTIONS(1215), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9424), 2, + ACTIONS(1225), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(8785), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, + ACTIONS(8783), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [167844] = 6, + [158861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - STATE(4132), 1, + STATE(3926), 1, sym_string, - ACTIONS(1205), 2, + ACTIONS(1235), 2, anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(9424), 2, + ACTIONS(8789), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, + ACTIONS(8787), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [167873] = 6, + [158890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - STATE(4123), 1, + STATE(3926), 1, sym_string, - ACTIONS(1205), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(9430), 2, + ACTIONS(1225), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(8789), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, + ACTIONS(8787), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [167902] = 6, + [158919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 1, + ACTIONS(8706), 1, anon_sym_DQUOTE, - STATE(4123), 1, + STATE(3892), 1, sym_string, - ACTIONS(1215), 2, + ACTIONS(1235), 2, anon_sym_SLASH, anon_sym_RBRACE3, - ACTIONS(9430), 2, + ACTIONS(8785), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, + ACTIONS(8783), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [167931] = 11, + [158948] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, + ACTIONS(8793), 1, anon_sym_DOLLAR, - ACTIONS(9436), 1, + ACTIONS(8795), 1, anon_sym_DQUOTE, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3726), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [167969] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9448), 1, - anon_sym_DOLLAR, - ACTIONS(9450), 1, - anon_sym_DQUOTE, - STATE(3735), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168007] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9452), 1, - anon_sym_DOLLAR, - ACTIONS(9454), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168045] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9456), 1, - anon_sym_DOLLAR, - ACTIONS(9458), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168083] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9460), 1, - anon_sym_DOLLAR, - ACTIONS(9462), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168121] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9464), 1, - anon_sym_DOLLAR, - ACTIONS(9466), 1, - anon_sym_DQUOTE, - STATE(3644), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168159] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9468), 1, - anon_sym_DOLLAR, - ACTIONS(9470), 1, - anon_sym_DQUOTE, - STATE(3638), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168197] = 11, + [158986] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9472), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR, - ACTIONS(9474), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - STATE(3645), 1, + STATE(3409), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168235] = 11, + [159024] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9476), 1, + ACTIONS(8811), 1, anon_sym_DOLLAR, - ACTIONS(9478), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3410), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168273] = 11, + [159062] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9480), 1, + ACTIONS(8815), 1, anon_sym_DOLLAR, - ACTIONS(9482), 1, + ACTIONS(8817), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168311] = 11, + [159100] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9484), 1, + ACTIONS(8819), 1, anon_sym_DOLLAR, - ACTIONS(9486), 1, + ACTIONS(8821), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3411), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168349] = 11, + [159138] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9488), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR, - ACTIONS(9490), 1, + ACTIONS(8825), 1, anon_sym_DQUOTE, - STATE(3643), 1, + STATE(3420), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168387] = 11, + [159176] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9492), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR, - ACTIONS(9494), 1, + ACTIONS(8829), 1, anon_sym_DQUOTE, - STATE(3651), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168425] = 11, + [159214] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, + ACTIONS(8831), 1, anon_sym_DOLLAR, - ACTIONS(9498), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168463] = 11, + [159252] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9500), 1, + ACTIONS(8835), 1, anon_sym_DOLLAR, - ACTIONS(9502), 1, + ACTIONS(8837), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168501] = 11, + [159290] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9504), 1, + ACTIONS(8839), 1, anon_sym_DOLLAR, - ACTIONS(9506), 1, + ACTIONS(8841), 1, anon_sym_DQUOTE, - STATE(3649), 1, + STATE(3406), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168539] = 11, + [159328] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9508), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR, - ACTIONS(9510), 1, + ACTIONS(8845), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168577] = 11, + [159366] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9512), 1, + ACTIONS(8847), 1, anon_sym_DOLLAR, - ACTIONS(9514), 1, + ACTIONS(8849), 1, anon_sym_DQUOTE, - STATE(3648), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168615] = 11, + [159404] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR, - ACTIONS(9518), 1, + ACTIONS(8853), 1, anon_sym_DQUOTE, - STATE(3670), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168653] = 11, + [159442] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9520), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR, - ACTIONS(9522), 1, + ACTIONS(8857), 1, anon_sym_DQUOTE, - STATE(3657), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168691] = 11, + [159480] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9524), 1, + ACTIONS(8859), 1, anon_sym_DOLLAR, - ACTIONS(9526), 1, + ACTIONS(8861), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3431), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168729] = 11, + [159518] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9528), 1, + ACTIONS(8863), 1, anon_sym_DOLLAR, - ACTIONS(9530), 1, + ACTIONS(8865), 1, anon_sym_DQUOTE, - STATE(3655), 1, + STATE(3506), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168767] = 11, + [159556] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9532), 1, + ACTIONS(8867), 1, anon_sym_DOLLAR, - ACTIONS(9534), 1, + ACTIONS(8869), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3416), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168805] = 11, + [159594] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9536), 1, + ACTIONS(8871), 1, anon_sym_DOLLAR, - ACTIONS(9538), 1, + ACTIONS(8873), 1, anon_sym_DQUOTE, - STATE(3666), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168843] = 11, + [159632] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9540), 1, + ACTIONS(8875), 1, anon_sym_DOLLAR, - ACTIONS(9542), 1, + ACTIONS(8877), 1, anon_sym_DQUOTE, - STATE(3664), 1, + STATE(3423), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168881] = 11, + [159670] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9544), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR, - ACTIONS(9546), 1, + ACTIONS(8881), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3432), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168919] = 11, + [159708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9548), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR, - ACTIONS(9550), 1, + ACTIONS(8885), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168957] = 11, + [159746] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9552), 1, + ACTIONS(8887), 1, anon_sym_DOLLAR, - ACTIONS(9554), 1, + ACTIONS(8889), 1, anon_sym_DQUOTE, - STATE(3637), 1, + STATE(3429), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [168995] = 11, + [159784] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9556), 1, + ACTIONS(8891), 1, anon_sym_DOLLAR, - ACTIONS(9558), 1, + ACTIONS(8893), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169033] = 11, + [159822] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9560), 1, + ACTIONS(8895), 1, anon_sym_DOLLAR, - ACTIONS(9562), 1, + ACTIONS(8897), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3473), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169071] = 11, + [159860] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9564), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR, - ACTIONS(9566), 1, + ACTIONS(8901), 1, anon_sym_DQUOTE, - STATE(3671), 1, + STATE(3434), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169109] = 11, + [159898] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9568), 1, + ACTIONS(8903), 1, anon_sym_DOLLAR, - ACTIONS(9570), 1, + ACTIONS(8905), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169147] = 11, + [159936] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9572), 1, + ACTIONS(8907), 1, anon_sym_DOLLAR, - ACTIONS(9574), 1, + ACTIONS(8909), 1, anon_sym_DQUOTE, - STATE(3672), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169185] = 11, + [159974] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9576), 1, + ACTIONS(8911), 1, anon_sym_DOLLAR, - ACTIONS(9578), 1, + ACTIONS(8913), 1, anon_sym_DQUOTE, - STATE(3663), 1, + STATE(3425), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169223] = 11, + [160012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9583), 1, - anon_sym_DOLLAR, - ACTIONS(9586), 1, - anon_sym_DQUOTE, - ACTIONS(9588), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9591), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9597), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9600), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3669), 1, + ACTIONS(8915), 1, + anon_sym_DOLLAR, + ACTIONS(8917), 1, + anon_sym_DQUOTE, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9580), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169261] = 11, + [160050] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9603), 1, + ACTIONS(8919), 1, anon_sym_DOLLAR, - ACTIONS(9605), 1, + ACTIONS(8921), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169299] = 11, + [160088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9607), 1, + ACTIONS(8923), 1, anon_sym_DOLLAR, - ACTIONS(9609), 1, + ACTIONS(8925), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3428), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169337] = 11, + [160126] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9611), 1, + ACTIONS(8927), 1, anon_sym_DOLLAR, - ACTIONS(9613), 1, + ACTIONS(8929), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169375] = 11, + [160164] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9615), 1, + ACTIONS(8931), 1, anon_sym_DOLLAR, - ACTIONS(9617), 1, + ACTIONS(8933), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169413] = 11, + [160202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8938), 1, + anon_sym_DOLLAR, + ACTIONS(8941), 1, + anon_sym_DQUOTE, + ACTIONS(8943), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8949), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8952), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8955), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9619), 1, - anon_sym_DOLLAR, - ACTIONS(9621), 1, - anon_sym_DQUOTE, - STATE(3673), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8935), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169451] = 11, + [160240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9623), 1, + ACTIONS(8958), 1, anon_sym_DOLLAR, - ACTIONS(9625), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - STATE(3676), 1, + STATE(3440), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169489] = 11, + [160278] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9627), 1, + ACTIONS(8962), 1, anon_sym_DOLLAR, - ACTIONS(9629), 1, + ACTIONS(8964), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3435), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169527] = 11, + [160316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9631), 1, + ACTIONS(8966), 1, anon_sym_DOLLAR, - ACTIONS(9633), 1, + ACTIONS(8968), 1, anon_sym_DQUOTE, - STATE(3661), 1, + STATE(3414), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169565] = 11, + [160354] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9635), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR, - ACTIONS(9637), 1, + ACTIONS(8972), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169603] = 11, + [160392] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9639), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR, - ACTIONS(9641), 1, + ACTIONS(8976), 1, anon_sym_DQUOTE, - STATE(3639), 1, + STATE(3453), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169641] = 11, + [160430] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9643), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, - ACTIONS(9645), 1, + ACTIONS(8980), 1, anon_sym_DQUOTE, - STATE(3684), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169679] = 11, + [160468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9647), 1, + ACTIONS(8982), 1, anon_sym_DOLLAR, - ACTIONS(9649), 1, + ACTIONS(8984), 1, anon_sym_DQUOTE, - STATE(3688), 1, + STATE(3448), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169717] = 11, + [160506] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9651), 1, + ACTIONS(8986), 1, anon_sym_DOLLAR, - ACTIONS(9653), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3456), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169755] = 11, + [160544] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9655), 1, + ACTIONS(8990), 1, anon_sym_DOLLAR, - ACTIONS(9657), 1, + ACTIONS(8992), 1, anon_sym_DQUOTE, - STATE(3682), 1, + STATE(3413), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169793] = 11, + [160582] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9659), 1, + ACTIONS(8994), 1, anon_sym_DOLLAR, - ACTIONS(9661), 1, + ACTIONS(8996), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3442), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169831] = 11, + [160620] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9663), 1, + ACTIONS(8998), 1, anon_sym_DOLLAR, - ACTIONS(9665), 1, + ACTIONS(9000), 1, anon_sym_DQUOTE, - STATE(3660), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169869] = 11, + [160658] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9667), 1, + ACTIONS(9002), 1, anon_sym_DOLLAR, - ACTIONS(9669), 1, + ACTIONS(9004), 1, anon_sym_DQUOTE, - STATE(3696), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169907] = 11, + [160696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 1, + anon_sym_LF, + ACTIONS(9012), 1, + sym_file_descriptor, + ACTIONS(9008), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4369), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9006), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [160724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9012), 1, + sym_file_descriptor, + ACTIONS(9014), 1, + anon_sym_LF, + ACTIONS(9008), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4297), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9006), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [160752] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9671), 1, + ACTIONS(9016), 1, anon_sym_DOLLAR, - ACTIONS(9673), 1, + ACTIONS(9018), 1, anon_sym_DQUOTE, - STATE(3694), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169945] = 11, + [160790] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9675), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR, - ACTIONS(9677), 1, + ACTIONS(9022), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3447), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [169983] = 11, + [160828] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9679), 1, + ACTIONS(9024), 1, anon_sym_DOLLAR, - ACTIONS(9681), 1, + ACTIONS(9026), 1, anon_sym_DQUOTE, - STATE(3692), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9687), 1, - anon_sym_LF, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4519), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170049] = 6, + [160866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, + ACTIONS(9012), 1, sym_file_descriptor, - ACTIONS(9691), 1, + ACTIONS(9028), 1, anon_sym_LF, - ACTIONS(9685), 2, + ACTIONS(9008), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4752), 2, + STATE(4206), 2, sym_file_redirect, sym__heredoc_pipeline, - ACTIONS(9683), 8, + ACTIONS(9006), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -201198,155 +192012,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [170077] = 11, + [160894] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9693), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR, - ACTIONS(9695), 1, + ACTIONS(9032), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170115] = 11, + [160932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9697), 1, + ACTIONS(9034), 1, anon_sym_DOLLAR, - ACTIONS(9699), 1, + ACTIONS(9036), 1, anon_sym_DQUOTE, - STATE(3706), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170153] = 11, + [160970] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9701), 1, + ACTIONS(9038), 1, anon_sym_DOLLAR, - ACTIONS(9703), 1, + ACTIONS(9040), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3459), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170191] = 11, + [161008] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9705), 1, + ACTIONS(9042), 1, anon_sym_DOLLAR, - ACTIONS(9707), 1, + ACTIONS(9044), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3474), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170229] = 11, + [161046] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9709), 1, + ACTIONS(9046), 1, anon_sym_DOLLAR, - ACTIONS(9711), 1, + ACTIONS(9048), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170267] = 6, + [161084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, + ACTIONS(9012), 1, sym_file_descriptor, - ACTIONS(9713), 1, + ACTIONS(9050), 1, anon_sym_LF, - ACTIONS(9685), 2, + ACTIONS(9008), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4727), 2, + STATE(4258), 2, sym_file_redirect, sym__heredoc_pipeline, - ACTIONS(9683), 8, + ACTIONS(9006), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -201355,501 +192169,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [170295] = 11, + [161112] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9715), 1, + ACTIONS(9052), 1, anon_sym_DOLLAR, - ACTIONS(9717), 1, + ACTIONS(9054), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3455), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170333] = 11, + [161150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9719), 1, + ACTIONS(9056), 1, anon_sym_DOLLAR, - ACTIONS(9721), 1, + ACTIONS(9058), 1, anon_sym_DQUOTE, - STATE(3695), 1, + STATE(3467), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170371] = 11, + [161188] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9723), 1, + ACTIONS(9060), 1, anon_sym_DOLLAR, - ACTIONS(9725), 1, + ACTIONS(9062), 1, anon_sym_DQUOTE, - STATE(3705), 1, + STATE(3466), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170409] = 11, + [161226] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9727), 1, + ACTIONS(9064), 1, anon_sym_DOLLAR, - ACTIONS(9729), 1, + ACTIONS(9066), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170447] = 11, + [161264] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9731), 1, + ACTIONS(9068), 1, anon_sym_DOLLAR, - ACTIONS(9733), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3464), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170485] = 11, + [161302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9735), 1, + ACTIONS(9072), 1, anon_sym_DOLLAR, - ACTIONS(9737), 1, + ACTIONS(9074), 1, anon_sym_DQUOTE, - STATE(3704), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170523] = 11, + [161340] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9739), 1, + ACTIONS(9076), 1, anon_sym_DOLLAR, - ACTIONS(9741), 1, + ACTIONS(9078), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170561] = 11, + [161378] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9743), 1, + ACTIONS(9080), 1, anon_sym_DOLLAR, - ACTIONS(9745), 1, + ACTIONS(9082), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170599] = 11, + [161416] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9747), 1, + ACTIONS(9084), 1, anon_sym_DOLLAR, - ACTIONS(9749), 1, + ACTIONS(9086), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3403), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170637] = 11, + [161454] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9751), 1, + ACTIONS(9088), 1, anon_sym_DOLLAR, - ACTIONS(9753), 1, + ACTIONS(9090), 1, anon_sym_DQUOTE, - STATE(3698), 1, + STATE(3471), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170675] = 11, + [161492] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9092), 1, + anon_sym_DOLLAR, + ACTIONS(9094), 1, + anon_sym_DQUOTE, + STATE(3436), 1, + aux_sym_string_repeat1, + ACTIONS(8791), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3684), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [161530] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8797), 1, + sym__string_content, + ACTIONS(8799), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8803), 1, + anon_sym_BQUOTE, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9755), 1, + ACTIONS(9096), 1, anon_sym_DOLLAR, - ACTIONS(9757), 1, + ACTIONS(9098), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3468), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170713] = 6, + [161568] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9759), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4701), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170741] = 11, + ACTIONS(8797), 1, + sym__string_content, + ACTIONS(8799), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8803), 1, + anon_sym_BQUOTE, + ACTIONS(8805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9100), 1, + anon_sym_DOLLAR, + ACTIONS(9102), 1, + anon_sym_DQUOTE, + STATE(3436), 1, + aux_sym_string_repeat1, + ACTIONS(8791), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3684), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [161606] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9761), 1, + ACTIONS(9104), 1, anon_sym_DOLLAR, - ACTIONS(9763), 1, + ACTIONS(9106), 1, anon_sym_DQUOTE, - STATE(3701), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170779] = 11, + [161644] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9765), 1, + ACTIONS(9108), 1, anon_sym_DOLLAR, - ACTIONS(9767), 1, + ACTIONS(9110), 1, anon_sym_DQUOTE, - STATE(3713), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170817] = 11, + [161682] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9769), 1, + ACTIONS(9112), 1, anon_sym_DOLLAR, - ACTIONS(9771), 1, + ACTIONS(9114), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170855] = 11, + [161720] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9773), 1, + ACTIONS(9116), 1, anon_sym_DOLLAR, - ACTIONS(9775), 1, + ACTIONS(9118), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3511), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170893] = 11, + [161758] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9777), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR, - ACTIONS(9779), 1, + ACTIONS(9122), 1, anon_sym_DQUOTE, - STATE(3717), 1, + STATE(3482), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170931] = 11, + [161796] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9781), 1, + ACTIONS(9124), 1, anon_sym_DOLLAR, - ACTIONS(9783), 1, + ACTIONS(9126), 1, anon_sym_DQUOTE, - STATE(3712), 1, + STATE(3476), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [170969] = 6, + [161834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, + ACTIONS(9012), 1, sym_file_descriptor, - ACTIONS(9785), 1, + ACTIONS(9128), 1, anon_sym_LF, - ACTIONS(9685), 2, + ACTIONS(9008), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4673), 2, + STATE(4261), 2, sym_file_redirect, sym__heredoc_pipeline, - ACTIONS(9683), 8, + ACTIONS(9006), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -201858,101 +192704,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [170997] = 11, + [161862] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9787), 1, + ACTIONS(9130), 1, anon_sym_DOLLAR, - ACTIONS(9789), 1, + ACTIONS(9132), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3486), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171035] = 11, + [161900] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9791), 1, + ACTIONS(9134), 1, anon_sym_DOLLAR, - ACTIONS(9793), 1, + ACTIONS(9136), 1, anon_sym_DQUOTE, - STATE(3721), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171073] = 11, + [161938] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9795), 1, + ACTIONS(9138), 1, anon_sym_DOLLAR, - ACTIONS(9797), 1, + ACTIONS(9140), 1, anon_sym_DQUOTE, - STATE(3724), 1, + STATE(3485), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171111] = 6, + [161976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, + ACTIONS(9012), 1, sym_file_descriptor, - ACTIONS(9799), 1, + ACTIONS(9142), 1, anon_sym_LF, - ACTIONS(9685), 2, + ACTIONS(9008), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4720), 2, + STATE(4207), 2, sym_file_redirect, sym__heredoc_pipeline, - ACTIONS(9683), 8, + ACTIONS(9006), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -201961,4120 +192807,4055 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [171139] = 11, + [162004] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9801), 1, + ACTIONS(9144), 1, anon_sym_DOLLAR, - ACTIONS(9803), 1, + ACTIONS(9146), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171177] = 11, + [162042] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9805), 1, + ACTIONS(9148), 1, anon_sym_DOLLAR, - ACTIONS(9807), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171215] = 11, + [162080] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9809), 1, + ACTIONS(9152), 1, anon_sym_DOLLAR, - ACTIONS(9811), 1, + ACTIONS(9154), 1, anon_sym_DQUOTE, - STATE(3729), 1, + STATE(3490), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171253] = 11, + [162118] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9813), 1, + ACTIONS(9156), 1, anon_sym_DOLLAR, - ACTIONS(9815), 1, + ACTIONS(9158), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3501), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171291] = 11, + [162156] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9817), 1, + ACTIONS(9160), 1, anon_sym_DOLLAR, - ACTIONS(9819), 1, + ACTIONS(9162), 1, anon_sym_DQUOTE, - STATE(3722), 1, + STATE(3494), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171329] = 11, + [162194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9821), 1, + ACTIONS(9164), 1, anon_sym_DOLLAR, - ACTIONS(9823), 1, + ACTIONS(9166), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171367] = 11, + [162232] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9825), 1, + ACTIONS(9168), 1, anon_sym_DOLLAR, - ACTIONS(9827), 1, + ACTIONS(9170), 1, anon_sym_DQUOTE, - STATE(3733), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171405] = 11, + [162270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9012), 1, + sym_file_descriptor, + ACTIONS(9172), 1, + anon_sym_LF, + ACTIONS(9008), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4178), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9006), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [162298] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9829), 1, + ACTIONS(9174), 1, anon_sym_DOLLAR, - ACTIONS(9831), 1, + ACTIONS(9176), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171443] = 11, + [162336] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9833), 1, + ACTIONS(9178), 1, anon_sym_DOLLAR, - ACTIONS(9835), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171481] = 11, + [162374] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9837), 1, + ACTIONS(9182), 1, anon_sym_DOLLAR, - ACTIONS(9839), 1, + ACTIONS(9184), 1, anon_sym_DQUOTE, - STATE(3734), 1, + STATE(3507), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171519] = 11, + [162412] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9841), 1, + ACTIONS(9186), 1, anon_sym_DOLLAR, - ACTIONS(9843), 1, + ACTIONS(9188), 1, anon_sym_DQUOTE, - STATE(3702), 1, + STATE(3475), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171557] = 11, + [162450] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9845), 1, + ACTIONS(9190), 1, anon_sym_DOLLAR, - ACTIONS(9847), 1, + ACTIONS(9192), 1, anon_sym_DQUOTE, - STATE(3728), 1, + STATE(3491), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171595] = 11, + [162488] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9849), 1, + ACTIONS(9194), 1, anon_sym_DOLLAR, - ACTIONS(9851), 1, + ACTIONS(9196), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171633] = 11, + [162526] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9853), 1, + ACTIONS(9198), 1, anon_sym_DOLLAR, - ACTIONS(9855), 1, + ACTIONS(9200), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3451), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171671] = 11, + [162564] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9857), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR, - ACTIONS(9859), 1, + ACTIONS(9204), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3505), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171709] = 11, + [162602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9861), 1, + ACTIONS(9206), 1, anon_sym_DOLLAR, - ACTIONS(9863), 1, + ACTIONS(9208), 1, anon_sym_DQUOTE, - STATE(3678), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171747] = 11, + [162640] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9865), 1, + ACTIONS(9210), 1, anon_sym_DOLLAR, - ACTIONS(9867), 1, + ACTIONS(9212), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3498), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171785] = 11, + [162678] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9869), 1, + ACTIONS(9214), 1, anon_sym_DOLLAR, - ACTIONS(9871), 1, + ACTIONS(9216), 1, anon_sym_DQUOTE, - STATE(3743), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171823] = 11, + [162716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9012), 1, + sym_file_descriptor, + ACTIONS(9218), 1, + anon_sym_LF, + ACTIONS(9008), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4174), 2, + sym_file_redirect, + sym__heredoc_pipeline, + ACTIONS(9006), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [162744] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9873), 1, + ACTIONS(9220), 1, anon_sym_DOLLAR, - ACTIONS(9875), 1, + ACTIONS(9222), 1, anon_sym_DQUOTE, - STATE(3746), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171861] = 11, + [162782] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9877), 1, + ACTIONS(9224), 1, anon_sym_DOLLAR, - ACTIONS(9879), 1, + ACTIONS(9226), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171899] = 11, + [162820] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9881), 1, + ACTIONS(9228), 1, anon_sym_DOLLAR, - ACTIONS(9883), 1, + ACTIONS(9230), 1, anon_sym_DQUOTE, - STATE(3737), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [171937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9885), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4405), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [171965] = 11, + [162858] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9887), 1, + ACTIONS(9232), 1, anon_sym_DOLLAR, - ACTIONS(9889), 1, + ACTIONS(9234), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3503), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [172003] = 11, + [162896] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9891), 1, + ACTIONS(9236), 1, anon_sym_DOLLAR, - ACTIONS(9893), 1, + ACTIONS(9238), 1, anon_sym_DQUOTE, - STATE(3740), 1, + STATE(3493), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [172041] = 11, + [162934] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9895), 1, + ACTIONS(9240), 1, anon_sym_DOLLAR, - ACTIONS(9897), 1, + ACTIONS(9242), 1, anon_sym_DQUOTE, - STATE(3708), 1, + STATE(3415), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [172079] = 11, + [162972] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(8797), 1, sym__string_content, - ACTIONS(9440), 1, + ACTIONS(8799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, + ACTIONS(8801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, + ACTIONS(8803), 1, anon_sym_BQUOTE, - ACTIONS(9446), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9899), 1, + ACTIONS(9244), 1, anon_sym_DOLLAR, - ACTIONS(9901), 1, + ACTIONS(9246), 1, anon_sym_DQUOTE, - STATE(3669), 1, + STATE(3436), 1, aux_sym_string_repeat1, - ACTIONS(9432), 2, + ACTIONS(8791), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, + STATE(3684), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [172117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9903), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4407), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [172145] = 5, + [163010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(995), 1, + sym_string, + ACTIONS(2774), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2772), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172170] = 5, + [163035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9741), 1, + ACTIONS(9250), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172195] = 5, + [163060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1440), 1, sym_string, - ACTIONS(3132), 2, + ACTIONS(3100), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3130), 9, + ACTIONS(3098), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172220] = 5, + [163085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9889), 1, + ACTIONS(8917), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172245] = 5, + [163110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9913), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172270] = 5, + [163135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3488), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9256), 1, anon_sym_DQUOTE, - STATE(1792), 1, - sym_string, - ACTIONS(3490), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3486), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172295] = 5, + [163160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9915), 1, + ACTIONS(9166), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172320] = 5, + [163185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9258), 1, anon_sym_DQUOTE, - STATE(3980), 1, - sym_string, - ACTIONS(9399), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9395), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172345] = 5, + [163210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5487), 1, + ACTIONS(9136), 1, anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172370] = 5, + [163235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9917), 1, + ACTIONS(1927), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(905), 1, + sym_string, + ACTIONS(2345), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2343), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172395] = 5, + [163260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9733), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(382), 1, + sym_string, + ACTIONS(1243), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(1239), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172420] = 5, + [163285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9919), 1, + ACTIONS(9260), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172445] = 5, + [163310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6273), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9262), 1, anon_sym_DQUOTE, - STATE(3125), 1, - sym_string, - ACTIONS(6275), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172470] = 5, + [163335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9264), 1, anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2960), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2958), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172495] = 5, + [163360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9266), 1, anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3060), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172520] = 5, + [163385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9921), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(3926), 1, + sym_string, + ACTIONS(8789), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(8787), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172545] = 5, + [163410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9879), 1, + ACTIONS(9114), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172570] = 5, + [163435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9901), 1, + ACTIONS(8795), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172595] = 5, + [163460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9458), 1, + ACTIONS(9222), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172620] = 5, + [163485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9867), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9268), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172645] = 5, + [163510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9270), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172670] = 5, + [163535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9923), 1, + ACTIONS(9272), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172695] = 5, + [163560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9859), 1, + ACTIONS(2752), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1257), 1, + sym_string, + ACTIONS(2833), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2831), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172720] = 5, + [163585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9925), 1, + ACTIONS(9274), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172745] = 5, + [163610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(9146), 1, anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172770] = 5, + [163635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9927), 1, + ACTIONS(9276), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172795] = 5, + [163660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6408), 1, + ACTIONS(9094), 1, anon_sym_DQUOTE, - STATE(3535), 1, - sym_string, - ACTIONS(6410), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172820] = 5, + [163685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, + ACTIONS(3796), 1, anon_sym_DQUOTE, - STATE(2781), 1, + STATE(1800), 1, sym_string, - ACTIONS(5445), 2, + ACTIONS(3798), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, + ACTIONS(3794), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172845] = 5, + [163710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9929), 1, + ACTIONS(9074), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172870] = 5, + [163735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172895] = 5, + [163760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(9066), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172920] = 5, + [163785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9931), 1, + ACTIONS(9278), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172945] = 5, + [163810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9831), 1, + ACTIONS(320), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1479), 1, + sym_string, + ACTIONS(3781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172970] = 5, + [163835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(2281), 1, anon_sym_DQUOTE, - STATE(2889), 1, + STATE(1153), 1, sym_string, - ACTIONS(5380), 2, + ACTIONS(2829), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, + ACTIONS(2827), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [172995] = 5, + [163860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - STATE(354), 1, + STATE(1309), 1, sym_string, - ACTIONS(1211), 2, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1207), 9, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173020] = 5, + [163885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(8873), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173045] = 5, + [163910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9933), 1, + ACTIONS(9280), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173070] = 5, + [163935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9935), 1, + ACTIONS(9282), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173095] = 5, + [163960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9937), 1, + ACTIONS(3676), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(1785), 1, + sym_string, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3674), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173120] = 5, + [163985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9482), 1, + ACTIONS(8857), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173145] = 5, + [164010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9939), 1, + ACTIONS(9176), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173170] = 5, + [164035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9478), 1, + ACTIONS(9208), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173195] = 5, + [164060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9941), 1, + ACTIONS(9284), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173220] = 5, + [164085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(9170), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173245] = 5, + [164110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9943), 1, + ACTIONS(3528), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(1710), 1, + sym_string, + ACTIONS(3530), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3526), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173270] = 5, + [164135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9945), 1, + ACTIONS(8845), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173295] = 5, + [164160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9286), 1, anon_sym_DQUOTE, - STATE(3521), 1, - sym_string, - ACTIONS(6678), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173320] = 5, + [164185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9947), 1, + ACTIONS(9288), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173345] = 5, + [164210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(9048), 1, anon_sym_DQUOTE, - STATE(1681), 1, - sym_string, - ACTIONS(3381), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3377), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173370] = 5, + [164235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9486), 1, + ACTIONS(6214), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(3258), 1, + sym_string, + ACTIONS(6216), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(6212), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173395] = 5, + [164260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(8837), 1, anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(3997), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173420] = 5, + [164285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9807), 1, + ACTIONS(9230), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173445] = 5, + [164310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9815), 1, + ACTIONS(9102), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173470] = 5, + [164335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9949), 1, + ACTIONS(9290), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173495] = 5, + [164360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(160), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - STATE(1605), 1, + STATE(845), 1, sym_string, - ACTIONS(3671), 2, + ACTIONS(2497), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, + ACTIONS(2495), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173520] = 5, + [164385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9292), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173545] = 5, + [164410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9637), 1, + ACTIONS(1785), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1076), 1, + sym_string, + ACTIONS(2786), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2784), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173570] = 5, + [164435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9951), 1, + ACTIONS(9294), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173595] = 5, + [164460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9953), 1, + ACTIONS(9296), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173620] = 5, + [164485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9955), 1, + ACTIONS(9298), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173645] = 5, + [164510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(5195), 1, anon_sym_DQUOTE, - STATE(2002), 1, + STATE(2615), 1, sym_string, - ACTIONS(3731), 2, + ACTIONS(5197), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, + ACTIONS(5193), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173670] = 5, + [164535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9957), 1, + ACTIONS(6256), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(3129), 1, + sym_string, + ACTIONS(6258), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(6254), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173695] = 5, + [164560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9789), 1, + ACTIONS(9110), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173720] = 5, + [164585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2333), 1, anon_sym_DQUOTE, - STATE(1253), 1, + STATE(904), 1, sym_string, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9959), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(2335), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2331), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173770] = 5, + [164610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(3935), 1, anon_sym_DQUOTE, - STATE(691), 1, + STATE(1805), 1, sym_string, - ACTIONS(1959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1957), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9961), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(3937), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3933), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173820] = 5, + [164635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9757), 1, + ACTIONS(9036), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - STATE(1351), 1, - sym_string, - ACTIONS(3052), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173870] = 5, + [164660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9963), 1, + ACTIONS(9300), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173895] = 5, + [164685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9771), 1, + ACTIONS(8980), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173920] = 5, + [164710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9965), 1, + ACTIONS(9302), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173945] = 5, + [164735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(8853), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173970] = 5, + [164760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9967), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(410), 1, + sym_string, + ACTIONS(1249), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(1245), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [173995] = 5, + [164785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9304), 1, anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3054), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174020] = 5, + [164810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9749), 1, + ACTIONS(9216), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174045] = 5, + [164835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 1, + ACTIONS(8749), 1, anon_sym_DQUOTE, - STATE(1047), 1, + STATE(3748), 1, sym_string, - ACTIONS(2775), 2, + ACTIONS(8751), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, + ACTIONS(8747), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174070] = 5, + [164860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(6190), 1, anon_sym_DQUOTE, - STATE(1008), 1, + STATE(3273), 1, sym_string, - ACTIONS(2317), 2, + ACTIONS(6192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2315), 9, + ACTIONS(6188), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174095] = 5, + [164885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9729), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6646), 1, + ACTIONS(9306), 1, anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174145] = 5, + [164910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9969), 1, + ACTIONS(9308), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174170] = 5, + [164935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9745), 1, + ACTIONS(2610), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1029), 1, + sym_string, + ACTIONS(2612), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2608), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174195] = 5, + [164960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9310), 1, anon_sym_DQUOTE, - STATE(1105), 1, - sym_string, - ACTIONS(2826), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174220] = 5, + [164985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9717), 1, + ACTIONS(9082), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174245] = 5, + [165010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4613), 1, anon_sym_DQUOTE, - STATE(2126), 1, + STATE(2325), 1, sym_string, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9971), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(4615), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(4611), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174295] = 5, + [165035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9973), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9975), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174345] = 5, + [165060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(8817), 1, anon_sym_DQUOTE, - STATE(2032), 1, - sym_string, - ACTIONS(3906), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3902), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174370] = 5, + [165085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, + ACTIONS(8972), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174395] = 5, + [165110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9312), 1, anon_sym_DQUOTE, - STATE(429), 1, - sym_string, - ACTIONS(1240), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1236), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174420] = 5, + [165135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9977), 1, + ACTIONS(9314), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174445] = 5, + [165160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9979), 1, + ACTIONS(1229), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(349), 1, + sym_string, + ACTIONS(1231), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(1227), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174470] = 5, + [165185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9695), 1, + ACTIONS(9226), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174495] = 5, + [165210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9981), 1, + ACTIONS(9316), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174520] = 5, + [165235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(2511), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1279), 1, + sym_string, + ACTIONS(3018), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3016), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174545] = 5, + [165260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(9078), 1, anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2367), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174570] = 5, + [165285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9510), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(683), 1, + sym_string, + ACTIONS(1727), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(1725), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174595] = 5, + [165310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 1, + ACTIONS(4945), 1, anon_sym_DQUOTE, - STATE(960), 1, + STATE(2643), 1, sym_string, - ACTIONS(2605), 2, + ACTIONS(4947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2603), 9, + ACTIONS(4943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174620] = 5, + [165335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9983), 1, + ACTIONS(9106), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174645] = 5, + [165360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9985), 1, + ACTIONS(164), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(1682), 1, + sym_string, + ACTIONS(3424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174670] = 5, + [165385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(244), 1, + ACTIONS(8921), 1, anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174695] = 5, + [165410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9987), 1, + ACTIONS(9032), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174720] = 5, + [165435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9318), 1, anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174745] = 5, + [165460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(9196), 1, anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174770] = 5, + [165485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9677), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9320), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174795] = 5, + [165510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9322), 1, anon_sym_DQUOTE, - STATE(1757), 1, - sym_string, - ACTIONS(3797), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3793), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174820] = 5, + [165535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9989), 1, + ACTIONS(9246), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174845] = 5, + [165560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9653), 1, + ACTIONS(9018), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174870] = 5, + [165585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9661), 1, + ACTIONS(8929), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174895] = 5, + [165610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(3364), 1, anon_sym_DQUOTE, - STATE(1190), 1, + STATE(1660), 1, sym_string, - ACTIONS(2611), 2, + ACTIONS(3366), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2607), 9, + ACTIONS(3362), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174920] = 5, + [165635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9991), 1, + ACTIONS(9324), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174945] = 5, + [165660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, + ACTIONS(2541), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1191), 1, + sym_string, + ACTIONS(3148), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3146), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174970] = 5, + [165685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9326), 1, anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4989), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [174995] = 5, + [165710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(3943), 1, anon_sym_DQUOTE, - STATE(4132), 1, + STATE(1958), 1, sym_string, - ACTIONS(9424), 2, + ACTIONS(3945), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, + ACTIONS(3941), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175020] = 5, + [165735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9629), 1, + ACTIONS(8893), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175045] = 5, + [165760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9993), 1, + ACTIONS(1815), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(823), 1, + sym_string, + ACTIONS(1919), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(1917), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175070] = 5, + [165785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9328), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175095] = 5, + [165810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5290), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2755), 1, sym_string, - ACTIONS(5294), 2, + ACTIONS(5292), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, + ACTIONS(5288), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175120] = 5, + [165835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 1, + ACTIONS(9000), 1, anon_sym_DQUOTE, - STATE(4123), 1, - sym_string, - ACTIONS(9430), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175145] = 5, + [165860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9995), 1, + ACTIONS(8909), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175170] = 5, + [165885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9617), 1, + ACTIONS(9026), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175195] = 5, + [165910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4501), 1, + ACTIONS(1887), 1, anon_sym_DQUOTE, - STATE(2238), 1, + STATE(1092), 1, sym_string, - ACTIONS(4503), 2, + ACTIONS(2871), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, + ACTIONS(2869), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175220] = 5, + [165935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9997), 1, + ACTIONS(9004), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175245] = 5, + [165960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9999), 1, + ACTIONS(8829), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175270] = 5, + [165985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9605), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9330), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175295] = 5, + [166010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9613), 1, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175320] = 5, + [166035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(10001), 1, + ACTIONS(9332), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175345] = 5, + [166060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9609), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9334), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175370] = 5, + [166085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9336), 1, anon_sym_DQUOTE, - STATE(873), 1, - sym_string, - ACTIONS(2409), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2405), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175395] = 5, + [166110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9338), 1, anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1961), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175420] = 5, + [166135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 1, + ACTIONS(6496), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(3337), 1, + sym_string, + ACTIONS(6498), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(6494), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175445] = 5, + [166160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 1, + ACTIONS(5266), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(2923), 1, + sym_string, + ACTIONS(5679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(5677), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175470] = 5, + [166185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 1, + ACTIONS(5098), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(2716), 1, + sym_string, + ACTIONS(5100), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(5096), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175495] = 5, + [166210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9340), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175520] = 5, + [166235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(10003), 1, + ACTIONS(9342), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175545] = 5, + [166260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10005), 1, + ACTIONS(8933), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175570] = 5, + [166285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(10007), 1, + ACTIONS(9344), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175595] = 5, + [166310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(3522), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1771), 1, + sym_string, + ACTIONS(3524), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3520), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175620] = 5, + [166335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(8905), 1, anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2371), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175645] = 5, + [166360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(1947), 1, anon_sym_DQUOTE, - STATE(1431), 1, + STATE(957), 1, sym_string, - ACTIONS(3066), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, + ACTIONS(2337), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175670] = 5, + [166385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(2923), 1, anon_sym_DQUOTE, - STATE(381), 1, + STATE(1381), 1, sym_string, - ACTIONS(1223), 2, + ACTIONS(3104), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1219), 9, + ACTIONS(3102), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175695] = 5, + [166410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9526), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9346), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175720] = 5, + [166435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9534), 1, + ACTIONS(2029), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(871), 1, + sym_string, + ACTIONS(2501), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2499), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175745] = 5, + [166460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(8849), 1, anon_sym_DQUOTE, - STATE(1276), 1, - sym_string, - ACTIONS(2907), 2, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2903), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175770] = 5, + [166485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(10009), 1, + ACTIONS(9348), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175795] = 5, + [166510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10011), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + STATE(1200), 1, + sym_string, + ACTIONS(2995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175820] = 5, + [166535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(10013), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175845] = 5, + [166560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(8706), 1, anon_sym_DQUOTE, - STATE(878), 1, + STATE(3892), 1, sym_string, - ACTIONS(2769), 2, + ACTIONS(8785), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, + ACTIONS(8783), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175870] = 5, + [166585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(9252), 1, + sym__string_content, + ACTIONS(9352), 1, anon_sym_DQUOTE, - STATE(1333), 1, - sym_string, - ACTIONS(3076), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3074), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175895] = 5, + [166610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9498), 1, + ACTIONS(3836), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(1770), 1, + sym_string, + ACTIONS(3838), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(3834), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175920] = 5, + [166635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9502), 1, + ACTIONS(1423), 1, anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, + STATE(827), 1, + sym_string, + ACTIONS(2349), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(2347), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175945] = 4, + [166660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(9252), 1, sym__string_content, - ACTIONS(9911), 2, + ACTIONS(9254), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [175967] = 6, + [166682] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9358), 1, + anon_sym_LF, + ACTIONS(9360), 1, + aux_sym_number_token1, + ACTIONS(9362), 1, + aux_sym_number_token2, + ACTIONS(9364), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9366), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9354), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(4152), 4, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_number, + sym_expansion, + [166714] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10015), 1, + ACTIONS(9368), 1, anon_sym_LT_LT, - ACTIONS(10021), 1, + ACTIONS(9374), 1, anon_sym_LT_LT_DASH, - ACTIONS(10023), 1, + ACTIONS(9376), 1, anon_sym_LT_LT_LT, - ACTIONS(10019), 3, + ACTIONS(9372), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10017), 5, + ACTIONS(9370), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [175992] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10025), 1, - anon_sym_DOLLAR, - ACTIONS(10027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10031), 1, - anon_sym_BQUOTE, - ACTIONS(10033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10035), 1, - sym__heredoc_body_middle, - ACTIONS(10037), 1, - sym_heredoc_end, - STATE(3908), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176023] = 3, + [166739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10041), 2, + ACTIONS(9380), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10039), 9, + ACTIONS(9378), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [176042] = 6, + [166758] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(9382), 1, anon_sym_LT_LT, - ACTIONS(10049), 1, + ACTIONS(9388), 1, anon_sym_LT_LT_DASH, - ACTIONS(10051), 1, + ACTIONS(9390), 1, anon_sym_LT_LT_LT, - ACTIONS(10047), 3, + ACTIONS(9386), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10045), 5, + ACTIONS(9384), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176067] = 6, + [166783] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(9382), 1, anon_sym_LT_LT, - ACTIONS(10059), 1, + ACTIONS(9388), 1, anon_sym_LT_LT_DASH, - ACTIONS(10061), 1, + ACTIONS(9396), 1, anon_sym_LT_LT_LT, - ACTIONS(10057), 3, + ACTIONS(9394), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10055), 5, + ACTIONS(9392), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176092] = 3, + [166808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10065), 2, + ACTIONS(9400), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10063), 9, + ACTIONS(9398), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [176111] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10067), 1, - anon_sym_DOLLAR, - ACTIONS(10070), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10073), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10076), 1, - anon_sym_BQUOTE, - ACTIONS(10079), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10082), 1, - sym__heredoc_body_middle, - ACTIONS(10085), 1, - sym_heredoc_end, - STATE(3907), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176142] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10025), 1, - anon_sym_DOLLAR, - ACTIONS(10027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10031), 1, - anon_sym_BQUOTE, - ACTIONS(10033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10087), 1, - sym__heredoc_body_middle, - ACTIONS(10089), 1, - sym_heredoc_end, - STATE(3907), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176173] = 6, + [166827] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(9382), 1, anon_sym_LT_LT, - ACTIONS(10049), 1, + ACTIONS(9388), 1, anon_sym_LT_LT_DASH, - ACTIONS(10095), 1, + ACTIONS(9406), 1, anon_sym_LT_LT_LT, - ACTIONS(10093), 3, + ACTIONS(9404), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10091), 5, + ACTIONS(9402), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176198] = 6, + [166852] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(9382), 1, anon_sym_LT_LT, - ACTIONS(10049), 1, + ACTIONS(9388), 1, anon_sym_LT_LT_DASH, - ACTIONS(10101), 1, + ACTIONS(9412), 1, anon_sym_LT_LT_LT, - ACTIONS(10099), 3, + ACTIONS(9410), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10097), 5, + ACTIONS(9408), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10105), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10103), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176242] = 6, + [166877] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(9414), 1, anon_sym_LT_LT, - ACTIONS(10049), 1, + ACTIONS(9420), 1, anon_sym_LT_LT_DASH, - ACTIONS(10111), 1, + ACTIONS(9422), 1, anon_sym_LT_LT_LT, - ACTIONS(10109), 3, + ACTIONS(9418), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10107), 5, + ACTIONS(9416), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176267] = 6, + [166902] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10015), 1, + ACTIONS(9414), 1, anon_sym_LT_LT, - ACTIONS(10021), 1, + ACTIONS(9420), 1, anon_sym_LT_LT_DASH, - ACTIONS(10117), 1, + ACTIONS(9428), 1, anon_sym_LT_LT_LT, - ACTIONS(10115), 3, + ACTIONS(9426), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10113), 5, + ACTIONS(9424), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176292] = 3, + [166927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10121), 2, + ACTIONS(9432), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10119), 9, + ACTIONS(9430), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [176311] = 3, + [166946] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9434), 1, + anon_sym_DOLLAR, + ACTIONS(9437), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9443), 1, + anon_sym_BQUOTE, + ACTIONS(9446), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9449), 1, + sym__heredoc_body_middle, + ACTIONS(9452), 1, + sym_heredoc_end, + STATE(3670), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [166977] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9454), 1, + anon_sym_RBRACE3, + ACTIONS(9456), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [166996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10125), 2, + ACTIONS(9460), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10123), 9, + ACTIONS(9458), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, anon_sym_0, anon_sym__, - [176330] = 6, + [167015] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_DOLLAR, + ACTIONS(9464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9468), 1, + anon_sym_BQUOTE, + ACTIONS(9470), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9472), 1, + sym__heredoc_body_middle, + ACTIONS(9474), 1, + sym_heredoc_end, + STATE(3677), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [167046] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(9476), 1, anon_sym_LT_LT, - ACTIONS(10049), 1, + ACTIONS(9482), 1, anon_sym_LT_LT_DASH, - ACTIONS(10131), 1, + ACTIONS(9484), 1, anon_sym_LT_LT_LT, - ACTIONS(10129), 3, + ACTIONS(9480), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10127), 5, + ACTIONS(9478), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176355] = 3, + [167071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 2, + ACTIONS(9488), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10133), 9, + ACTIONS(9486), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [167090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9492), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9490), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [167109] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_DOLLAR, + ACTIONS(9464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9468), 1, + anon_sym_BQUOTE, + ACTIONS(9470), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9494), 1, + sym__heredoc_body_middle, + ACTIONS(9496), 1, + sym_heredoc_end, + STATE(3670), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [167140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8785), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8783), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, anon_sym_0, anon_sym__, - [176374] = 6, + [167159] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10137), 1, + ACTIONS(9382), 1, anon_sym_LT_LT, - ACTIONS(10143), 1, + ACTIONS(9388), 1, anon_sym_LT_LT_DASH, - ACTIONS(10145), 1, + ACTIONS(9502), 1, anon_sym_LT_LT_LT, - ACTIONS(10141), 3, + ACTIONS(9500), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10139), 5, + ACTIONS(9498), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176399] = 2, + [167184] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10147), 10, + ACTIONS(9456), 10, anon_sym_U, anon_sym_u, anon_sym_L, @@ -206085,27 +196866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_K, anon_sym_a, anon_sym_k, - [176415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - sym__concat, - ACTIONS(1268), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176433] = 3, + [167200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 1, + ACTIONS(9504), 1, sym__concat, - ACTIONS(1322), 9, + ACTIONS(8941), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206115,12 +196881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176451] = 3, + [167218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10151), 1, + ACTIONS(1352), 1, sym__concat, - ACTIONS(10149), 9, + ACTIONS(1350), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206130,76 +196896,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176469] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10153), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [176485] = 3, + [167236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 1, - sym__concat, - ACTIONS(1298), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + ACTIONS(6404), 1, anon_sym_DQUOTE, - sym__string_content, + ACTIONS(6412), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - sym__concat, - ACTIONS(1342), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8704), 1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176521] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(5274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10155), 1, - anon_sym_LF, - ACTIONS(10157), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4380), 3, - sym_arithmetic_expansion, - sym_number, + ACTIONS(9508), 1, + sym__comment_word, + ACTIONS(9506), 3, + sym_variable_name, + sym_raw_string, + sym_word, + STATE(3944), 3, + sym_string, + sym_simple_expansion, sym_expansion, - [176549] = 3, + [167262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10159), 1, + ACTIONS(9512), 1, sym__concat, - ACTIONS(9586), 9, + ACTIONS(9510), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206209,12 +196930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176567] = 3, + [167280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1310), 1, sym__concat, - ACTIONS(1272), 9, + ACTIONS(1308), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206224,12 +196945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176585] = 3, + [167298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, + ACTIONS(1314), 1, sym__concat, - ACTIONS(1330), 9, + ACTIONS(1312), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206239,12 +196960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176603] = 3, + [167316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, + ACTIONS(1314), 1, sym__concat, - ACTIONS(1268), 9, + ACTIONS(1312), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206254,12 +196975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176621] = 3, + [167334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(1356), 1, sym__concat, - ACTIONS(1346), 9, + ACTIONS(1354), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206269,12 +196990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176639] = 3, + [167352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 1, + ACTIONS(1290), 1, sym__concat, - ACTIONS(1334), 9, + ACTIONS(1288), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206284,25 +197005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176657] = 3, + [167370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(1360), 1, sym__concat, - ACTIONS(1310), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9586), 9, + ACTIONS(1358), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206312,10 +197020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176690] = 2, + [167388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10161), 9, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -206325,684 +197035,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [176705] = 8, + [167406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(9360), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(9362), 1, aux_sym_number_token2, - ACTIONS(10163), 1, + ACTIONS(9514), 1, anon_sym_LF, - ACTIONS(10165), 1, + ACTIONS(9516), 1, anon_sym_RBRACE3, - ACTIONS(10167), 1, + ACTIONS(9518), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, + ACTIONS(9354), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4829), 2, + STATE(4183), 2, sym_arithmetic_expansion, sym_number, - [176732] = 6, + [167433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1264), 1, anon_sym_LF, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - STATE(3959), 1, + STATE(3711), 1, aux_sym_concatenation_repeat1, - ACTIONS(1242), 5, + ACTIONS(1262), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, sym__special_character, - [176755] = 8, + [167456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(10173), 1, - anon_sym_LF, - ACTIONS(10175), 1, - anon_sym_RBRACE3, - ACTIONS(10177), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, + ACTIONS(8941), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4848), 2, - sym_arithmetic_expansion, - sym_number, - [176782] = 3, - ACTIONS(63), 1, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [167471] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10093), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10091), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176798] = 3, + ACTIONS(9524), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [167486] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10181), 3, + ACTIONS(9528), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10179), 5, + ACTIONS(9526), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176814] = 3, + [167502] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10185), 3, + ACTIONS(9386), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10183), 5, + ACTIONS(9384), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176830] = 7, + [167518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - ACTIONS(10187), 1, + ACTIONS(9530), 1, anon_sym_in, - ACTIONS(10191), 1, + ACTIONS(9534), 1, anon_sym_LF, - STATE(3946), 1, + STATE(3711), 1, aux_sym_concatenation_repeat1, - ACTIONS(10189), 3, + ACTIONS(9532), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [176854] = 7, + [167542] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9538), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9536), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [167558] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - ACTIONS(10193), 1, + ACTIONS(9540), 1, anon_sym_in, - ACTIONS(10197), 1, + ACTIONS(9544), 1, anon_sym_LF, - STATE(3959), 1, + STATE(3721), 1, aux_sym_concatenation_repeat1, - ACTIONS(10195), 3, + ACTIONS(9542), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [176878] = 3, + [167582] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10115), 3, + ACTIONS(9548), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10113), 5, + ACTIONS(9546), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176894] = 3, + [167598] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10201), 3, + ACTIONS(9552), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10199), 5, + ACTIONS(9550), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176910] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - anon_sym_LF, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10203), 1, - sym__concat, - STATE(3951), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [176932] = 3, + [167614] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10129), 3, + ACTIONS(9556), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10127), 5, + ACTIONS(9554), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176948] = 3, + [167630] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10207), 3, + ACTIONS(9410), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10205), 5, + ACTIONS(9408), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176964] = 3, + [167646] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10019), 3, + ACTIONS(9560), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10017), 5, + ACTIONS(9558), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176980] = 3, + [167662] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10099), 3, + ACTIONS(9564), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10097), 5, + ACTIONS(9562), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [176996] = 6, + [167678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, - anon_sym_LF, - ACTIONS(10209), 1, - aux_sym_concatenation_token1, - ACTIONS(10212), 1, - sym__concat, - STATE(3951), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177018] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - ACTIONS(10215), 1, + ACTIONS(9566), 1, anon_sym_in, - ACTIONS(10219), 1, + ACTIONS(9570), 1, anon_sym_LF, - STATE(3959), 1, + STATE(3711), 1, aux_sym_concatenation_repeat1, - ACTIONS(10217), 3, + ACTIONS(9568), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177042] = 3, + [167702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10141), 3, + ACTIONS(9500), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10139), 5, + ACTIONS(9498), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177058] = 7, + [167718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - ACTIONS(10221), 1, + ACTIONS(9572), 1, anon_sym_in, - ACTIONS(10225), 1, + ACTIONS(9576), 1, anon_sym_LF, - STATE(3946), 1, + STATE(3721), 1, aux_sym_concatenation_repeat1, - ACTIONS(10223), 3, + ACTIONS(9574), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177082] = 3, + [167742] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10109), 3, + ACTIONS(9404), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10107), 5, + ACTIONS(9402), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177098] = 7, + [167758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(1278), 1, + anon_sym_LF, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9578), 1, sym__concat, - ACTIONS(10227), 1, - anon_sym_in, - ACTIONS(10231), 1, - anon_sym_LF, - STATE(3946), 1, + STATE(3723), 1, aux_sym_concatenation_repeat1, - ACTIONS(10229), 3, + ACTIONS(1276), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177122] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10047), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10045), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177138] = 7, + [167780] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(9520), 1, aux_sym_concatenation_token1, - ACTIONS(10171), 1, + ACTIONS(9522), 1, sym__concat, - ACTIONS(10233), 1, + ACTIONS(9580), 1, anon_sym_in, - ACTIONS(10237), 1, - anon_sym_LF, - STATE(3959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10235), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, + ACTIONS(9584), 1, anon_sym_LF, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10239), 1, - sym__concat, - STATE(3951), 1, + STATE(3721), 1, aux_sym_concatenation_repeat1, - ACTIONS(1246), 4, - anon_sym_in, + ACTIONS(9582), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177184] = 3, + [167804] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10243), 3, + ACTIONS(9480), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10241), 5, + ACTIONS(9478), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177200] = 3, + [167820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(9418), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10245), 5, + ACTIONS(9416), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177216] = 3, + [167836] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9520), 1, + aux_sym_concatenation_token1, + ACTIONS(9522), 1, + sym__concat, + ACTIONS(9586), 1, + anon_sym_in, + ACTIONS(9590), 1, + anon_sym_LF, + STATE(3711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9588), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167860] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10251), 3, + ACTIONS(9594), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10249), 5, + ACTIONS(9592), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177232] = 3, + [167876] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10255), 3, + ACTIONS(9426), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10253), 5, + ACTIONS(9424), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177248] = 3, + [167892] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10057), 3, + ACTIONS(9372), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10055), 5, + ACTIONS(9370), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177264] = 3, + [167908] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10259), 3, + ACTIONS(9598), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10257), 5, + ACTIONS(9596), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177280] = 3, + [167924] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10263), 3, + ACTIONS(9394), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(10261), 5, + ACTIONS(9392), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [177296] = 3, + [167940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, - sym__concat, + ACTIONS(1284), 1, anon_sym_LF, - ACTIONS(1272), 5, + ACTIONS(9520), 1, + aux_sym_concatenation_token1, + ACTIONS(9600), 1, + sym__concat, + STATE(3723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1282), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_concatenation_token1, - [177311] = 6, + [167962] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10265), 1, - anon_sym_LPAREN, - STATE(2947), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177332] = 6, + ACTIONS(9604), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9602), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [167978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10233), 1, - anon_sym_in, - ACTIONS(10237), 1, + ACTIONS(1271), 1, anon_sym_LF, - ACTIONS(10267), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(10235), 3, + ACTIONS(9606), 1, + aux_sym_concatenation_token1, + ACTIONS(9609), 1, + sym__concat, + STATE(3723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177353] = 3, + [168000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1271), 2, sym__concat, anon_sym_LF, - ACTIONS(1318), 5, + ACTIONS(1266), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177368] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + [168015] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3135), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177389] = 6, - ACTIONS(29), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10271), 1, + ACTIONS(9612), 1, anon_sym_LPAREN, - STATE(3143), 3, + STATE(2971), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177410] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 1, - anon_sym_DOLLAR, - ACTIONS(1324), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177425] = 3, + [168036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 2, + ACTIONS(1314), 2, sym__concat, anon_sym_LF, - ACTIONS(1342), 5, + ACTIONS(1312), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177440] = 3, + [168051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 2, + ACTIONS(1294), 2, sym__concat, anon_sym_LF, - ACTIONS(1346), 5, + ACTIONS(1292), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177455] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3157), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177476] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3566), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177497] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_DOLLAR, - ACTIONS(1344), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177512] = 3, + [168066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 2, + ACTIONS(1336), 2, sym__concat, anon_sym_LF, - ACTIONS(1326), 5, + ACTIONS(1334), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177527] = 3, + [168081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, + ACTIONS(1310), 2, sym__concat, anon_sym_LF, - ACTIONS(1284), 5, + ACTIONS(1308), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177542] = 6, - ACTIONS(29), 1, + [168096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 1, + anon_sym_LF, + ACTIONS(9614), 1, + sym__special_character, + STATE(3730), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168115] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(262), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, + ACTIONS(9617), 1, anon_sym_LPAREN, - STATE(3162), 3, + STATE(3340), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177563] = 3, + [168136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, + ACTIONS(1332), 2, sym__concat, anon_sym_LF, - ACTIONS(1322), 5, + ACTIONS(1330), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177578] = 3, + [168151] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOLLAR, + ACTIONS(1356), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [168166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, + ACTIONS(1314), 2, sym__concat, anon_sym_LF, - ACTIONS(1310), 5, + ACTIONS(1312), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177593] = 6, + [168181] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207011,37 +197643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10273), 1, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3179), 3, + STATE(3097), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177614] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 1, - anon_sym_DOLLAR, - ACTIONS(1336), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177629] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 1, - anon_sym_DOLLAR, - ACTIONS(1274), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177644] = 6, + [168202] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207050,169 +197658,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3134), 3, + STATE(3073), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177665] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, + [168223] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(296), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10275), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3586), 3, + STATE(3314), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177686] = 3, + [168244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1322), 2, sym__concat, anon_sym_LF, - ACTIONS(1298), 5, + ACTIONS(1320), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177701] = 3, + [168259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(1298), 2, sym__concat, anon_sym_LF, - ACTIONS(1276), 5, + ACTIONS(1296), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177716] = 3, + [168274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(1302), 2, sym__concat, anon_sym_LF, - ACTIONS(1268), 5, + ACTIONS(1300), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177731] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(2950), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177752] = 3, + [168289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(1290), 2, sym__concat, anon_sym_LF, - ACTIONS(1268), 5, + ACTIONS(1288), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177767] = 3, + [168304] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(1330), 1, - anon_sym_DOLLAR, - ACTIONS(1332), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177782] = 6, + ACTIONS(9621), 1, + anon_sym_LPAREN, + STATE(3094), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, - anon_sym_in, - ACTIONS(10219), 1, + ACTIONS(1348), 2, + sym__concat, anon_sym_LF, - ACTIONS(10267), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(10217), 3, + ACTIONS(1346), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [177803] = 3, + aux_sym_concatenation_token1, + [168340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1360), 2, sym__concat, anon_sym_LF, - ACTIONS(1302), 5, + ACTIONS(1358), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177818] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, + [168355] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(434), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(436), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10279), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3006), 3, + STATE(3069), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1258), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177854] = 3, + [168376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1318), 2, sym__concat, anon_sym_LF, - ACTIONS(1280), 5, + ACTIONS(1316), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177869] = 6, + [168391] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207221,25 +197802,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10281), 1, + ACTIONS(9623), 1, anon_sym_LPAREN, - STATE(3123), 3, + STATE(3077), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177890] = 3, + [168412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1306), 2, sym__concat, anon_sym_LF, - ACTIONS(1338), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [177905] = 6, + [168427] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207248,64 +197829,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(9625), 1, anon_sym_LPAREN, - STATE(3561), 3, + STATE(3329), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177926] = 3, + [168448] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_DOLLAR, - ACTIONS(1270), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177941] = 6, + ACTIONS(9627), 1, + anon_sym_LPAREN, + STATE(3126), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168469] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(430), 1, + ACTIONS(9619), 1, + anon_sym_LPAREN, + STATE(3124), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168490] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(434), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(436), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(2942), 3, + STATE(3090), 3, sym_compound_statement, sym_subshell, sym_test_command, - [177962] = 3, + [168511] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1350), 1, anon_sym_DOLLAR, - ACTIONS(1270), 6, + ACTIONS(1352), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [177977] = 3, - ACTIONS(3), 1, + [168526] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1296), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177992] = 6, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9629), 1, + anon_sym_LPAREN, + STATE(2922), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168547] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9631), 1, + anon_sym_LPAREN, + STATE(2880), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168568] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207314,156 +197931,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3110), 3, + STATE(3086), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178013] = 6, + [168589] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(430), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(434), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(436), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, + ACTIONS(9631), 1, anon_sym_LPAREN, - STATE(3007), 3, + STATE(2889), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178034] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - anon_sym_LF, - ACTIONS(10283), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178053] = 3, - ACTIONS(3), 1, + [168610] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1334), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [178068] = 6, + ACTIONS(9619), 1, + anon_sym_LPAREN, + STATE(3123), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [168631] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(292), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(296), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10275), 1, + ACTIONS(9631), 1, anon_sym_LPAREN, - STATE(3582), 3, + STATE(2973), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178089] = 6, + [168652] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(292), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(296), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10286), 1, + ACTIONS(9631), 1, anon_sym_LPAREN, - STATE(3576), 3, + STATE(2974), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178110] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, + [168673] = 6, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(434), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(436), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3010), 3, + STATE(3333), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178131] = 6, + [168694] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1346), 1, + anon_sym_DOLLAR, + ACTIONS(1348), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [168709] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_DOLLAR, + ACTIONS(1360), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [168724] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1312), 1, + anon_sym_DOLLAR, + ACTIONS(1314), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [168739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1350), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [168754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(9566), 1, anon_sym_in, - ACTIONS(10197), 1, + ACTIONS(9570), 1, anon_sym_LF, - ACTIONS(10267), 1, + ACTIONS(9633), 1, sym__special_character, - STATE(4009), 1, + STATE(3730), 1, aux_sym__literal_repeat1, - ACTIONS(10195), 3, + ACTIONS(9568), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [178152] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + [168775] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9530), 1, + anon_sym_in, + ACTIONS(9534), 1, + anon_sym_LF, + ACTIONS(9633), 1, + sym__special_character, + STATE(3730), 1, + aux_sym__literal_repeat1, + ACTIONS(9532), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1338), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [168811] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10288), 1, - anon_sym_LPAREN, - STATE(3567), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178173] = 6, - ACTIONS(29), 1, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(262), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10290), 1, + ACTIONS(9635), 1, anon_sym_LPAREN, - STATE(3119), 3, + STATE(3353), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178194] = 3, + [168832] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1346), 1, + ACTIONS(1312), 1, anon_sym_DOLLAR, - ACTIONS(1348), 6, + ACTIONS(1314), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [178209] = 6, + [168847] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207472,52 +198138,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(9619), 1, anon_sym_LPAREN, - STATE(3129), 3, + STATE(3074), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178230] = 3, + [168868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 2, + ACTIONS(1356), 2, sym__concat, anon_sym_LF, - ACTIONS(1330), 5, + ACTIONS(1354), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [178245] = 6, - ACTIONS(29), 1, + [168883] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym_in, + ACTIONS(9590), 1, + anon_sym_LF, + ACTIONS(9633), 1, + sym__special_character, + STATE(3730), 1, + aux_sym__literal_repeat1, + ACTIONS(9588), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168904] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(262), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, + ACTIONS(9635), 1, anon_sym_LPAREN, - STATE(3124), 3, + STATE(3339), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [178281] = 6, + [168925] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -207526,11184 +198195,10938 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(9637), 1, anon_sym_LPAREN, - STATE(3111), 3, + STATE(3072), 3, sym_compound_statement, sym_subshell, sym_test_command, - [178302] = 6, + [168946] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9639), 1, + anon_sym_RPAREN, + ACTIONS(9641), 1, + anon_sym_PIPE, + STATE(3812), 1, + aux_sym_concatenation_repeat1, + STATE(4047), 1, + aux_sym_case_item_repeat1, + ACTIONS(9643), 2, + sym__concat, + aux_sym_concatenation_token1, + [168966] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9649), 1, + anon_sym_LF, + STATE(2802), 1, + sym__c_terminator, + STATE(3795), 1, + aux_sym__for_body_repeat1, + ACTIONS(9645), 2, + anon_sym_SEMI, + anon_sym_AMP, + [168986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9653), 1, + anon_sym_LF, + STATE(2688), 1, + sym__c_terminator, + STATE(3856), 1, + aux_sym__for_body_repeat1, + ACTIONS(9651), 2, + anon_sym_SEMI, + anon_sym_AMP, + [169006] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9657), 1, + anon_sym_LF, + STATE(2512), 1, + sym__c_terminator, + STATE(3800), 1, + aux_sym__for_body_repeat1, + ACTIONS(9655), 2, + anon_sym_SEMI, + anon_sym_AMP, + [169026] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10292), 1, + ACTIONS(9659), 1, anon_sym_fi, - ACTIONS(10294), 1, + ACTIONS(9661), 1, anon_sym_elif, - ACTIONS(10296), 1, + ACTIONS(9663), 1, anon_sym_else, - STATE(4585), 1, + STATE(4223), 1, sym_else_clause, - STATE(4072), 2, + STATE(3854), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [178322] = 6, + [169046] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9667), 1, + anon_sym_LF, + STATE(2707), 1, + sym__c_terminator, + STATE(3801), 1, + aux_sym__for_body_repeat1, + ACTIONS(9665), 2, + anon_sym_SEMI, + anon_sym_AMP, + [169066] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(9661), 1, anon_sym_elif, - ACTIONS(10296), 1, + ACTIONS(9663), 1, anon_sym_else, - ACTIONS(10298), 1, + ACTIONS(9669), 1, anon_sym_fi, - STATE(4425), 1, + STATE(4553), 1, sym_else_clause, - STATE(4072), 2, + STATE(3854), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [178342] = 6, + [169086] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10300), 1, + STATE(3811), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9643), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1264), 3, anon_sym_RPAREN, - ACTIONS(10302), 1, anon_sym_PIPE, - STATE(4089), 1, + sym__special_character, + [169102] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9671), 1, + anon_sym_RPAREN, + ACTIONS(9673), 1, + anon_sym_DQUOTE, + ACTIONS(9675), 1, + sym_raw_string, + ACTIONS(9677), 1, + aux_sym__expansion_regex_token1, + ACTIONS(9679), 1, + sym_regex, + STATE(4440), 1, + sym_string, + [169124] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(9681), 1, + anon_sym_RPAREN, + STATE(3811), 1, aux_sym_concatenation_repeat1, - STATE(4254), 1, + STATE(3990), 1, aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178362] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10306), 1, - anon_sym_fi, - STATE(4640), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178382] = 6, + [169144] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10308), 1, + ACTIONS(9683), 1, anon_sym_RPAREN, - STATE(4089), 1, + STATE(3811), 1, aux_sym_concatenation_repeat1, - STATE(4264), 1, + STATE(4061), 1, aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178402] = 6, + [169164] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(9661), 1, anon_sym_elif, - ACTIONS(10296), 1, + ACTIONS(9663), 1, anon_sym_else, - ACTIONS(10310), 1, + ACTIONS(9685), 1, anon_sym_fi, - STATE(4604), 1, + STATE(4246), 1, sym_else_clause, - STATE(4072), 2, + STATE(3854), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [178422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10316), 1, - anon_sym_LF, - STATE(2872), 1, - sym__c_terminator, - STATE(4045), 1, - aux_sym__for_body_repeat1, - ACTIONS(10312), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178442] = 6, + [169184] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10318), 1, + ACTIONS(9687), 1, anon_sym_RPAREN, - STATE(4091), 1, + STATE(3812), 1, aux_sym_concatenation_repeat1, - STATE(4244), 1, + STATE(4055), 1, aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178462] = 4, + [169204] = 6, ACTIONS(63), 1, sym_comment, - STATE(4091), 1, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(9689), 1, + anon_sym_RPAREN, + STATE(3812), 1, aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, + STATE(3987), 1, + aux_sym_case_item_repeat1, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1244), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [178478] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10322), 1, - anon_sym_LF, - STATE(2801), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10320), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178498] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10326), 1, - anon_sym_LF, - STATE(2544), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10324), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178518] = 3, - ACTIONS(3), 1, + [169224] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 1, - anon_sym_LF, - ACTIONS(1242), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [178532] = 6, + ACTIONS(9661), 1, + anon_sym_elif, + ACTIONS(9663), 1, + anon_sym_else, + ACTIONS(9691), 1, + anon_sym_fi, + STATE(4337), 1, + sym_else_clause, + STATE(3854), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [169244] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10328), 1, + ACTIONS(9693), 1, anon_sym_RPAREN, - STATE(4091), 1, + STATE(3812), 1, aux_sym_concatenation_repeat1, - STATE(4187), 1, + STATE(4058), 1, aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178552] = 5, + [169264] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 1, - sym__special_character, - STATE(4088), 1, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(9695), 1, + anon_sym_RPAREN, + STATE(3811), 1, aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(10330), 2, + STATE(4048), 1, + aux_sym_case_item_repeat1, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10334), 1, - anon_sym_LF, - STATE(2516), 1, - sym__c_terminator, - STATE(4033), 1, - aux_sym__for_body_repeat1, - ACTIONS(10332), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178590] = 6, + [169284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10338), 1, + ACTIONS(1264), 1, anon_sym_LF, - STATE(2802), 1, - sym__c_terminator, - STATE(4047), 1, - aux_sym__for_body_repeat1, - ACTIONS(10336), 2, + ACTIONS(1262), 5, + anon_sym_in, anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [178610] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10340), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4281), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178630] = 6, + sym__special_character, + [169298] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(9661), 1, anon_sym_elif, - ACTIONS(10296), 1, + ACTIONS(9663), 1, anon_sym_else, - ACTIONS(10342), 1, + ACTIONS(9697), 1, anon_sym_fi, - STATE(4412), 1, + STATE(4351), 1, sym_else_clause, - STATE(4072), 2, + STATE(3854), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [178650] = 6, + [169318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10314), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(10346), 1, + ACTIONS(9701), 1, anon_sym_LF, - STATE(2865), 1, + STATE(2813), 1, sym__c_terminator, - STATE(4032), 1, + STATE(3856), 1, aux_sym__for_body_repeat1, - ACTIONS(10344), 2, + ACTIONS(9699), 2, anon_sym_SEMI, anon_sym_AMP, - [178670] = 6, + [169338] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10348), 1, - anon_sym_RPAREN, - STATE(4089), 1, + ACTIONS(1262), 1, + sym__special_character, + STATE(3857), 1, aux_sym_concatenation_repeat1, - STATE(4169), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(1264), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(9703), 2, sym__concat, aux_sym_concatenation_token1, - [178690] = 6, + [169356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + anon_sym_COMMA, + ACTIONS(9707), 1, + anon_sym_LF, + STATE(2736), 1, + sym__c_terminator, + STATE(3778), 1, + aux_sym__for_body_repeat1, + ACTIONS(9705), 2, + anon_sym_SEMI, + anon_sym_AMP, + [169376] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(9661), 1, anon_sym_elif, - ACTIONS(10296), 1, + ACTIONS(9663), 1, anon_sym_else, - ACTIONS(10350), 1, + ACTIONS(9709), 1, anon_sym_fi, - STATE(4748), 1, + STATE(4565), 1, sym_else_clause, - STATE(4072), 2, + STATE(3854), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [178710] = 6, + [169396] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10352), 1, + ACTIONS(9711), 1, anon_sym_RPAREN, - STATE(4089), 1, + STATE(3811), 1, aux_sym_concatenation_repeat1, - STATE(4157), 1, + STATE(4035), 1, aux_sym_case_item_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - [178730] = 6, + [169416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10314), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(10356), 1, + ACTIONS(9715), 1, anon_sym_LF, - STATE(2834), 1, + STATE(2486), 1, sym__c_terminator, - STATE(4073), 1, + STATE(3856), 1, aux_sym__for_body_repeat1, - ACTIONS(10354), 2, + ACTIONS(9713), 2, anon_sym_SEMI, anon_sym_AMP, - [178750] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10358), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4226), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178770] = 6, + [169436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10314), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(10362), 1, + ACTIONS(9719), 1, anon_sym_LF, - STATE(2882), 1, + STATE(2801), 1, sym__c_terminator, - STATE(4073), 1, + STATE(3856), 1, aux_sym__for_body_repeat1, - ACTIONS(10360), 2, + ACTIONS(9717), 2, anon_sym_SEMI, anon_sym_AMP, - [178790] = 5, + [169456] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3004), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178807] = 5, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169471] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10368), 1, + ACTIONS(9723), 1, sym_simple_heredoc_body, - STATE(4414), 1, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + STATE(4338), 1, sym_heredoc_body, - STATE(3602), 2, + STATE(3391), 2, sym__heredoc_body, sym__simple_heredoc_body, - [178824] = 5, + [169488] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10370), 1, + ACTIONS(9727), 1, sym_simple_heredoc_body, - STATE(4564), 1, + STATE(4282), 1, sym_heredoc_body, - STATE(3022), 2, + STATE(2979), 2, sym__heredoc_body, sym__simple_heredoc_body, - [178841] = 6, + [169505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9729), 1, + anon_sym_in, + ACTIONS(9733), 1, + anon_sym_LF, + ACTIONS(9731), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169520] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(430), 1, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(10372), 1, + ACTIONS(9735), 1, anon_sym_SEMI, - ACTIONS(10374), 1, + ACTIONS(9737), 1, anon_sym_do, - STATE(3045), 1, + STATE(3357), 1, sym_do_group, - STATE(3046), 1, + STATE(3363), 1, sym_compound_statement, - [178860] = 5, + [169539] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3085), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178877] = 5, + ACTIONS(9739), 1, + sym__concat, + ACTIONS(4792), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [169552] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(9711), 1, + anon_sym_RPAREN, + ACTIONS(9741), 1, + sym__special_character, + STATE(3915), 1, + aux_sym__literal_repeat1, + STATE(3985), 1, + aux_sym_case_item_repeat1, + [169571] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10376), 1, + STATE(3809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 2, anon_sym_SLASH, - ACTIONS(10378), 1, anon_sym_RBRACE3, - STATE(4080), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, + ACTIONS(9743), 2, sym__concat, aux_sym_concatenation_token1, - [178894] = 5, + [169586] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5555), 1, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169601] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9643), 1, + aux_sym_concatenation_token1, + ACTIONS(9746), 1, + sym__concat, + STATE(3823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, anon_sym_RPAREN, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - sym_string, - ACTIONS(5559), 2, - sym_regex, - sym_raw_string, - [178911] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + [169618] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(10380), 1, - anon_sym_in, - ACTIONS(10384), 1, - anon_sym_LF, - ACTIONS(10382), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178926] = 5, + ACTIONS(9643), 1, + aux_sym_concatenation_token1, + ACTIONS(9748), 1, + sym__concat, + STATE(3823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1284), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [169635] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE3, + STATE(3802), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169650] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169665] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169680] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - STATE(4724), 1, + ACTIONS(9752), 1, + sym_simple_heredoc_body, + STATE(4214), 1, sym_heredoc_body, - STATE(3014), 2, + STATE(2993), 2, sym__heredoc_body, sym__simple_heredoc_body, - [178943] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10340), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4243), 1, - aux_sym_case_item_repeat1, - [178962] = 5, + [169697] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10370), 1, + ACTIONS(9752), 1, sym_simple_heredoc_body, - STATE(4564), 1, + STATE(4214), 1, sym_heredoc_body, - STATE(3057), 2, + STATE(2994), 2, sym__heredoc_body, sym__simple_heredoc_body, - [178979] = 4, - ACTIONS(3), 1, + [169714] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(10221), 1, - anon_sym_in, - ACTIONS(10225), 1, - anon_sym_LF, - ACTIONS(10223), 3, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(9754), 1, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178994] = 5, + ACTIONS(9756), 1, + anon_sym_do, + STATE(3016), 1, + sym_compound_statement, + STATE(3065), 1, + sym_do_group, + [169733] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10388), 1, + ACTIONS(9727), 1, sym_simple_heredoc_body, - STATE(4591), 1, + STATE(4282), 1, sym_heredoc_body, - STATE(3584), 2, + STATE(3052), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179011] = 5, + [169750] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_SEMI, + ACTIONS(9760), 1, + anon_sym_do, + STATE(2996), 1, + sym_compound_statement, + STATE(2997), 1, + sym_do_group, + [169769] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10390), 1, + ACTIONS(9762), 1, anon_sym_SLASH, - ACTIONS(10392), 1, + ACTIONS(9764), 1, anon_sym_RBRACE3, - STATE(4080), 1, + STATE(3859), 1, aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, + ACTIONS(9703), 2, sym__concat, aux_sym_concatenation_token1, - [179028] = 4, + [169786] = 4, ACTIONS(63), 1, sym_comment, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(10394), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179043] = 5, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169801] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10396), 1, - anon_sym_SLASH, - ACTIONS(10398), 1, - anon_sym_RBRACE3, - STATE(4088), 1, + STATE(3823), 1, aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, + ACTIONS(1271), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(9766), 2, sym__concat, aux_sym_concatenation_token1, - [179060] = 4, + [169816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10400), 1, + ACTIONS(9769), 1, anon_sym_in, - ACTIONS(10404), 1, + ACTIONS(9773), 1, anon_sym_LF, - ACTIONS(10402), 3, + ACTIONS(9771), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [179075] = 4, + [169831] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + ACTIONS(9727), 1, + sym_simple_heredoc_body, + STATE(4282), 1, + sym_heredoc_body, + STATE(3010), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [169848] = 4, ACTIONS(63), 1, sym_comment, - STATE(4091), 1, + STATE(3812), 1, aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, + ACTIONS(9643), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(10406), 2, + ACTIONS(9775), 2, anon_sym_RPAREN, anon_sym_PIPE, - [179090] = 5, + [169863] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - ACTIONS(10408), 1, + STATE(3811), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9643), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(9777), 2, anon_sym_RPAREN, - STATE(4515), 1, - sym_string, - ACTIONS(10410), 2, - sym_regex, - sym_raw_string, - [179107] = 5, + anon_sym_PIPE, + [169878] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, + ACTIONS(9779), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(9781), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169893] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169908] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169923] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9786), 1, + sym__concat, + ACTIONS(4780), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [169936] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9788), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169951] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5242), 1, + anon_sym_RBRACE3, + STATE(3815), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169966] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5479), 1, + anon_sym_RBRACE3, + STATE(3829), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [169981] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(9695), 1, + anon_sym_RPAREN, + ACTIONS(9741), 1, + sym__special_character, + STATE(3915), 1, + aux_sym__literal_repeat1, + STATE(3996), 1, + aux_sym_case_item_repeat1, + [170000] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9723), 1, sym_simple_heredoc_body, - STATE(4591), 1, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + STATE(4338), 1, sym_heredoc_body, - STATE(3577), 2, + STATE(3381), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179124] = 5, + [170017] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9790), 1, + anon_sym_RBRACE3, + STATE(3828), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(5254), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [170032] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10388), 1, + ACTIONS(9752), 1, sym_simple_heredoc_body, - STATE(4591), 1, + STATE(4214), 1, sym_heredoc_body, - STATE(3575), 2, + STATE(2988), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179141] = 5, + [170049] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10364), 1, + ACTIONS(9723), 1, sym_simple_heredoc_body, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - STATE(4724), 1, + STATE(4338), 1, sym_heredoc_body, - STATE(3035), 2, + STATE(3361), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179158] = 5, + [170066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9540), 1, + anon_sym_in, + ACTIONS(9544), 1, + anon_sym_LF, + ACTIONS(9542), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [170081] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10370), 1, + ACTIONS(9792), 1, sym_simple_heredoc_body, - STATE(4564), 1, + STATE(4555), 1, sym_heredoc_body, - STATE(3023), 2, + STATE(3341), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179175] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10328), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4242), 1, - aux_sym_case_item_repeat1, - [179194] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10414), 1, - anon_sym_elif, - ACTIONS(10412), 2, - anon_sym_fi, - anon_sym_else, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [179209] = 5, + [170098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10419), 1, - anon_sym_COMMA, - ACTIONS(10422), 1, + ACTIONS(9572), 1, + anon_sym_in, + ACTIONS(9576), 1, anon_sym_LF, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10417), 2, + ACTIONS(9574), 3, anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [179226] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(10424), 2, - sym__concat, - aux_sym_concatenation_token1, - [179241] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10427), 1, - anon_sym_SEMI, - ACTIONS(10429), 1, - anon_sym_do, - STATE(2997), 1, - sym_compound_statement, - STATE(3041), 1, - sym_do_group, - [179260] = 6, + [170113] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10358), 1, + ACTIONS(9683), 1, anon_sym_RPAREN, - ACTIONS(10386), 1, + ACTIONS(9741), 1, sym__special_character, - STATE(4130), 1, + STATE(3915), 1, aux_sym__literal_repeat1, - STATE(4210), 1, + STATE(4062), 1, aux_sym_case_item_repeat1, - [179279] = 5, + [170132] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10368), 1, + ACTIONS(9792), 1, sym_simple_heredoc_body, - STATE(4414), 1, + STATE(4555), 1, sym_heredoc_body, - STATE(3601), 2, + STATE(3348), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179296] = 5, + [170149] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10368), 1, + ACTIONS(9727), 1, sym_simple_heredoc_body, - STATE(4414), 1, + STATE(4282), 1, sym_heredoc_body, - STATE(3598), 2, + STATE(2986), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179313] = 4, + [170166] = 5, ACTIONS(63), 1, sym_comment, - STATE(4079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(10431), 2, - sym__concat, - aux_sym_concatenation_token1, - [179328] = 5, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + ACTIONS(9792), 1, + sym_simple_heredoc_body, + STATE(4555), 1, + sym_heredoc_body, + STATE(3351), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [170183] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10330), 1, - aux_sym_concatenation_token1, - ACTIONS(10434), 1, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + ACTIONS(9752), 1, + sym_simple_heredoc_body, + STATE(4214), 1, + sym_heredoc_body, + STATE(2990), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [170200] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9723), 1, + sym_simple_heredoc_body, + ACTIONS(9725), 1, + sym__heredoc_body_beginning, + STATE(4338), 1, + sym_heredoc_body, + STATE(3389), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [170217] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9794), 1, sym__concat, - STATE(4074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, + ACTIONS(4835), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170230] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9796), 1, anon_sym_SLASH, + ACTIONS(9798), 1, anon_sym_RBRACE3, - [179345] = 4, + STATE(3857), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9703), 2, + sym__concat, + aux_sym_concatenation_token1, + [170247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10227), 1, + ACTIONS(9800), 1, anon_sym_in, - ACTIONS(10231), 1, + ACTIONS(9804), 1, anon_sym_LF, - ACTIONS(10229), 3, + ACTIONS(9802), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [179360] = 5, + [170262] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, - sym_simple_heredoc_body, - STATE(4591), 1, - sym_heredoc_body, - STATE(3585), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179377] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10318), 1, + ACTIONS(9681), 1, anon_sym_RPAREN, - ACTIONS(10386), 1, + ACTIONS(9741), 1, sym__special_character, - STATE(4130), 1, + STATE(3915), 1, aux_sym__literal_repeat1, - STATE(4286), 1, + STATE(4032), 1, aux_sym_case_item_repeat1, - [179396] = 5, + [170281] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, + ACTIONS(9725), 1, sym__heredoc_body_beginning, - ACTIONS(10368), 1, + ACTIONS(9792), 1, sym_simple_heredoc_body, - STATE(4414), 1, + STATE(4555), 1, sym_heredoc_body, - STATE(3597), 2, + STATE(3343), 2, sym__heredoc_body, sym__simple_heredoc_body, - [179413] = 5, + [170298] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10436), 1, - anon_sym_SLASH, - ACTIONS(10438), 1, - anon_sym_RBRACE3, - STATE(4088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [179430] = 4, + ACTIONS(9808), 1, + anon_sym_elif, + ACTIONS(9806), 2, + anon_sym_fi, + anon_sym_else, + STATE(3854), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [170313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10187), 1, + ACTIONS(9580), 1, anon_sym_in, - ACTIONS(10191), 1, + ACTIONS(9584), 1, anon_sym_LF, - ACTIONS(10189), 3, + ACTIONS(9582), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [179445] = 4, + [170328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10440), 1, - anon_sym_in, - ACTIONS(10444), 1, + ACTIONS(9813), 1, + anon_sym_COMMA, + ACTIONS(9816), 1, anon_sym_LF, - ACTIONS(10442), 3, + STATE(3856), 1, + aux_sym__for_body_repeat1, + ACTIONS(9811), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - [179460] = 5, + [170345] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10330), 1, + ACTIONS(9703), 1, aux_sym_concatenation_token1, - ACTIONS(10446), 1, + ACTIONS(9818), 1, sym__concat, - STATE(4074), 1, + STATE(3809), 1, aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, + ACTIONS(1278), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [179477] = 5, + [170362] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10304), 1, + ACTIONS(9820), 1, + sym__concat, + ACTIONS(4841), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170375] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9703), 1, aux_sym_concatenation_token1, - ACTIONS(10448), 1, + ACTIONS(9822), 1, sym__concat, - STATE(4079), 1, + STATE(3809), 1, aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179494] = 6, + ACTIONS(1284), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [170392] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(63), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(10450), 1, - anon_sym_SEMI, - ACTIONS(10452), 1, + ACTIONS(9760), 1, anon_sym_do, - STATE(3607), 1, + STATE(2967), 1, sym_do_group, - STATE(3608), 1, + STATE(2969), 1, sym_compound_statement, - [179513] = 5, + [170408] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10304), 1, - aux_sym_concatenation_token1, - ACTIONS(10454), 1, + ACTIONS(1322), 4, sym__concat, - STATE(4079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, anon_sym_RPAREN, anon_sym_PIPE, - [179530] = 5, + aux_sym_concatenation_token1, + [170418] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10370), 1, - sym_simple_heredoc_body, - STATE(4564), 1, - sym_heredoc_body, - STATE(3055), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179547] = 2, + ACTIONS(1314), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170428] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, + ACTIONS(1314), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170438] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9796), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(9798), 1, anon_sym_RBRACE3, - [179557] = 2, + ACTIONS(9824), 1, + sym__special_character, + STATE(3871), 1, + aux_sym__literal_repeat1, + [170454] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(9829), 1, + anon_sym_RBRACE3, + STATE(3865), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(9826), 2, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, aux_sym_concatenation_token1, - [179567] = 5, + [170468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + anon_sym_LF, + ACTIONS(9831), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [170480] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10456), 1, - anon_sym_esac, - ACTIONS(10458), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10460), 1, - anon_sym_SEMI_AMP, - ACTIONS(10462), 1, - anon_sym_SEMI_SEMI_AMP, - [179583] = 5, + ACTIONS(1314), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [170490] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10464), 1, - anon_sym_esac, - ACTIONS(10466), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10468), 1, - anon_sym_SEMI_AMP, - ACTIONS(10470), 1, - anon_sym_SEMI_SEMI_AMP, - [179599] = 2, + ACTIONS(1314), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [170500] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1332), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [179609] = 2, + anon_sym_RBRACE3, + [170510] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1322), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179619] = 5, + [170520] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_esac, - ACTIONS(10474), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10476), 1, - anon_sym_SEMI_AMP, - ACTIONS(10478), 1, - anon_sym_SEMI_SEMI_AMP, - [179635] = 5, + ACTIONS(9835), 1, + sym__special_character, + STATE(3871), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [170534] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10480), 1, - anon_sym_esac, - ACTIONS(10482), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10484), 1, - anon_sym_SEMI_AMP, - ACTIONS(10486), 1, - anon_sym_SEMI_SEMI_AMP, - [179651] = 5, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(9756), 1, + anon_sym_do, + STATE(3019), 1, + sym_compound_statement, + STATE(3027), 1, + sym_do_group, + [170550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9816), 1, + anon_sym_LF, + ACTIONS(9811), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [170562] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10456), 1, - anon_sym_esac, - ACTIONS(10488), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10490), 1, - anon_sym_SEMI_AMP, - ACTIONS(10492), 1, - anon_sym_SEMI_SEMI_AMP, - [179667] = 2, + ACTIONS(5036), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170572] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(5040), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170582] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4792), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [179677] = 2, + [170592] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1290), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [179687] = 5, + anon_sym_RBRACE3, + [170602] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3596), 1, - sym_compound_statement, - STATE(3621), 1, - sym_do_group, - [179703] = 2, + ACTIONS(4780), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170612] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1310), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179713] = 5, + [170622] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(9838), 1, anon_sym_esac, - ACTIONS(10494), 1, + ACTIONS(9840), 1, anon_sym_SEMI_SEMI, - ACTIONS(10496), 1, + ACTIONS(9842), 1, anon_sym_SEMI_AMP, - ACTIONS(10498), 1, + ACTIONS(9844), 1, anon_sym_SEMI_SEMI_AMP, - [179729] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10436), 1, - anon_sym_SLASH, - ACTIONS(10438), 1, - anon_sym_RBRACE3, - ACTIONS(10500), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - [179745] = 2, + [170638] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1352), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [179755] = 5, + anon_sym_RBRACE3, + [170648] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10472), 1, + ACTIONS(9846), 1, anon_sym_esac, - ACTIONS(10502), 1, + ACTIONS(9848), 1, anon_sym_SEMI_SEMI, - ACTIONS(10504), 1, + ACTIONS(9850), 2, anon_sym_SEMI_AMP, - ACTIONS(10506), 1, anon_sym_SEMI_SEMI_AMP, - [179771] = 2, + [170662] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1356), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [179781] = 2, + anon_sym_RBRACE3, + [170672] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179791] = 2, + ACTIONS(9852), 1, + anon_sym_esac, + ACTIONS(9854), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9856), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [170686] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1340), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179801] = 4, + [170696] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10508), 1, + ACTIONS(9838), 1, anon_sym_esac, - ACTIONS(10510), 1, + ACTIONS(9858), 1, anon_sym_SEMI_SEMI, - ACTIONS(10512), 2, + ACTIONS(9860), 1, anon_sym_SEMI_AMP, + ACTIONS(9862), 1, anon_sym_SEMI_SEMI_AMP, - [179815] = 2, + [170712] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1298), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [179825] = 2, + anon_sym_RBRACE3, + [170722] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179835] = 2, + ACTIONS(9864), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [170732] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(9866), 1, + anon_sym_esac, + ACTIONS(9868), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9870), 1, + anon_sym_SEMI_AMP, + ACTIONS(9872), 1, + anon_sym_SEMI_SEMI_AMP, + [170748] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9874), 1, + anon_sym_esac, + ACTIONS(9876), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9878), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [170762] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1271), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179845] = 2, + [170772] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1306), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179855] = 2, + [170782] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1360), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179865] = 5, + [170792] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10396), 1, - anon_sym_SLASH, - ACTIONS(10398), 1, - anon_sym_RBRACE3, - ACTIONS(10500), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - [179881] = 2, + ACTIONS(258), 1, + anon_sym_LBRACE, + ACTIONS(9737), 1, + anon_sym_do, + STATE(3384), 1, + sym_compound_statement, + STATE(3388), 1, + sym_do_group, + [170808] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9866), 1, + anon_sym_esac, + ACTIONS(9880), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9882), 1, + anon_sym_SEMI_AMP, + ACTIONS(9884), 1, + anon_sym_SEMI_SEMI_AMP, + [170824] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1348), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179891] = 2, + [170834] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1336), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179901] = 2, + [170844] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179911] = 2, + ACTIONS(9886), 1, + anon_sym_esac, + ACTIONS(9888), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9890), 1, + anon_sym_SEMI_AMP, + ACTIONS(9892), 1, + anon_sym_SEMI_SEMI_AMP, + [170860] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1318), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179921] = 2, + [170870] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 4, - sym__concat, + ACTIONS(9741), 1, + sym__special_character, + STATE(3915), 1, + aux_sym__literal_repeat1, + ACTIONS(9777), 2, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_concatenation_token1, - [179931] = 2, + [170884] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1294), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_LF, - ACTIONS(10417), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [179953] = 2, + [170894] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1302), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [179963] = 2, + [170904] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1300), 4, + ACTIONS(1314), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [179973] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, + [170914] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10429), 1, - anon_sym_do, - STATE(3037), 1, - sym_do_group, - STATE(3063), 1, - sym_compound_statement, - [179989] = 4, + ACTIONS(1352), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [170924] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10514), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, + ACTIONS(9886), 1, + anon_sym_esac, + ACTIONS(9894), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9896), 1, + anon_sym_SEMI_AMP, + ACTIONS(9898), 1, + anon_sym_SEMI_SEMI_AMP, + [170940] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1298), 4, + sym__concat, anon_sym_RPAREN, anon_sym_PIPE, - [180003] = 2, + aux_sym_concatenation_token1, + [170950] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1356), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180013] = 2, + [170960] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1360), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180023] = 2, + [170970] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1340), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10519), 1, - anon_sym_LF, - ACTIONS(10517), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [180045] = 4, + [170980] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(10521), 1, + ACTIONS(9900), 1, anon_sym_esac, - ACTIONS(10523), 1, + ACTIONS(9902), 1, anon_sym_SEMI_SEMI, - ACTIONS(10525), 2, + ACTIONS(9904), 1, anon_sym_SEMI_AMP, + ACTIONS(9906), 1, anon_sym_SEMI_SEMI_AMP, - [180059] = 2, + [170996] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1340), 4, + ACTIONS(9910), 1, + anon_sym_RBRACE3, + STATE(3865), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(9908), 2, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, aux_sym_concatenation_token1, - [180069] = 2, + [171010] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1348), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180079] = 2, + [171020] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180089] = 2, + ACTIONS(9900), 1, + anon_sym_esac, + ACTIONS(9912), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9914), 1, + anon_sym_SEMI_AMP, + ACTIONS(9916), 1, + anon_sym_SEMI_SEMI_AMP, + [171036] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1271), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180099] = 4, + [171046] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10386), 1, + ACTIONS(9918), 1, sym__special_character, - STATE(4130), 1, + STATE(3915), 1, aux_sym__literal_repeat1, - ACTIONS(10406), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [180113] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 4, - sym__concat, + ACTIONS(1369), 2, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_concatenation_token1, - [180123] = 4, + [171060] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10527), 1, + ACTIONS(9921), 1, anon_sym_esac, - ACTIONS(10529), 1, + ACTIONS(9923), 1, anon_sym_SEMI_SEMI, - ACTIONS(10531), 2, + ACTIONS(9925), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [180137] = 2, + [171074] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1336), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180147] = 2, + [171084] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1344), 4, + ACTIONS(1302), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180157] = 2, + [171094] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1310), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180167] = 5, + [171104] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10464), 1, - anon_sym_esac, - ACTIONS(10533), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10535), 1, - anon_sym_SEMI_AMP, - ACTIONS(10537), 1, - anon_sym_SEMI_SEMI_AMP, - [180183] = 4, + ACTIONS(1314), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [171114] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10539), 1, - anon_sym_esac, - ACTIONS(10541), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10543), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180197] = 2, + ACTIONS(1290), 4, + sym__concat, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_concatenation_token1, + [171124] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1296), 4, + ACTIONS(1318), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180207] = 2, + [171134] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1294), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180217] = 5, + [171144] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(10374), 1, - anon_sym_do, - STATE(2991), 1, - sym_do_group, - STATE(3002), 1, - sym_compound_statement, - [180233] = 2, + ACTIONS(9927), 1, + anon_sym_RBRACE3, + STATE(3911), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(9908), 2, + sym__concat, + aux_sym_concatenation_token1, + [171158] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 4, + ACTIONS(1332), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180243] = 2, + [171168] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1306), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [180253] = 2, + [171178] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_RPAREN, + ACTIONS(9641), 1, anon_sym_PIPE, - aux_sym_concatenation_token1, - [180263] = 4, + ACTIONS(9689), 1, + anon_sym_RPAREN, + STATE(3988), 1, + aux_sym_case_item_repeat1, + [171191] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10545), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [180277] = 4, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(9929), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171204] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(9931), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171215] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(9935), 1, anon_sym_COMMA, - ACTIONS(10550), 1, + ACTIONS(9937), 1, anon_sym_RPAREN, - STATE(4192), 1, + STATE(3957), 1, aux_sym__for_body_repeat1, - [180290] = 4, + [171228] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10552), 1, - anon_sym_RPAREN, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [180303] = 4, + ACTIONS(9939), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171241] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(9941), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171254] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10554), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180316] = 4, + ACTIONS(9896), 1, + anon_sym_SEMI_AMP, + ACTIONS(9898), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9943), 1, + anon_sym_SEMI_SEMI, + [171267] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(9945), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171278] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10556), 1, + ACTIONS(9947), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180329] = 4, + [171291] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10558), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10560), 1, - anon_sym_COMMA, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [180342] = 4, + ACTIONS(9842), 1, + anon_sym_SEMI_AMP, + ACTIONS(9844), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9949), 1, + anon_sym_SEMI_SEMI, + [171304] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10562), 1, + ACTIONS(9951), 1, anon_sym_RPAREN_RPAREN, - STATE(4263), 1, - aux_sym__for_body_repeat1, - [180355] = 3, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171317] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10564), 2, + ACTIONS(9953), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180366] = 3, + [171328] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10568), 1, - sym__concat, - ACTIONS(4864), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180377] = 3, + ACTIONS(9935), 1, + anon_sym_COMMA, + ACTIONS(9955), 1, + anon_sym_RPAREN, + STATE(3940), 1, + aux_sym__for_body_repeat1, + [171341] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10570), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180388] = 3, + ACTIONS(9816), 1, + anon_sym_RPAREN, + ACTIONS(9957), 1, + anon_sym_COMMA, + STATE(3940), 1, + aux_sym__for_body_repeat1, + [171354] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10572), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180399] = 4, + ACTIONS(9816), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(9960), 1, + anon_sym_COMMA, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [171367] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10574), 1, + ACTIONS(9963), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180412] = 4, + [171380] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10576), 1, + ACTIONS(9965), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180425] = 4, + [171393] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(9829), 3, + sym__concat, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [171402] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9967), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10578), 1, - anon_sym_RPAREN, - STATE(4231), 1, + STATE(3941), 1, aux_sym__for_body_repeat1, - [180438] = 3, + [171415] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10580), 2, + ACTIONS(9971), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180449] = 4, + [171426] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10582), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180462] = 4, + ACTIONS(9904), 1, + anon_sym_SEMI_AMP, + ACTIONS(9906), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9973), 1, + anon_sym_SEMI_SEMI, + [171439] = 3, + ACTIONS(63), 1, + sym_comment, + STATE(3911), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(9908), 2, + sym__concat, + aux_sym_concatenation_token1, + [171450] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10584), 1, + ACTIONS(9975), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180475] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10586), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180486] = 4, + [171463] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10588), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180499] = 4, + ACTIONS(1262), 1, + sym__special_character, + ACTIONS(1264), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [171474] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10590), 1, + ACTIONS(9977), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180512] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10592), 1, - anon_sym_RPAREN, - STATE(4167), 1, - aux_sym__for_body_repeat1, - [180525] = 3, + [171487] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10594), 2, + ACTIONS(9979), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180536] = 4, + [171498] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9882), 1, + anon_sym_SEMI_AMP, + ACTIONS(9884), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9981), 1, + anon_sym_SEMI_SEMI, + [171511] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10596), 1, + ACTIONS(9983), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180549] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10598), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10531), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180560] = 4, + [171524] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10600), 1, + ACTIONS(9985), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180573] = 4, + [171537] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10602), 1, + ACTIONS(9987), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180586] = 3, + [171550] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10604), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180597] = 4, + ACTIONS(9935), 1, + anon_sym_COMMA, + ACTIONS(9989), 1, + anon_sym_RPAREN, + STATE(3940), 1, + aux_sym__for_body_repeat1, + [171563] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(9991), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171576] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10476), 1, + ACTIONS(9914), 1, anon_sym_SEMI_AMP, - ACTIONS(10478), 1, + ACTIONS(9916), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10606), 1, + ACTIONS(9993), 1, anon_sym_SEMI_SEMI, - [180610] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10608), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180621] = 4, + [171589] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10308), 1, + ACTIONS(1264), 3, anon_sym_RPAREN, - STATE(4280), 1, - aux_sym_case_item_repeat1, - [180634] = 3, + anon_sym_PIPE, + sym__special_character, + [171598] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10610), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180645] = 4, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(9995), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171611] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10612), 1, + ACTIONS(9997), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180658] = 3, + [171624] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10614), 2, + ACTIONS(9999), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180669] = 4, + [171635] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10616), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180682] = 4, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(10001), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [171648] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10003), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180695] = 4, + STATE(4043), 1, + aux_sym__for_body_repeat1, + [171661] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10620), 1, + ACTIONS(10005), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180708] = 4, + [171674] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10622), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - STATE(4190), 1, + ACTIONS(10007), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180721] = 4, + [171687] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10625), 1, - anon_sym_RPAREN, - ACTIONS(10627), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - STATE(4191), 1, + ACTIONS(9687), 1, + anon_sym_RPAREN, + STATE(4013), 1, aux_sym_case_item_repeat1, - [180734] = 4, + [171700] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10630), 1, - anon_sym_RPAREN, - STATE(4231), 1, + ACTIONS(10009), 1, + anon_sym_RPAREN_RPAREN, + STATE(3970), 1, aux_sym__for_body_repeat1, - [180747] = 4, + [171713] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10632), 1, + ACTIONS(10011), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180760] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10634), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180771] = 4, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [171726] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10636), 1, + ACTIONS(10013), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180784] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10638), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180795] = 3, + [171739] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10640), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180806] = 4, + ACTIONS(9969), 1, + anon_sym_COMMA, + ACTIONS(10015), 1, + anon_sym_RPAREN_RPAREN, + STATE(3945), 1, + aux_sym__for_body_repeat1, + [171752] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10642), 1, + ACTIONS(10017), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180819] = 2, + STATE(4039), 1, + aux_sym__for_body_repeat1, + [171765] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [180828] = 3, + ACTIONS(9969), 1, + anon_sym_COMMA, + ACTIONS(10019), 1, + anon_sym_RPAREN_RPAREN, + STATE(3982), 1, + aux_sym__for_body_repeat1, + [171778] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10644), 2, + ACTIONS(10021), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180839] = 3, + [171789] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10646), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180850] = 4, + ACTIONS(9969), 1, + anon_sym_COMMA, + ACTIONS(10023), 1, + anon_sym_RPAREN_RPAREN, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [171802] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10648), 1, + ACTIONS(10025), 1, anon_sym_RPAREN_RPAREN, - STATE(4273), 1, + STATE(3941), 1, aux_sym__for_body_repeat1, - [180863] = 3, + [171815] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10650), 2, + ACTIONS(10027), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [180874] = 4, + [171826] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10652), 1, + ACTIONS(10029), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180887] = 4, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [171839] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10654), 1, + ACTIONS(10031), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180900] = 4, + [171852] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10656), 1, + ACTIONS(10033), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180913] = 4, + [171865] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10658), 1, + ACTIONS(10035), 1, anon_sym_RPAREN_RPAREN, - STATE(4233), 1, + STATE(3941), 1, aux_sym__for_body_repeat1, - [180926] = 4, + [171878] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10660), 1, + ACTIONS(5114), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + ACTIONS(10037), 1, + anon_sym_COMMA, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180939] = 4, + [171891] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10040), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9878), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [171902] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10042), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [171915] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10662), 1, + ACTIONS(10044), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [180952] = 4, + [171928] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10046), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [171941] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10664), 1, + ACTIONS(10048), 1, anon_sym_RPAREN, - STATE(4191), 1, + STATE(4049), 1, aux_sym_case_item_repeat1, - [180965] = 4, + [171954] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10460), 1, + ACTIONS(10050), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9925), 2, anon_sym_SEMI_AMP, - ACTIONS(10462), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10666), 1, - anon_sym_SEMI_SEMI, - [180978] = 4, + [171965] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10668), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180991] = 3, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10052), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [171978] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9890), 1, + anon_sym_SEMI_AMP, + ACTIONS(9892), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(10054), 1, + anon_sym_SEMI_SEMI, + [171991] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10670), 2, + ACTIONS(10056), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181002] = 4, + [172002] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10672), 1, + ACTIONS(10058), 1, anon_sym_RPAREN_RPAREN, - STATE(4217), 1, - aux_sym__for_body_repeat1, - [181015] = 4, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172015] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10352), 1, - anon_sym_RPAREN, - STATE(4257), 1, - aux_sym_case_item_repeat1, - [181028] = 3, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10060), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172026] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10674), 2, + ACTIONS(10062), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181039] = 4, + [172037] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10064), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172050] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10676), 1, + ACTIONS(10066), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, + STATE(4038), 1, aux_sym__for_body_repeat1, - [181052] = 4, + [172063] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10678), 1, + ACTIONS(10068), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181065] = 4, + [172076] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10070), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172087] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10072), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172098] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9935), 1, anon_sym_COMMA, - ACTIONS(10680), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181078] = 4, + ACTIONS(10074), 1, + anon_sym_RPAREN, + STATE(3939), 1, + aux_sym__for_body_repeat1, + [172111] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10535), 1, + ACTIONS(10076), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9850), 2, anon_sym_SEMI_AMP, - ACTIONS(10537), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10682), 1, - anon_sym_SEMI_SEMI, - [181091] = 4, + [172122] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10484), 1, + ACTIONS(9870), 1, anon_sym_SEMI_AMP, - ACTIONS(10486), 1, + ACTIONS(9872), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10684), 1, + ACTIONS(10078), 1, anon_sym_SEMI_SEMI, - [181104] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10686), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181117] = 3, + [172135] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10688), 1, + ACTIONS(10080), 1, sym__concat, - ACTIONS(4797), 2, + ACTIONS(4835), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181128] = 4, + [172146] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10690), 1, + ACTIONS(10082), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, + STATE(3979), 1, aux_sym__for_body_repeat1, - [181141] = 4, + [172159] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10692), 1, + ACTIONS(10084), 1, anon_sym_RPAREN_RPAREN, - STATE(4224), 1, - aux_sym__for_body_repeat1, - [181154] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10694), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181167] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10696), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181178] = 4, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172172] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10698), 1, + ACTIONS(10086), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181191] = 4, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172185] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10490), 1, - anon_sym_SEMI_AMP, - ACTIONS(10492), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10700), 1, - anon_sym_SEMI_SEMI, - [181204] = 4, + ACTIONS(10088), 1, + sym__concat, + ACTIONS(4841), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172196] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10702), 1, + ACTIONS(10090), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181217] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_RPAREN, - ACTIONS(10704), 1, - anon_sym_COMMA, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [181230] = 4, + [172209] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10707), 1, + ACTIONS(10092), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181243] = 4, + [172222] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10709), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181256] = 4, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10094), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172233] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10711), 1, + ACTIONS(10096), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181269] = 4, + [172246] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10713), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181282] = 4, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10098), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172259] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10715), 1, + ACTIONS(10100), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181295] = 3, + [172272] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10717), 2, + ACTIONS(10102), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181306] = 4, + [172283] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10719), 1, + ACTIONS(10104), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181319] = 4, + [172296] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10721), 1, + ACTIONS(10106), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181332] = 3, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172309] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10723), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10525), 2, + ACTIONS(9860), 1, anon_sym_SEMI_AMP, + ACTIONS(9862), 1, anon_sym_SEMI_SEMI_AMP, - [181343] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10725), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181356] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10727), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181369] = 4, + ACTIONS(10108), 1, + anon_sym_SEMI_SEMI, + [172322] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10729), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181382] = 4, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10110), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172333] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10731), 1, + ACTIONS(9693), 1, anon_sym_RPAREN, - STATE(4191), 1, + STATE(4051), 1, aux_sym_case_item_repeat1, - [181395] = 3, + [172346] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10733), 1, + ACTIONS(10112), 1, sym__concat, - ACTIONS(4924), 2, + ACTIONS(4780), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181406] = 4, + [172357] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10735), 1, + ACTIONS(10114), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181419] = 4, + [172370] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10737), 1, - anon_sym_RPAREN_RPAREN, - STATE(4159), 1, - aux_sym__for_body_repeat1, - [181432] = 3, + ACTIONS(10116), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9856), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [172381] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 1, - sym__special_character, - ACTIONS(1244), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [181443] = 4, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10118), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172392] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10739), 1, + ACTIONS(10120), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181456] = 4, + [172405] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10741), 1, + ACTIONS(10122), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181469] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10743), 1, - anon_sym_RPAREN_RPAREN, - STATE(4228), 1, - aux_sym__for_body_repeat1, - [181482] = 4, + [172418] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10745), 1, + ACTIONS(10124), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181495] = 4, + [172431] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10747), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181508] = 4, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10126), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172444] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10749), 1, + ACTIONS(9639), 1, anon_sym_RPAREN, - STATE(4191), 1, + ACTIONS(9641), 1, + anon_sym_PIPE, + STATE(4028), 1, aux_sym_case_item_repeat1, - [181521] = 4, + [172457] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9935), 1, anon_sym_COMMA, - ACTIONS(10751), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181534] = 4, + ACTIONS(10128), 1, + anon_sym_RPAREN, + STATE(4056), 1, + aux_sym__for_body_repeat1, + [172470] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10753), 1, + ACTIONS(10130), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181547] = 4, + [172483] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10755), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181560] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10757), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181571] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10300), 1, + ACTIONS(10132), 1, anon_sym_RPAREN, - ACTIONS(10302), 1, - anon_sym_PIPE, - STATE(4262), 1, + STATE(4049), 1, aux_sym_case_item_repeat1, - [181584] = 4, + [172496] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10759), 1, + ACTIONS(10134), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181597] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10761), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10512), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [181608] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10763), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181621] = 4, + [172509] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10765), 1, + ACTIONS(10136), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181634] = 4, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172522] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10767), 1, + ACTIONS(10138), 1, anon_sym_RPAREN, - STATE(4191), 1, + STATE(4049), 1, aux_sym_case_item_repeat1, - [181647] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10504), 1, - anon_sym_SEMI_AMP, - ACTIONS(10506), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10769), 1, - anon_sym_SEMI_SEMI, - [181660] = 4, + [172535] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10771), 1, + ACTIONS(10140), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181673] = 4, + [172548] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10773), 1, + ACTIONS(10142), 1, anon_sym_RPAREN_RPAREN, - STATE(4239), 1, - aux_sym__for_body_repeat1, - [181686] = 4, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172561] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10775), 1, + ACTIONS(10144), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181699] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10496), 1, - anon_sym_SEMI_AMP, - ACTIONS(10498), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10777), 1, - anon_sym_SEMI_SEMI, - [181712] = 4, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [172574] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10779), 1, + ACTIONS(10146), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181725] = 3, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [172587] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10781), 1, - sym__concat, - ACTIONS(4932), 2, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10148), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181736] = 4, + [172598] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10783), 1, + ACTIONS(10150), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181749] = 4, + STATE(3976), 1, + aux_sym__for_body_repeat1, + [172611] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10785), 1, + ACTIONS(10152), 1, anon_sym_RPAREN_RPAREN, - STATE(4287), 1, + STATE(3977), 1, aux_sym__for_body_repeat1, - [181762] = 4, + [172624] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(10787), 1, + ACTIONS(10154), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181775] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10789), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10543), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [181786] = 4, + STATE(3941), 1, + aux_sym__for_body_repeat1, + [172637] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10791), 1, + ACTIONS(10156), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181799] = 4, + [172650] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10158), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172661] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10793), 1, + ACTIONS(10160), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181812] = 4, + [172674] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10795), 1, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10162), 1, anon_sym_RPAREN, - STATE(4156), 1, - aux_sym__for_body_repeat1, - [181825] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10797), 1, - anon_sym_RPAREN_RPAREN, - STATE(4241), 1, - aux_sym__for_body_repeat1, - [181838] = 4, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172687] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10799), 1, + ACTIONS(10164), 1, anon_sym_RPAREN, - STATE(4191), 1, + STATE(4049), 1, aux_sym_case_item_repeat1, - [181851] = 4, + [172700] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10801), 1, + ACTIONS(10166), 1, anon_sym_RPAREN, - STATE(4191), 1, + ACTIONS(10168), 1, + anon_sym_PIPE, + STATE(4049), 1, aux_sym_case_item_repeat1, - [181864] = 4, + [172713] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10803), 1, + ACTIONS(10171), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181877] = 4, + [172726] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10805), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181890] = 4, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10173), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172739] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10807), 1, + ACTIONS(10175), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181903] = 4, + [172752] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10348), 1, - anon_sym_RPAREN, - STATE(4172), 1, - aux_sym_case_item_repeat1, - [181916] = 4, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10177), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172763] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10179), 1, + sym__concat, + ACTIONS(4792), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172774] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(9641), 1, anon_sym_PIPE, - ACTIONS(10809), 1, + ACTIONS(10181), 1, anon_sym_RPAREN, - STATE(4191), 1, + STATE(4049), 1, aux_sym_case_item_repeat1, - [181929] = 4, + [172787] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10422), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10811), 1, + ACTIONS(9935), 1, anon_sym_COMMA, - STATE(4287), 1, + ACTIONS(10183), 1, + anon_sym_RPAREN, + STATE(3940), 1, aux_sym__for_body_repeat1, - [181942] = 3, + [172800] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10814), 2, + ACTIONS(10185), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [181953] = 4, + [172811] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10187), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172824] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10816), 1, + ACTIONS(10189), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [181966] = 4, + [172837] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10468), 1, - anon_sym_SEMI_AMP, - ACTIONS(10470), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10818), 1, - anon_sym_SEMI_SEMI, - [181979] = 4, + ACTIONS(9933), 1, + anon_sym_LBRACK, + ACTIONS(10191), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172848] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10820), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181992] = 3, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10193), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172861] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_PIPE, + ACTIONS(10195), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_case_item_repeat1, + [172874] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10566), 1, + ACTIONS(9933), 1, anon_sym_LBRACK, - ACTIONS(10822), 2, + ACTIONS(10197), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182003] = 4, + [172885] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(10824), 1, + ACTIONS(10199), 1, anon_sym_RPAREN_RPAREN, - STATE(4190), 1, + STATE(3983), 1, aux_sym_arithmetic_expansion_repeat1, - [182016] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1734), 1, - sym_expansion, - [182026] = 2, + [172898] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(10564), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182034] = 3, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(10201), 1, + anon_sym_RPAREN_RPAREN, + STATE(3983), 1, + aux_sym_arithmetic_expansion_repeat1, + [172911] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_LBRACE, - STATE(1654), 1, + STATE(1596), 1, sym_expansion, - [182044] = 3, + [172921] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10826), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10828), 1, - aux_sym__simple_variable_name_token1, - [182054] = 2, + ACTIONS(9737), 1, + anon_sym_do, + STATE(3378), 1, + sym_do_group, + [172931] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1320), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182062] = 2, + ACTIONS(10158), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172939] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1328), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182070] = 2, + ACTIONS(10177), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172947] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1312), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182078] = 3, + ACTIONS(10191), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172955] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10118), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [172963] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(5374), 1, anon_sym_DOLLAR_LBRACE, - STATE(2225), 1, + STATE(2659), 1, sym_expansion, - [182088] = 2, + [172973] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1274), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182096] = 3, + ACTIONS(6036), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3131), 1, + sym_expansion, + [172983] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1163), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACE, - STATE(1561), 1, + STATE(936), 1, sym_expansion, - [182106] = 2, + [172993] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1336), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182114] = 2, + ACTIONS(10203), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(10205), 1, + aux_sym__simple_variable_name_token1, + [173003] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1332), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182122] = 2, + ACTIONS(10207), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4089), 1, + sym_expansion, + [173013] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1324), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182130] = 2, + ACTIONS(6288), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1410), 1, + sym_expansion, + [173023] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10814), 2, + ACTIONS(10197), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182138] = 2, + [173031] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1356), 2, anon_sym_COLON, anon_sym_RBRACE3, - [182146] = 3, + [173039] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1422), 1, - sym_expansion, - [182156] = 3, + ACTIONS(9760), 1, + anon_sym_do, + STATE(3056), 1, + sym_do_group, + [173049] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3455), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR_LBRACE, - STATE(2007), 1, + STATE(1211), 1, sym_expansion, - [182166] = 2, + [173059] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9833), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [173067] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10634), 2, + ACTIONS(9953), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182174] = 3, + [173075] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(7684), 1, anon_sym_DOLLAR_LBRACE, - STATE(2810), 1, - sym_expansion, - [182184] = 3, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - sym_comment, - STATE(1010), 1, + STATE(2242), 1, sym_expansion, - [182194] = 3, + [173085] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1106), 1, - sym_expansion, - [182204] = 3, + ACTIONS(10110), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173093] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR_LBRACE, - STATE(3209), 1, + STATE(3305), 1, sym_expansion, - [182214] = 3, + [173103] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(5613), 1, anon_sym_DOLLAR_LBRACE, - STATE(1851), 1, + STATE(3295), 1, sym_expansion, - [182224] = 2, + [173113] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10580), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182232] = 3, + ACTIONS(1352), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173121] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2333), 1, - sym_expansion, - [182242] = 3, + ACTIONS(1332), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173129] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR_LBRACE, - STATE(2911), 1, + STATE(1886), 1, sym_expansion, - [182252] = 3, + [173139] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10830), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10832), 1, - aux_sym__simple_variable_name_token1, - [182262] = 2, + ACTIONS(4700), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173147] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10696), 2, + ACTIONS(4780), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182270] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10390), 1, - anon_sym_SLASH, - ACTIONS(10392), 1, - anon_sym_RBRACE3, - [182280] = 3, + [173155] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1675), 1, - sym_expansion, - [182290] = 3, + ACTIONS(10209), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(10211), 1, + aux_sym__simple_variable_name_token1, + [173165] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(316), 1, + ACTIONS(5807), 1, anon_sym_DOLLAR_LBRACE, - STATE(427), 1, + STATE(1107), 1, sym_expansion, - [182300] = 3, + [173175] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - STATE(396), 1, + STATE(745), 1, sym_expansion, - [182310] = 3, + [173185] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6568), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - STATE(1425), 1, + STATE(1774), 1, sym_expansion, - [182320] = 3, + [173195] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10376), 1, - anon_sym_SLASH, - ACTIONS(10378), 1, - anon_sym_RBRACE3, - [182330] = 3, + ACTIONS(10094), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173203] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5425), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - STATE(4133), 1, + STATE(1917), 1, sym_expansion, - [182340] = 3, + [173213] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5643), 1, + ACTIONS(5697), 1, anon_sym_DOLLAR_LBRACE, - STATE(1966), 1, + STATE(1036), 1, sym_expansion, - [182350] = 3, + [173223] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1308), 1, - sym_expansion, - [182360] = 3, + ACTIONS(10185), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173231] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6494), 1, + ACTIONS(6623), 1, anon_sym_DOLLAR_LBRACE, - STATE(1791), 1, + STATE(2712), 1, sym_expansion, - [182370] = 3, + [173241] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3703), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR_LBRACE, - STATE(1953), 1, + STATE(2269), 1, sym_expansion, - [182380] = 2, + [173251] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10422), 2, - anon_sym_COMMA, + ACTIONS(9775), 2, anon_sym_RPAREN, - [182388] = 3, + anon_sym_PIPE, + [173259] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3489), 1, - sym_expansion, - [182398] = 3, + ACTIONS(10148), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173267] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10834), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10836), 1, - aux_sym__simple_variable_name_token1, - [182408] = 3, + ACTIONS(1290), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173275] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(7071), 1, anon_sym_DOLLAR_LBRACE, - STATE(3104), 1, + STATE(1022), 1, sym_expansion, - [182418] = 3, + [173285] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACE, - STATE(2428), 1, + STATE(1260), 1, sym_expansion, - [182428] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10394), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [182436] = 3, + [173295] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10838), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR_LBRACE, - STATE(4299), 1, + STATE(2632), 1, sym_expansion, - [182446] = 2, + [173305] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10519), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [182454] = 3, + ACTIONS(1310), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173313] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5687), 1, + ACTIONS(5501), 1, anon_sym_DOLLAR_LBRACE, - STATE(2767), 1, + STATE(1887), 1, sym_expansion, - [182464] = 2, + [173323] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5041), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182472] = 2, + ACTIONS(6380), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1005), 1, + sym_expansion, + [173333] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5047), 2, + ACTIONS(10027), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182480] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2359), 1, - sym_expansion, - [182490] = 3, + [173341] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1250), 1, - sym_expansion, - [182500] = 3, + ACTIONS(10102), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173349] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6175), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - STATE(3509), 1, + STATE(1982), 1, sym_expansion, - [182510] = 3, + [173359] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR_LBRACE, - STATE(3979), 1, + STATE(1707), 1, sym_expansion, - [182520] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10519), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [182528] = 2, + [173369] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10422), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [182536] = 3, + ACTIONS(10070), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173377] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(454), 1, + ACTIONS(6584), 1, anon_sym_DOLLAR_LBRACE, - STATE(717), 1, + STATE(3732), 1, sym_expansion, - [182546] = 3, + [173387] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10429), 1, + ACTIONS(9737), 1, anon_sym_do, - STATE(3021), 1, + STATE(3382), 1, sym_do_group, - [182556] = 3, + [173397] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10452), 1, + ACTIONS(9760), 1, anon_sym_do, - STATE(3630), 1, + STATE(2984), 1, sym_do_group, - [182566] = 3, + [173407] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(6348), 1, anon_sym_DOLLAR_LBRACE, - STATE(2103), 1, + STATE(1186), 1, sym_expansion, - [182576] = 3, + [173417] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5177), 1, anon_sym_DOLLAR_LBRACE, - STATE(1173), 1, + STATE(3925), 1, sym_expansion, - [182586] = 3, + [173427] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7019), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - STATE(3541), 1, + STATE(2126), 1, sym_expansion, - [182596] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10429), 1, - anon_sym_do, - STATE(3070), 1, - sym_do_group, - [182606] = 3, + [173437] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6696), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR_LBRACE, - STATE(4149), 1, + STATE(1486), 1, sym_expansion, - [182616] = 2, + [173447] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10674), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182624] = 2, + ACTIONS(5643), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1003), 1, + sym_expansion, + [173457] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10670), 2, + ACTIONS(10072), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182632] = 2, + [173465] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10650), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182640] = 3, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3323), 1, + sym_expansion, + [173475] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6211), 1, + ACTIONS(5729), 1, anon_sym_DOLLAR_LBRACE, - STATE(918), 1, + STATE(1263), 1, sym_expansion, - [182650] = 3, + [173485] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(1322), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [173493] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8081), 1, anon_sym_DOLLAR_LBRACE, - STATE(367), 1, + STATE(2043), 1, sym_expansion, - [182660] = 2, + [173503] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10638), 2, + ACTIONS(10062), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182668] = 2, + [173511] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10610), 2, + ACTIONS(10060), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182676] = 3, + [173519] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6090), 1, + ACTIONS(623), 1, anon_sym_DOLLAR_LBRACE, - STATE(766), 1, + STATE(785), 1, sym_expansion, - [182686] = 2, + [173529] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4797), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182694] = 2, + ACTIONS(6412), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3869), 1, + sym_expansion, + [173539] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10572), 2, + ACTIONS(10056), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182702] = 3, + [173547] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8173), 1, + ACTIONS(212), 1, anon_sym_DOLLAR_LBRACE, - STATE(2278), 1, + STATE(368), 1, sym_expansion, - [182712] = 2, + [173557] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10570), 2, + ACTIONS(9931), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182720] = 2, + [173565] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4864), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182728] = 3, + ACTIONS(5410), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1192), 1, + sym_expansion, + [173575] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_do, + STATE(2977), 1, + sym_do_group, + [173585] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7569), 1, + ACTIONS(6202), 1, anon_sym_DOLLAR_LBRACE, - STATE(961), 1, + STATE(1414), 1, sym_expansion, - [182738] = 2, + [173595] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10594), 2, + ACTIONS(10021), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182746] = 2, + [173603] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10604), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182754] = 3, + ACTIONS(10213), 1, + anon_sym_RBRACE3, + ACTIONS(10215), 1, + sym_regex, + [173613] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10840), 1, - anon_sym_SLASH, - ACTIONS(10842), 1, - anon_sym_RBRACE3, - [182764] = 3, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1807), 1, + sym_expansion, + [173623] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5723), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - STATE(1234), 1, + STATE(406), 1, sym_expansion, - [182774] = 2, + [173633] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10646), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182782] = 3, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1575), 1, + sym_expansion, + [173643] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6532), 1, + ACTIONS(5933), 1, anon_sym_DOLLAR_LBRACE, - STATE(1077), 1, + STATE(948), 1, sym_expansion, - [182792] = 3, + [173653] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5803), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - STATE(1249), 1, + STATE(858), 1, sym_expansion, - [182802] = 2, + [173663] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10822), 2, + ACTIONS(9999), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182810] = 3, + [173671] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - ACTIONS(10844), 1, - anon_sym_COLON, - [182820] = 3, + ACTIONS(9756), 1, + anon_sym_do, + STATE(3042), 1, + sym_do_group, + [173681] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6172), 1, anon_sym_DOLLAR_LBRACE, - STATE(2808), 1, + STATE(2898), 1, sym_expansion, - [182830] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10717), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182838] = 2, + [173691] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10640), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182846] = 3, + ACTIONS(6520), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2674), 1, + sym_expansion, + [173701] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10846), 1, + ACTIONS(10217), 1, anon_sym_SLASH, - ACTIONS(10848), 1, + ACTIONS(10219), 1, anon_sym_RBRACE3, - [182856] = 3, + [173711] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - STATE(847), 1, - sym_expansion, - [182866] = 2, + ACTIONS(10221), 1, + anon_sym_COLON, + ACTIONS(10223), 1, + anon_sym_RBRACE3, + [173721] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10614), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182874] = 2, + ACTIONS(9833), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [173729] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10757), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182882] = 3, + ACTIONS(109), 1, + anon_sym_DOLLAR_LBRACE, + STATE(356), 1, + sym_expansion, + [173739] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3609), 1, - sym_do_group, - [182892] = 3, + ACTIONS(5767), 1, + anon_sym_DOLLAR_LBRACE, + STATE(751), 1, + sym_expansion, + [173749] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(623), 1, + ACTIONS(6326), 1, anon_sym_DOLLAR_LBRACE, - STATE(1903), 1, + STATE(1749), 1, sym_expansion, - [182902] = 3, + [173759] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10374), 1, - anon_sym_do, - STATE(3003), 1, - sym_do_group, - [182912] = 2, + ACTIONS(5036), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173767] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10586), 2, + ACTIONS(9971), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182920] = 3, + [173775] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6012), 1, + ACTIONS(9762), 1, + anon_sym_SLASH, + ACTIONS(9764), 1, + anon_sym_RBRACE3, + [173785] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7950), 1, anon_sym_DOLLAR_LBRACE, - STATE(2769), 1, + STATE(2243), 1, sym_expansion, - [182930] = 3, + [173795] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(372), 1, + ACTIONS(9816), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [173803] = 3, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - STATE(980), 1, + ACTIONS(63), 1, + sym_comment, + STATE(888), 1, sym_expansion, - [182940] = 2, + [173813] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10644), 2, + ACTIONS(5040), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182948] = 3, + [173821] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1085), 1, - sym_expansion, - [182958] = 2, + ACTIONS(9945), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173829] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10608), 2, + ACTIONS(9979), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [182966] = 3, + [173837] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - STATE(998), 1, - sym_expansion, - [182976] = 3, + ACTIONS(10225), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(10227), 1, + aux_sym__simple_variable_name_token1, + [173847] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - ACTIONS(10850), 1, - anon_sym_COLON, - [182986] = 3, + ACTIONS(4792), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173855] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2113), 1, - sym_expansion, - [182996] = 3, + ACTIONS(9816), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [173863] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7207), 1, + ACTIONS(7233), 1, anon_sym_DOLLAR_LBRACE, - STATE(1112), 1, + STATE(947), 1, sym_expansion, - [183006] = 3, + [173873] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10374), 1, - anon_sym_do, - STATE(3009), 1, - sym_do_group, - [183016] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1301), 1, - sym_expansion, - [183026] = 2, + ACTIONS(10229), 1, + anon_sym_BQUOTE, + [173880] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10852), 1, - anon_sym_RBRACE2, - [183033] = 2, + ACTIONS(6647), 1, + anon_sym_RBRACK, + [173887] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10854), 1, + ACTIONS(10231), 1, aux_sym_brace_expression_token1, - [183040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10856), 1, - anon_sym_LF, - [183047] = 2, + [173894] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10858), 1, - anon_sym_RBRACE3, - [183054] = 2, + ACTIONS(10233), 1, + sym_heredoc_end, + [173901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10860), 1, + ACTIONS(10235), 1, anon_sym_LF, - [183061] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10862), 1, - anon_sym_BQUOTE, - [183068] = 2, + [173908] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10864), 1, - anon_sym_BQUOTE, - [183075] = 2, + ACTIONS(6645), 1, + anon_sym_RBRACK, + [173915] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10866), 1, - anon_sym_esac, - [183082] = 2, + ACTIONS(10237), 1, + anon_sym_RPAREN, + [173922] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10868), 1, - anon_sym_esac, - [183089] = 2, - ACTIONS(63), 1, + ACTIONS(10239), 1, + aux_sym_brace_expression_token1, + [173929] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10870), 1, - anon_sym_fi, - [183096] = 2, + ACTIONS(10241), 1, + anon_sym_LF, + [173936] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10872), 1, - anon_sym_RPAREN, - [183103] = 2, + ACTIONS(10243), 1, + anon_sym_BQUOTE, + [173943] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10874), 1, - sym_heredoc_end, - [183110] = 2, + ACTIONS(10245), 1, + anon_sym_RBRACE2, + [173950] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10876), 1, - sym_heredoc_end, - [183117] = 2, + ACTIONS(10247), 1, + anon_sym_RBRACE2, + [173957] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10862), 1, + ACTIONS(10243), 1, anon_sym_RPAREN, - [183124] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10878), 1, - anon_sym_RBRACE3, - [183131] = 2, + [173964] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10880), 1, + ACTIONS(10249), 1, anon_sym_RBRACE3, - [183138] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10882), 1, - anon_sym_esac, - [183145] = 2, + [173971] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10306), 1, - anon_sym_fi, - [183152] = 2, + ACTIONS(10251), 1, + anon_sym_RPAREN, + [173978] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10884), 1, + ACTIONS(10253), 1, anon_sym_BQUOTE, - [183159] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10886), 1, - anon_sym_esac, - [183166] = 2, + [173985] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10888), 1, + ACTIONS(10255), 1, anon_sym_BQUOTE, - [183173] = 2, + [173992] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10890), 1, - anon_sym_RBRACE3, - [183180] = 2, + ACTIONS(10253), 1, + anon_sym_RPAREN, + [173999] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10342), 1, - anon_sym_fi, - [183187] = 2, + ACTIONS(10257), 1, + anon_sym_RBRACE3, + [174006] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10892), 1, + ACTIONS(10259), 1, anon_sym_RBRACE3, - [183194] = 2, + [174013] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10894), 1, - aux_sym_brace_expression_token1, - [183201] = 2, + ACTIONS(10261), 1, + anon_sym_RPAREN, + [174020] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10884), 1, - anon_sym_RPAREN, - [183208] = 2, + ACTIONS(10263), 1, + anon_sym_RBRACE2, + [174027] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10896), 1, + ACTIONS(10265), 1, anon_sym_RBRACE2, - [183215] = 2, + [174034] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10898), 1, - anon_sym_RBRACE3, - [183222] = 2, + ACTIONS(10267), 1, + sym_word, + [174041] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10269), 1, anon_sym_esac, - [183229] = 2, + [174048] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10902), 1, + ACTIONS(4144), 1, anon_sym_RBRACE3, - [183236] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10904), 1, - anon_sym_BQUOTE, - [183243] = 2, + [174055] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10906), 1, - anon_sym_esac, - [183250] = 2, + ACTIONS(10271), 1, + anon_sym_RBRACE3, + [174062] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10908), 1, - anon_sym_esac, - [183257] = 2, + ACTIONS(10273), 1, + anon_sym_RPAREN, + [174069] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10910), 1, + ACTIONS(10275), 1, anon_sym_BQUOTE, - [183264] = 2, + [174076] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10298), 1, - anon_sym_fi, - [183271] = 2, + ACTIONS(10273), 1, + anon_sym_BQUOTE, + [174083] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10912), 1, - anon_sym_RBRACE3, - [183278] = 2, + ACTIONS(10277), 1, + aux_sym_brace_expression_token1, + [174090] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10904), 1, + ACTIONS(10279), 1, anon_sym_RPAREN, - [183285] = 2, + [174097] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10914), 1, - anon_sym_RBRACE3, - [183292] = 2, + ACTIONS(10281), 1, + anon_sym_RBRACE2, + [174104] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10916), 1, + ACTIONS(4151), 1, anon_sym_RBRACE3, - [183299] = 2, + [174111] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10918), 1, - anon_sym_esac, - [183306] = 2, + ACTIONS(10283), 1, + anon_sym_RBRACE3, + [174118] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10920), 1, - anon_sym_RBRACE2, - [183313] = 2, - ACTIONS(63), 1, + ACTIONS(10285), 1, + anon_sym_RPAREN, + [174125] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 1, - anon_sym_RBRACK, - [183320] = 2, - ACTIONS(63), 1, + ACTIONS(10287), 1, + anon_sym_LF, + [174132] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10922), 1, - anon_sym_RBRACE3, - [183327] = 2, + ACTIONS(10289), 1, + anon_sym_LF, + [174139] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10924), 1, + ACTIONS(10291), 1, anon_sym_BQUOTE, - [183334] = 2, + [174146] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10926), 1, + ACTIONS(10285), 1, anon_sym_BQUOTE, - [183341] = 2, + [174153] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10928), 1, - anon_sym_BQUOTE, - [183348] = 2, + ACTIONS(10293), 1, + aux_sym_brace_expression_token1, + [174160] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10924), 1, + ACTIONS(10295), 1, anon_sym_RPAREN, - [183355] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10930), 1, - aux_sym_brace_expression_token1, - [183362] = 2, + [174167] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10932), 1, - anon_sym_RBRACE3, - [183369] = 2, + ACTIONS(10297), 1, + anon_sym_in, + [174174] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10934), 1, - anon_sym_RBRACE3, - [183376] = 2, + ACTIONS(10299), 1, + anon_sym_in, + [174181] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6986), 1, - anon_sym_RBRACK, - [183383] = 2, + ACTIONS(10301), 1, + sym_heredoc_end, + [174188] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10936), 1, - anon_sym_RBRACE3, - [183390] = 2, + ACTIONS(10303), 1, + anon_sym_RPAREN_RPAREN, + [174195] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10938), 1, - anon_sym_RBRACE3, - [183397] = 2, + ACTIONS(10305), 1, + anon_sym_RBRACE2, + [174202] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10940), 1, - anon_sym_BQUOTE, - [183404] = 2, + ACTIONS(10307), 1, + aux_sym_brace_expression_token1, + [174209] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10942), 1, - anon_sym_BQUOTE, - [183411] = 2, + ACTIONS(10309), 1, + anon_sym_RPAREN, + [174216] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10944), 1, + ACTIONS(10311), 1, anon_sym_RBRACE3, - [183418] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10946), 1, - anon_sym_RPAREN, - [183425] = 2, + [174223] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10948), 1, + ACTIONS(10313), 1, aux_sym_brace_expression_token1, - [183432] = 2, + [174230] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10940), 1, - anon_sym_RPAREN, - [183439] = 2, + ACTIONS(10315), 1, + anon_sym_then, + [174237] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10950), 1, - anon_sym_BQUOTE, - [183446] = 2, + ACTIONS(10317), 1, + anon_sym_RPAREN, + [174244] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10952), 1, - anon_sym_RBRACE3, - [183453] = 2, + ACTIONS(10319), 1, + anon_sym_fi, + [174251] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10954), 1, - anon_sym_RBRACE3, - [183460] = 2, + ACTIONS(10321), 1, + anon_sym_esac, + [174258] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10946), 1, - anon_sym_BQUOTE, - [183467] = 2, + ACTIONS(10323), 1, + anon_sym_esac, + [174265] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10956), 1, - anon_sym_RPAREN, - [183474] = 2, + ACTIONS(10325), 1, + anon_sym_esac, + [174272] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10958), 1, - aux_sym_brace_expression_token1, - [183481] = 2, + ACTIONS(10327), 1, + anon_sym_RBRACE3, + [174279] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10960), 1, - anon_sym_RPAREN, - [183488] = 2, + ACTIONS(10329), 1, + anon_sym_RBRACE3, + [174286] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10962), 1, - anon_sym_RBRACE3, - [183495] = 2, + ACTIONS(10331), 1, + sym_word, + [174293] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10964), 1, + ACTIONS(10333), 1, aux_sym_brace_expression_token1, - [183502] = 2, + [174300] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(10335), 1, anon_sym_BQUOTE, - [183509] = 2, + [174307] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10968), 1, + ACTIONS(10317), 1, anon_sym_BQUOTE, - [183516] = 2, + [174314] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(10337), 1, anon_sym_RPAREN, - [183523] = 2, + [174321] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10970), 1, + ACTIONS(10339), 1, anon_sym_RBRACE3, - [183530] = 2, + [174328] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10972), 1, + ACTIONS(10341), 1, anon_sym_RBRACE3, - [183537] = 2, + [174335] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10974), 1, + ACTIONS(10343), 1, anon_sym_RPAREN, - [183544] = 2, + [174342] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10976), 1, - anon_sym_RBRACE3, - [183551] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10978), 1, - anon_sym_RBRACE3, - [183558] = 2, + ACTIONS(10345), 1, + anon_sym_BQUOTE, + [174349] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10980), 1, - anon_sym_RBRACE3, - [183565] = 2, + ACTIONS(10343), 1, + anon_sym_BQUOTE, + [174356] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10347), 1, aux_sym_brace_expression_token1, - [183572] = 2, + [174363] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10984), 1, - anon_sym_RBRACE2, - [183579] = 2, + ACTIONS(10349), 1, + anon_sym_RPAREN, + [174370] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10986), 1, - anon_sym_RBRACE3, - [183586] = 2, + ACTIONS(10351), 1, + anon_sym_RBRACE2, + [174377] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10988), 1, - sym_word, - [183593] = 2, + ACTIONS(10353), 1, + anon_sym_RBRACE2, + [174384] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10990), 1, - anon_sym_RPAREN, - [183600] = 2, + ACTIONS(10355), 1, + anon_sym_RBRACE3, + [174391] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10992), 1, - anon_sym_RPAREN, - [183607] = 2, + ACTIONS(6500), 1, + anon_sym_RBRACK, + [174398] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_BQUOTE, - [183614] = 2, + ACTIONS(6502), 1, + anon_sym_RBRACK, + [174405] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10996), 1, - anon_sym_BQUOTE, - [183621] = 2, + ACTIONS(10357), 1, + anon_sym_fi, + [174412] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10998), 1, - anon_sym_RBRACE3, - [183628] = 2, + ACTIONS(10359), 1, + anon_sym_RPAREN, + [174419] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11000), 1, + ACTIONS(10361), 1, aux_sym_brace_expression_token1, - [183635] = 2, + [174426] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11002), 1, + ACTIONS(10363), 1, anon_sym_BQUOTE, - [183642] = 2, + [174433] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10996), 1, - anon_sym_RPAREN, - [183649] = 2, + ACTIONS(10359), 1, + anon_sym_BQUOTE, + [174440] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11004), 1, - anon_sym_BQUOTE, - [183656] = 2, + ACTIONS(10365), 1, + anon_sym_RPAREN, + [174447] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11006), 1, + ACTIONS(10367), 1, anon_sym_RBRACE2, - [183663] = 2, + [174454] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11008), 1, - anon_sym_RBRACE2, - [183670] = 2, + ACTIONS(10369), 1, + anon_sym_RPAREN, + [174461] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6998), 1, - anon_sym_RBRACK, - [183677] = 2, + ACTIONS(10371), 1, + anon_sym_RBRACE3, + [174468] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6996), 1, - anon_sym_RBRACK, - [183684] = 2, + ACTIONS(10373), 1, + anon_sym_BQUOTE, + [174475] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11010), 1, + ACTIONS(10375), 1, anon_sym_RPAREN, - [183691] = 2, + [174482] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11012), 1, + ACTIONS(10377), 1, aux_sym_brace_expression_token1, - [183698] = 2, - ACTIONS(63), 1, + [174489] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11014), 1, - anon_sym_RBRACE3, - [183705] = 2, + ACTIONS(10379), 1, + anon_sym_LF, + [174496] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11016), 1, + ACTIONS(10381), 1, anon_sym_BQUOTE, - [183712] = 2, + [174503] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_RPAREN, - [183719] = 2, - ACTIONS(63), 1, + ACTIONS(10383), 1, + anon_sym_BQUOTE, + [174510] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11018), 1, - anon_sym_RBRACE2, - [183726] = 2, + ACTIONS(10385), 1, + anon_sym_LF, + [174517] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11020), 1, - anon_sym_RBRACE3, - [183733] = 2, + ACTIONS(10373), 1, + anon_sym_RPAREN, + [174524] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11022), 1, - anon_sym_RBRACE3, - [183740] = 2, + ACTIONS(10375), 1, + anon_sym_BQUOTE, + [174531] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11024), 1, + ACTIONS(10387), 1, anon_sym_RPAREN, - [183747] = 2, + [174538] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11026), 1, - sym_word, - [183754] = 2, + ACTIONS(10389), 1, + anon_sym_RBRACE2, + [174545] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11028), 1, + ACTIONS(10391), 1, aux_sym_brace_expression_token1, - [183761] = 2, + [174552] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11030), 1, + ACTIONS(10393), 1, anon_sym_BQUOTE, - [183768] = 2, + [174559] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11032), 1, - anon_sym_BQUOTE, - [183775] = 2, + ACTIONS(10395), 1, + anon_sym_RPAREN, + [174566] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11030), 1, - anon_sym_RPAREN, - [183782] = 2, + ACTIONS(10397), 1, + anon_sym_RBRACE3, + [174573] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11010), 1, - anon_sym_BQUOTE, - [183789] = 2, + ACTIONS(10399), 1, + anon_sym_in, + [174580] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11034), 1, - anon_sym_RBRACE3, - [183796] = 2, + ACTIONS(10401), 1, + anon_sym_in, + [174587] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11036), 1, - anon_sym_RBRACE3, - [183803] = 2, + ACTIONS(10395), 1, + anon_sym_BQUOTE, + [174594] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11038), 1, - anon_sym_RBRACE2, - [183810] = 2, + ACTIONS(10403), 1, + anon_sym_RPAREN_RPAREN, + [174601] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6136), 1, - anon_sym_RBRACE3, - [183817] = 2, + ACTIONS(10405), 1, + anon_sym_RPAREN, + [174608] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11040), 1, + ACTIONS(10407), 1, aux_sym_brace_expression_token1, - [183824] = 2, + [174615] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11042), 1, - anon_sym_RBRACE3, - [183831] = 2, + ACTIONS(10409), 1, + aux_sym_brace_expression_token1, + [174622] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11044), 1, + ACTIONS(10411), 1, anon_sym_RPAREN, - [183838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11046), 1, - anon_sym_LF, - [183845] = 2, + [174629] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11048), 1, - anon_sym_BQUOTE, - [183852] = 2, + ACTIONS(10413), 1, + anon_sym_RBRACE2, + [174636] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11050), 1, - anon_sym_RPAREN, - [183859] = 2, + ACTIONS(10415), 1, + anon_sym_then, + [174643] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11052), 1, - anon_sym_BQUOTE, - [183866] = 2, + ACTIONS(10417), 1, + anon_sym_RBRACE3, + [174650] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11054), 1, + ACTIONS(10419), 1, anon_sym_RPAREN, - [183873] = 2, + [174657] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5992), 1, - anon_sym_RBRACE3, - [183880] = 2, + ACTIONS(10421), 1, + sym_heredoc_end, + [174664] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11056), 1, - aux_sym_brace_expression_token1, - [183887] = 2, + ACTIONS(10423), 1, + anon_sym_BQUOTE, + [174671] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11058), 1, - anon_sym_RBRACE3, - [183894] = 2, + ACTIONS(10425), 1, + aux_sym_brace_expression_token1, + [174678] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11048), 1, - anon_sym_RPAREN, - [183901] = 2, + ACTIONS(10419), 1, + anon_sym_BQUOTE, + [174685] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11060), 1, + ACTIONS(10427), 1, anon_sym_RPAREN, - [183908] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11062), 1, - anon_sym_BQUOTE, - [183915] = 2, + [174692] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11064), 1, - anon_sym_BQUOTE, - [183922] = 2, + ACTIONS(10429), 1, + sym_word, + [174699] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11066), 1, + ACTIONS(10431), 1, anon_sym_RBRACE3, - [183929] = 2, + [174706] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6882), 1, - anon_sym_RBRACK, - [183936] = 2, + ACTIONS(10433), 1, + anon_sym_RBRACE2, + [174713] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_RBRACK, - [183943] = 2, + ACTIONS(10435), 1, + sym_heredoc_end, + [174720] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11068), 1, - aux_sym_brace_expression_token1, - [183950] = 2, + ACTIONS(10437), 1, + anon_sym_BQUOTE, + [174727] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11060), 1, + ACTIONS(10439), 1, anon_sym_BQUOTE, - [183957] = 2, + [174734] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11070), 1, - anon_sym_RBRACE2, - [183964] = 2, + ACTIONS(10441), 1, + aux_sym_brace_expression_token1, + [174741] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11072), 1, - anon_sym_RBRACE3, - [183971] = 2, + ACTIONS(10437), 1, + anon_sym_RPAREN, + [174748] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11074), 1, - anon_sym_RPAREN, - [183978] = 2, + ACTIONS(10443), 1, + anon_sym_RBRACE3, + [174755] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11076), 1, + ACTIONS(10445), 1, anon_sym_BQUOTE, - [183985] = 2, + [174762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10447), 1, + anon_sym_LF, + [174769] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11078), 1, + ACTIONS(10449), 1, anon_sym_BQUOTE, - [183992] = 2, + [174776] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11080), 1, - sym_heredoc_start, - [183999] = 2, + ACTIONS(10445), 1, + anon_sym_RPAREN, + [174783] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11082), 1, - anon_sym_RBRACE2, - [184006] = 2, + ACTIONS(10451), 1, + anon_sym_RBRACE3, + [174790] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11084), 1, - aux_sym_brace_expression_token1, - [184013] = 2, + ACTIONS(10453), 1, + anon_sym_BQUOTE, + [174797] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11086), 1, - anon_sym_RPAREN, - [184020] = 2, + ACTIONS(10455), 1, + aux_sym_brace_expression_token1, + [174804] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11076), 1, - anon_sym_RPAREN, - [184027] = 2, + ACTIONS(10457), 1, + anon_sym_BQUOTE, + [174811] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11088), 1, - anon_sym_then, - [184034] = 2, + ACTIONS(10453), 1, + anon_sym_RPAREN, + [174818] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11090), 1, + ACTIONS(10459), 1, anon_sym_RBRACE3, - [184041] = 2, + [174825] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11092), 1, + ACTIONS(10461), 1, anon_sym_RBRACE3, - [184048] = 2, + [174832] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11094), 1, - sym_heredoc_end, - [184055] = 2, + ACTIONS(10463), 1, + anon_sym_esac, + [174839] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11096), 1, - anon_sym_RBRACE2, - [184062] = 2, + ACTIONS(10465), 1, + anon_sym_esac, + [174846] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11098), 1, - anon_sym_RBRACE2, - [184069] = 2, + ACTIONS(10467), 1, + anon_sym_BQUOTE, + [174853] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11100), 1, + ACTIONS(10469), 1, aux_sym_brace_expression_token1, - [184076] = 2, + [174860] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11102), 1, - anon_sym_RBRACE2, - [184083] = 2, + ACTIONS(10471), 1, + anon_sym_BQUOTE, + [174867] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11104), 1, - anon_sym_RBRACE3, - [184090] = 2, + ACTIONS(10473), 1, + anon_sym_esac, + [174874] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11106), 1, + ACTIONS(10467), 1, anon_sym_RPAREN, - [184097] = 2, + [174881] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11108), 1, + ACTIONS(10475), 1, anon_sym_RBRACE3, - [184104] = 2, + [174888] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_BQUOTE, - [184111] = 2, + ACTIONS(10477), 1, + anon_sym_RPAREN, + [174895] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11112), 1, + ACTIONS(10479), 1, anon_sym_BQUOTE, - [184118] = 2, + [174902] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11114), 1, - anon_sym_RPAREN, - [184125] = 2, + ACTIONS(10477), 1, + anon_sym_BQUOTE, + [174909] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11116), 1, + ACTIONS(10481), 1, aux_sym_brace_expression_token1, - [184132] = 2, + [174916] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_RPAREN, - [184139] = 2, + ACTIONS(10483), 1, + anon_sym_BQUOTE, + [174923] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11118), 1, - anon_sym_RBRACE3, - [184146] = 2, + ACTIONS(10485), 1, + anon_sym_esac, + [174930] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11120), 1, - anon_sym_RBRACE3, - [184153] = 2, + ACTIONS(10487), 1, + anon_sym_BQUOTE, + [174937] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11122), 1, - sym_heredoc_end, - [184160] = 2, + ACTIONS(10483), 1, + anon_sym_RPAREN, + [174944] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11124), 1, + ACTIONS(10489), 1, anon_sym_RBRACE3, - [184167] = 2, + [174951] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11126), 1, - anon_sym_RBRACE2, - [184174] = 2, + ACTIONS(10491), 1, + anon_sym_RPAREN, + [174958] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11128), 1, - aux_sym_brace_expression_token1, - [184181] = 2, + ACTIONS(10493), 1, + anon_sym_BQUOTE, + [174965] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11130), 1, + ACTIONS(10495), 1, aux_sym_brace_expression_token1, - [184188] = 2, + [174972] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_RBRACE3, - [184195] = 2, + ACTIONS(10497), 1, + anon_sym_BQUOTE, + [174979] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11134), 1, - anon_sym_RPAREN, - [184202] = 2, + ACTIONS(10499), 1, + anon_sym_esac, + [174986] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11136), 1, + ACTIONS(10501), 1, anon_sym_esac, - [184209] = 2, + [174993] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11138), 1, + ACTIONS(10503), 1, anon_sym_esac, - [184216] = 2, + [175000] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11140), 1, - anon_sym_BQUOTE, - [184223] = 2, + ACTIONS(10493), 1, + anon_sym_RPAREN, + [175007] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11142), 1, - anon_sym_BQUOTE, - [184230] = 2, + ACTIONS(10505), 1, + anon_sym_RBRACE3, + [175014] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11144), 1, - anon_sym_RPAREN_RPAREN, - [184237] = 2, + ACTIONS(10507), 1, + anon_sym_RBRACE2, + [175021] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11146), 1, + ACTIONS(10509), 1, aux_sym_brace_expression_token1, - [184244] = 2, + [175028] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11148), 1, - anon_sym_RBRACE3, - [184251] = 2, + ACTIONS(10511), 1, + anon_sym_BQUOTE, + [175035] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11150), 1, - anon_sym_esac, - [184258] = 2, + ACTIONS(10513), 1, + anon_sym_BQUOTE, + [175042] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11152), 1, - sym__regex_no_slash, - [184265] = 2, + ACTIONS(9685), 1, + anon_sym_fi, + [175049] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11154), 1, - anon_sym_esac, - [184272] = 2, + ACTIONS(10515), 1, + sym_heredoc_end, + [175056] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11156), 1, - sym_regex, - [184279] = 2, + ACTIONS(10517), 1, + anon_sym_then, + [175063] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11140), 1, - anon_sym_RPAREN, - [184286] = 2, + ACTIONS(10519), 1, + aux_sym_brace_expression_token1, + [175070] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11158), 1, - anon_sym_esac, - [184293] = 2, + ACTIONS(10521), 1, + sym_heredoc_end, + [175077] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11160), 1, - aux_sym_brace_expression_token1, - [184300] = 2, + ACTIONS(10523), 1, + anon_sym_RBRACE3, + [175084] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11162), 1, - anon_sym_fi, - [184307] = 2, + ACTIONS(10525), 1, + anon_sym_RPAREN, + [175091] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11164), 1, + ACTIONS(10511), 1, anon_sym_RPAREN, - [184314] = 2, + [175098] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11166), 1, + ACTIONS(10527), 1, anon_sym_RBRACE3, - [184321] = 2, + [175105] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11168), 1, - sym__regex_no_slash, - [184328] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11170), 1, - anon_sym_BQUOTE, - [184335] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11172), 1, + ACTIONS(10529), 1, aux_sym_brace_expression_token1, - [184342] = 2, + [175112] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11174), 1, - sym_heredoc_end, - [184349] = 2, + ACTIONS(10531), 1, + anon_sym_esac, + [175119] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11176), 1, - sym_regex, - [184356] = 2, + ACTIONS(10533), 1, + anon_sym_RPAREN, + [175126] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11178), 1, - sym_heredoc_end, - [184363] = 2, + ACTIONS(10535), 1, + anon_sym_BQUOTE, + [175133] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11164), 1, + ACTIONS(10533), 1, anon_sym_BQUOTE, - [184370] = 2, + [175140] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11180), 1, - anon_sym_RPAREN, - [184377] = 2, + ACTIONS(9659), 1, + anon_sym_fi, + [175147] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11182), 1, + ACTIONS(10537), 1, aux_sym_brace_expression_token1, - [184384] = 2, + [175154] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11184), 1, - anon_sym_RPAREN, - [184391] = 2, + ACTIONS(10539), 1, + anon_sym_RBRACE2, + [175161] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11186), 1, - anon_sym_RBRACE2, - [184398] = 2, + ACTIONS(10541), 1, + anon_sym_RPAREN, + [175168] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11188), 1, - anon_sym_RBRACE3, - [184405] = 2, + ACTIONS(10543), 1, + anon_sym_BQUOTE, + [175175] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11190), 1, - anon_sym_esac, - [184412] = 2, + ACTIONS(10545), 1, + anon_sym_BQUOTE, + [175182] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11192), 1, - anon_sym_esac, - [184419] = 2, + ACTIONS(10547), 1, + anon_sym_RPAREN, + [175189] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11194), 1, + ACTIONS(10549), 1, aux_sym_brace_expression_token1, - [184426] = 2, + [175196] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11196), 1, + ACTIONS(10543), 1, anon_sym_RPAREN, - [184433] = 2, + [175203] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10292), 1, - anon_sym_fi, - [184440] = 2, + ACTIONS(10551), 1, + anon_sym_RBRACE3, + [175210] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11198), 1, + ACTIONS(10553), 1, anon_sym_BQUOTE, - [184447] = 2, + [175217] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11200), 1, - anon_sym_BQUOTE, - [184454] = 2, + ACTIONS(10555), 1, + anon_sym_RBRACE2, + [175224] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11198), 1, + ACTIONS(10557), 1, anon_sym_RPAREN, - [184461] = 2, + [175231] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(10559), 1, aux_sym_brace_expression_token1, - [184468] = 2, + [175238] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11204), 1, + ACTIONS(10561), 1, anon_sym_BQUOTE, - [184475] = 2, + [175245] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11206), 1, - anon_sym_RBRACE3, - [184482] = 2, + ACTIONS(10563), 1, + anon_sym_BQUOTE, + [175252] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11208), 1, - anon_sym_RBRACE3, - [184489] = 2, + ACTIONS(10565), 1, + anon_sym_RBRACE2, + [175259] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11210), 1, - anon_sym_in, - [184496] = 2, - ACTIONS(63), 1, + ACTIONS(10561), 1, + anon_sym_RPAREN, + [175266] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11212), 1, - anon_sym_RBRACE2, - [184503] = 2, + ACTIONS(10567), 1, + anon_sym_LF, + [175273] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11214), 1, + ACTIONS(10569), 1, aux_sym_brace_expression_token1, - [184510] = 2, + [175280] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11216), 1, + ACTIONS(10571), 1, anon_sym_RBRACE3, - [184517] = 2, + [175287] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11218), 1, - anon_sym_RPAREN, - [184524] = 2, + ACTIONS(10573), 1, + anon_sym_RBRACE3, + [175294] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11220), 1, + ACTIONS(10575), 1, anon_sym_esac, - [184531] = 2, + [175301] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11222), 1, - anon_sym_esac, - [184538] = 2, + ACTIONS(10471), 1, + anon_sym_RPAREN, + [175308] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11224), 1, - anon_sym_BQUOTE, - [184545] = 2, + ACTIONS(10577), 1, + anon_sym_esac, + [175315] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11226), 1, + ACTIONS(10579), 1, aux_sym_brace_expression_token1, - [184552] = 2, + [175322] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10310), 1, - anon_sym_fi, - [184559] = 2, + ACTIONS(10581), 1, + anon_sym_BQUOTE, + [175329] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11228), 1, - anon_sym_in, - [184566] = 2, + ACTIONS(9697), 1, + anon_sym_fi, + [175336] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11230), 1, - anon_sym_BQUOTE, - [184573] = 2, + ACTIONS(10583), 1, + anon_sym_RBRACE2, + [175343] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11232), 1, - anon_sym_in, - [184580] = 2, + ACTIONS(10585), 1, + anon_sym_RPAREN, + [175350] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11234), 1, - anon_sym_RBRACE3, - [184587] = 2, + ACTIONS(10587), 1, + anon_sym_BQUOTE, + [175357] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11236), 1, + ACTIONS(10589), 1, aux_sym_brace_expression_token1, - [184594] = 2, + [175364] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11062), 1, - anon_sym_RPAREN, - [184601] = 2, + ACTIONS(10591), 1, + anon_sym_BQUOTE, + [175371] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11238), 1, - anon_sym_in, - [184608] = 2, + ACTIONS(10587), 1, + anon_sym_RPAREN, + [175378] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11240), 1, - anon_sym_RBRACE2, - [184615] = 2, + ACTIONS(10593), 1, + anon_sym_RBRACE3, + [175385] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_RBRACK, - [184622] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175392] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_RBRACK, - [184629] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175399] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11242), 1, + ACTIONS(10595), 1, aux_sym_brace_expression_token1, - [184636] = 2, + [175406] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11244), 1, - anon_sym_RBRACE3, - [184643] = 2, + ACTIONS(10597), 1, + anon_sym_RBRACE2, + [175413] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10960), 1, - anon_sym_BQUOTE, - [184650] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175420] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11246), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184657] = 2, + [175427] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11248), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184664] = 2, + [175434] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_RBRACE2, - [184671] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175441] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11252), 1, + ACTIONS(10599), 1, aux_sym_brace_expression_token1, - [184678] = 2, + [175448] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11254), 1, - anon_sym_then, - [184685] = 2, + ACTIONS(6727), 1, + anon_sym_RBRACK, + [175455] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10350), 1, - anon_sym_fi, - [184692] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175462] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11256), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184699] = 2, + [175469] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_RPAREN, - [184706] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175476] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11260), 1, - anon_sym_BQUOTE, - [184713] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175483] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11262), 1, + ACTIONS(10601), 1, aux_sym_brace_expression_token1, - [184720] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_BQUOTE, - [184727] = 2, + [175490] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11204), 1, - anon_sym_RPAREN, - [184734] = 2, + ACTIONS(6755), 1, + anon_sym_RBRACK, + [175497] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184741] = 2, + [175504] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(10603), 1, anon_sym_RPAREN, - [184748] = 2, + [175511] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11268), 1, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175518] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10605), 1, anon_sym_RPAREN, - [184755] = 2, + [175525] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11270), 1, + ACTIONS(10607), 1, aux_sym_brace_expression_token1, - [184762] = 2, + [175532] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11272), 1, - anon_sym_BQUOTE, - [184769] = 2, + ACTIONS(10609), 1, + anon_sym_RBRACE2, + [175539] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11274), 1, - anon_sym_BQUOTE, - [184776] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175546] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11260), 1, - anon_sym_RPAREN, - [184783] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175553] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11276), 1, - anon_sym_RPAREN_RPAREN, - [184790] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175560] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11272), 1, - anon_sym_RPAREN, - [184797] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175567] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11278), 1, + ACTIONS(10611), 1, aux_sym_brace_expression_token1, - [184804] = 2, + [175574] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11280), 1, - anon_sym_RBRACE3, - [184811] = 2, + ACTIONS(10613), 1, + anon_sym_RPAREN, + [175581] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11282), 1, - anon_sym_RPAREN, - [184818] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175588] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_RBRACE2, - [184825] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACE3, + [175595] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11286), 1, - aux_sym_brace_expression_token1, - [184832] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175602] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11288), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184839] = 2, + [175609] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11290), 1, + ACTIONS(10615), 1, aux_sym_brace_expression_token1, - [184846] = 2, + [175616] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(10617), 1, anon_sym_BQUOTE, - [184853] = 2, + [175623] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11292), 1, - anon_sym_RPAREN, - [184860] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175630] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(9750), 1, anon_sym_RBRACE3, - [184867] = 2, + [175637] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11294), 1, - anon_sym_RPAREN, - [184874] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175644] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11296), 1, - anon_sym_RPAREN, - [184881] = 2, + ACTIONS(9750), 1, + anon_sym_RBRACE3, + [175651] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11298), 1, + ACTIONS(10619), 1, aux_sym_brace_expression_token1, - [184888] = 2, + [175658] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_esac, - [184895] = 2, + ACTIONS(10621), 1, + anon_sym_BQUOTE, + [175665] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11302), 1, - anon_sym_RPAREN, - [184902] = 2, + ACTIONS(9454), 1, + anon_sym_RBRACE3, + [175672] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10623), 1, + anon_sym_RBRACE2, + [175679] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11304), 1, + ACTIONS(9927), 1, anon_sym_RBRACE3, - [184909] = 2, + [175686] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11306), 1, + ACTIONS(10617), 1, anon_sym_RPAREN, - [184916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11308), 1, - anon_sym_LF, - [184923] = 2, + [175693] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11310), 1, + ACTIONS(10625), 1, aux_sym_brace_expression_token1, - [184930] = 2, + [175700] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11312), 1, + ACTIONS(10627), 1, anon_sym_RBRACE3, - [184937] = 2, + [175707] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11314), 1, - anon_sym_BQUOTE, - [184944] = 2, + ACTIONS(10629), 1, + anon_sym_RBRACE3, + [175714] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11316), 1, - anon_sym_BQUOTE, - [184951] = 2, + ACTIONS(10631), 1, + anon_sym_RBRACE3, + [175721] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11314), 1, - anon_sym_RPAREN, - [184958] = 2, + ACTIONS(10633), 1, + anon_sym_RBRACE2, + [175728] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11318), 1, - anon_sym_RBRACE3, - [184965] = 2, + ACTIONS(10635), 1, + anon_sym_RPAREN, + [175735] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11320), 1, + ACTIONS(10637), 1, aux_sym_brace_expression_token1, - [184972] = 2, + [175742] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11322), 1, - anon_sym_RBRACE3, - [184979] = 2, + ACTIONS(10639), 1, + anon_sym_BQUOTE, + [175749] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11324), 1, - anon_sym_RBRACE2, - [184986] = 2, + ACTIONS(10641), 1, + anon_sym_RBRACE3, + [175756] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11326), 1, - anon_sym_RBRACE2, - [184993] = 2, + ACTIONS(10643), 1, + anon_sym_RBRACE3, + [175763] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11328), 1, - anon_sym_RBRACE2, - [185000] = 2, + ACTIONS(10645), 1, + anon_sym_RBRACE3, + [175770] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11330), 1, - anon_sym_RBRACE3, - [185007] = 2, + ACTIONS(10647), 1, + anon_sym_BQUOTE, + [175777] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11332), 1, + ACTIONS(10649), 1, aux_sym_brace_expression_token1, - [185014] = 2, + [175784] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11334), 1, - anon_sym_esac, - [185021] = 2, + ACTIONS(10651), 1, + anon_sym_RPAREN, + [175791] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11336), 1, + ACTIONS(10639), 1, anon_sym_RPAREN, - [185028] = 2, + [175798] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11338), 1, - anon_sym_BQUOTE, - [185035] = 2, + ACTIONS(10653), 1, + anon_sym_RBRACE3, + [175805] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11340), 1, + ACTIONS(10655), 1, anon_sym_BQUOTE, - [185042] = 2, + [175812] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11342), 1, - sym_heredoc_start, - [185049] = 2, + ACTIONS(10651), 1, + anon_sym_BQUOTE, + [175819] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11344), 1, + ACTIONS(10657), 1, aux_sym_brace_expression_token1, - [185056] = 2, + [175826] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11346), 1, + ACTIONS(10659), 1, anon_sym_RBRACE3, - [185063] = 2, + [175833] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11338), 1, - anon_sym_RPAREN, - [185070] = 2, + ACTIONS(10661), 1, + anon_sym_esac, + [175840] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11348), 1, + ACTIONS(10663), 1, anon_sym_RPAREN, - [185077] = 2, + [175847] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11350), 1, - anon_sym_RBRACE3, - [185084] = 2, + ACTIONS(10665), 1, + anon_sym_RBRACE2, + [175854] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11352), 1, - anon_sym_BQUOTE, - [185091] = 2, + ACTIONS(10667), 1, + anon_sym_esac, + [175861] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11354), 1, + ACTIONS(10669), 1, aux_sym_brace_expression_token1, - [185098] = 2, + [175868] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11356), 1, - anon_sym_RBRACE3, - [185105] = 2, + ACTIONS(10671), 1, + anon_sym_BQUOTE, + [175875] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11358), 1, - anon_sym_BQUOTE, - [185112] = 2, - ACTIONS(3), 1, + ACTIONS(10673), 1, + anon_sym_RPAREN, + [175882] = 2, + ACTIONS(63), 1, sym_comment, - ACTIONS(11360), 1, - anon_sym_LF, - [185119] = 2, + ACTIONS(10675), 1, + anon_sym_BQUOTE, + [175889] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11352), 1, - anon_sym_RPAREN, - [185126] = 2, + ACTIONS(10677), 1, + anon_sym_BQUOTE, + [175896] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11362), 1, - anon_sym_RPAREN, - [185133] = 2, + ACTIONS(10679), 1, + anon_sym_BQUOTE, + [175903] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11364), 1, + ACTIONS(10681), 1, aux_sym_brace_expression_token1, - [185140] = 2, + [175910] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11366), 1, - anon_sym_RBRACE3, - [185147] = 2, + ACTIONS(10671), 1, + anon_sym_RPAREN, + [175917] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11368), 1, - anon_sym_RBRACE3, - [185154] = 2, + ACTIONS(10675), 1, + anon_sym_RPAREN, + [175924] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11370), 1, - anon_sym_RBRACE3, - [185161] = 2, + ACTIONS(9691), 1, + anon_sym_fi, + [175931] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_RBRACE2, - [185168] = 2, + ACTIONS(10683), 1, + anon_sym_RBRACE3, + [175938] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11374), 1, + ACTIONS(10685), 1, anon_sym_RBRACE3, - [185175] = 2, + [175945] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11376), 1, + ACTIONS(10687), 1, aux_sym_brace_expression_token1, - [185182] = 2, + [175952] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11378), 1, - anon_sym_esac, - [185189] = 2, + ACTIONS(10689), 1, + anon_sym_RBRACE2, + [175959] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11380), 1, + ACTIONS(10691), 1, anon_sym_RBRACE3, - [185196] = 2, + [175966] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11382), 1, - anon_sym_RPAREN, - [185203] = 2, + ACTIONS(10693), 1, + anon_sym_RBRACE2, + [175973] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11384), 1, - anon_sym_esac, - [185210] = 2, + ACTIONS(10695), 1, + anon_sym_RPAREN, + [175980] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(10697), 1, anon_sym_BQUOTE, - [185217] = 2, + [175987] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11388), 1, + ACTIONS(10699), 1, aux_sym_brace_expression_token1, - [185224] = 2, + [175994] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11390), 1, + ACTIONS(10701), 1, anon_sym_BQUOTE, - [185231] = 2, + [176001] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(10703), 1, anon_sym_RPAREN, - [185238] = 2, + [176008] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11392), 1, - anon_sym_BQUOTE, - [185245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11394), 1, - anon_sym_LF, - [185252] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11396), 1, - sym_heredoc_end, - [185259] = 2, + ACTIONS(10697), 1, + anon_sym_RPAREN, + [176015] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11398), 1, + ACTIONS(10705), 1, anon_sym_RBRACE3, - [185266] = 2, + [176022] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11400), 1, - anon_sym_RBRACE3, - [185273] = 2, + ACTIONS(10707), 1, + anon_sym_BQUOTE, + [176029] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11402), 1, - sym_heredoc_end, - [185280] = 2, + ACTIONS(10709), 1, + aux_sym_brace_expression_token1, + [176036] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11362), 1, + ACTIONS(10703), 1, anon_sym_BQUOTE, - [185287] = 2, + [176043] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11404), 1, + ACTIONS(10711), 1, anon_sym_RPAREN, - [185294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11406), 1, - anon_sym_LF, - [185301] = 2, + [176050] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11408), 1, - aux_sym_brace_expression_token1, - [185308] = 2, + ACTIONS(10713), 1, + anon_sym_RBRACE2, + [176057] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11410), 1, + ACTIONS(10715), 1, anon_sym_RPAREN, - [185315] = 2, + [176064] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11412), 1, - anon_sym_RBRACE3, - [185322] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11414), 1, + ACTIONS(10717), 1, anon_sym_RBRACE2, - [185329] = 2, + [176071] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11416), 1, - anon_sym_RBRACE3, - [185336] = 2, + ACTIONS(10719), 1, + aux_sym_brace_expression_token1, + [176078] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11418), 1, - anon_sym_RPAREN, - [185343] = 2, + ACTIONS(10721), 1, + anon_sym_BQUOTE, + [176085] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11420), 1, - aux_sym_brace_expression_token1, - [185350] = 2, + ACTIONS(6534), 1, + anon_sym_RBRACK, + [176092] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11422), 1, - anon_sym_BQUOTE, - [185357] = 2, + ACTIONS(6536), 1, + anon_sym_RBRACK, + [176099] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11424), 1, + ACTIONS(10723), 1, anon_sym_BQUOTE, - [185364] = 2, + [176106] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11426), 1, - anon_sym_RPAREN, - [185371] = 2, + ACTIONS(10725), 1, + anon_sym_RBRACE2, + [176113] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(10721), 1, anon_sym_RPAREN, - [185378] = 2, + [176120] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11428), 1, + ACTIONS(10727), 1, anon_sym_RBRACE3, - [185385] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11430), 1, - aux_sym_brace_expression_token1, - [185392] = 2, + [176127] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11432), 1, + ACTIONS(10729), 1, anon_sym_RBRACE3, - [185399] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11434), 1, - anon_sym_RBRACE2, - [185406] = 2, + [176134] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11436), 1, - anon_sym_esac, - [185413] = 2, + ACTIONS(10731), 1, + anon_sym_RPAREN, + [176141] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11438), 1, + ACTIONS(10733), 1, anon_sym_BQUOTE, - [185420] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11440), 1, - anon_sym_RBRACE2, - [185427] = 2, + [176148] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11442), 1, - aux_sym_brace_expression_token1, - [185434] = 2, + ACTIONS(1302), 1, + anon_sym_RBRACE3, + [176155] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11444), 1, + ACTIONS(1294), 1, anon_sym_RBRACE3, - [185441] = 2, + [176162] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11446), 1, - anon_sym_fi, - [185448] = 2, + ACTIONS(10735), 1, + anon_sym_RBRACE2, + [176169] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11448), 1, + ACTIONS(10737), 1, anon_sym_RPAREN, - [185455] = 2, + [176176] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11450), 1, + ACTIONS(10739), 1, anon_sym_BQUOTE, - [185462] = 2, + [176183] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11452), 1, + ACTIONS(10741), 1, anon_sym_BQUOTE, - [185469] = 2, - ACTIONS(3), 1, + [176190] = 2, + ACTIONS(63), 1, sym_comment, - ACTIONS(11454), 1, - anon_sym_LF, - [185476] = 2, + ACTIONS(10743), 1, + sym_heredoc_start, + [176197] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(10731), 1, anon_sym_BQUOTE, - [185483] = 2, + [176204] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11450), 1, + ACTIONS(10739), 1, anon_sym_RPAREN, - [185490] = 2, + [176211] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11456), 1, - anon_sym_RBRACE2, - [185497] = 2, + ACTIONS(10745), 1, + anon_sym_RBRACE3, + [176218] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11458), 1, - anon_sym_RBRACE3, - [185504] = 2, + ACTIONS(10747), 1, + anon_sym_RPAREN, + [176225] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11460), 1, + ACTIONS(9784), 1, anon_sym_RBRACE3, - [185511] = 2, + [176232] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11426), 1, - anon_sym_BQUOTE, - [185518] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176239] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11462), 1, - anon_sym_RPAREN, - [185525] = 2, + ACTIONS(10749), 1, + anon_sym_RBRACE2, + [176246] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11464), 1, - anon_sym_then, - [185532] = 2, + ACTIONS(10211), 1, + aux_sym__simple_variable_name_token1, + [176253] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11466), 1, + ACTIONS(9784), 1, anon_sym_RBRACE3, - [185539] = 2, + [176260] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11468), 1, + ACTIONS(9784), 1, anon_sym_RBRACE3, - [185546] = 2, + [176267] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11470), 1, - anon_sym_RPAREN, - [185553] = 2, + ACTIONS(10751), 1, + anon_sym_DOT_DOT, + [176274] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11472), 1, - anon_sym_RPAREN, - [185560] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176281] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11474), 1, - anon_sym_BQUOTE, - [185567] = 2, + ACTIONS(10753), 1, + anon_sym_RBRACE2, + [176288] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11476), 1, - anon_sym_BQUOTE, - [185574] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176295] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10755), 1, + sym_heredoc_start, + [176302] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11478), 1, + ACTIONS(10757), 1, anon_sym_RPAREN, - [185581] = 2, + [176309] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10836), 1, - aux_sym__simple_variable_name_token1, - [185588] = 2, + ACTIONS(10759), 1, + anon_sym_BQUOTE, + [176316] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10761), 1, + anon_sym_LBRACK, + [176323] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11480), 1, + ACTIONS(10763), 1, anon_sym_BQUOTE, - [185595] = 2, + [176330] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11482), 1, - anon_sym_esac, - [185602] = 2, + ACTIONS(10759), 1, + anon_sym_RPAREN, + [176337] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11484), 1, - anon_sym_DOT_DOT, - [185609] = 2, + ACTIONS(10765), 1, + sym_heredoc_start, + [176344] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11474), 1, + ACTIONS(10767), 1, anon_sym_RPAREN, - [185616] = 2, + [176351] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11462), 1, - anon_sym_BQUOTE, - [185623] = 2, + ACTIONS(10769), 1, + anon_sym_RBRACE3, + [176358] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11486), 1, + ACTIONS(1314), 1, anon_sym_RBRACE3, - [185630] = 2, + [176365] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11488), 1, - sym_heredoc_start, - [185637] = 2, + ACTIONS(1314), 1, + anon_sym_RBRACE3, + [176372] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11490), 1, + ACTIONS(10771), 1, anon_sym_RPAREN, - [185644] = 2, + [176379] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11492), 1, - anon_sym_BQUOTE, - [185651] = 2, + ACTIONS(10773), 1, + anon_sym_esac, + [176386] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11494), 1, - anon_sym_RBRACE2, - [185658] = 2, + ACTIONS(10775), 1, + anon_sym_esac, + [176393] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11496), 1, + ACTIONS(9788), 1, anon_sym_RBRACE3, - [185665] = 2, + [176400] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11498), 1, + ACTIONS(9788), 1, anon_sym_RBRACE3, - [185672] = 2, + [176407] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11500), 1, - sym_heredoc_start, - [185679] = 2, + ACTIONS(9788), 1, + anon_sym_RBRACE3, + [176414] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11502), 1, - anon_sym_RPAREN, - [185686] = 2, + ACTIONS(9788), 1, + anon_sym_RBRACE3, + [176421] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11504), 1, - anon_sym_BQUOTE, - [185693] = 2, + ACTIONS(9788), 1, + anon_sym_RBRACE3, + [176428] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11506), 1, - anon_sym_BQUOTE, - [185700] = 2, + ACTIONS(9788), 1, + anon_sym_RBRACE3, + [176435] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_BQUOTE, - [185707] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176442] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11504), 1, - anon_sym_RPAREN, - [185714] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176449] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11510), 1, - anon_sym_RBRACE2, - [185721] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176456] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(9784), 1, anon_sym_RBRACE3, - [185728] = 2, + [176463] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11514), 1, - anon_sym_RBRACE2, - [185735] = 2, + ACTIONS(9784), 1, + anon_sym_RBRACE3, + [176470] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11516), 1, + ACTIONS(9784), 1, anon_sym_RBRACE3, - [185742] = 2, + [176477] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10777), 1, + anon_sym_BQUOTE, + [176484] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11518), 1, + ACTIONS(10771), 1, + anon_sym_BQUOTE, + [176491] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10779), 1, anon_sym_RBRACE2, - [185749] = 2, + [176498] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11520), 1, - anon_sym_RBRACE3, - [185756] = 2, + ACTIONS(10781), 1, + sym__regex_no_slash, + [176505] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11522), 1, + ACTIONS(10783), 1, anon_sym_RPAREN, - [185763] = 2, + [176512] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11524), 1, + ACTIONS(10785), 1, anon_sym_BQUOTE, - [185770] = 2, + [176519] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10787), 1, + anon_sym_esac, + [176526] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10789), 1, + anon_sym_esac, + [176533] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11526), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - [185777] = 2, + [176540] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11524), 1, + ACTIONS(10793), 1, anon_sym_RPAREN, - [185784] = 2, + [176547] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11528), 1, - anon_sym_RBRACE3, - [185791] = 2, + ACTIONS(10785), 1, + anon_sym_RPAREN, + [176554] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11530), 1, + ACTIONS(10795), 1, + anon_sym_fi, + [176561] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10797), 1, anon_sym_RBRACE3, - [185798] = 2, + [176568] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11532), 1, - anon_sym_RBRACE2, - [185805] = 2, + ACTIONS(10799), 1, + sym_heredoc_end, + [176575] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11534), 1, - anon_sym_RPAREN, - [185812] = 2, + ACTIONS(10801), 1, + anon_sym_in, + [176582] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11536), 1, - anon_sym_RBRACE2, - [185819] = 2, + ACTIONS(10803), 1, + anon_sym_in, + [176589] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11538), 1, - anon_sym_RBRACE3, - [185826] = 2, + ACTIONS(10805), 1, + sym_heredoc_end, + [176596] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11540), 1, - anon_sym_RPAREN, - [185833] = 2, + ACTIONS(10807), 1, + anon_sym_RBRACE2, + [176603] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11542), 1, - anon_sym_BQUOTE, - [185840] = 2, + ACTIONS(10809), 1, + anon_sym_esac, + [176610] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11544), 1, - anon_sym_BQUOTE, - [185847] = 2, + ACTIONS(10811), 1, + anon_sym_RBRACE2, + [176617] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11542), 1, + ACTIONS(10813), 1, anon_sym_RPAREN, - [185854] = 2, + [176624] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11546), 1, - anon_sym_DOT_DOT, - [185861] = 2, + ACTIONS(10815), 1, + anon_sym_esac, + [176631] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11548), 1, + ACTIONS(10817), 1, anon_sym_BQUOTE, - [185868] = 2, + [176638] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11550), 1, - anon_sym_RBRACE3, - [185875] = 2, + ACTIONS(9669), 1, + anon_sym_fi, + [176645] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11534), 1, + ACTIONS(10819), 1, anon_sym_BQUOTE, - [185882] = 2, + [176652] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11552), 1, + ACTIONS(10817), 1, anon_sym_RPAREN, - [185889] = 2, + [176659] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11554), 1, - anon_sym_RBRACE2, - [185896] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11556), 1, + ACTIONS(10821), 1, anon_sym_RBRACE3, - [185903] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11558), 1, - anon_sym_RBRACE2, - [185910] = 2, + [176666] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11560), 1, + ACTIONS(10823), 1, anon_sym_RBRACE3, - [185917] = 2, + [176673] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11562), 1, + ACTIONS(10825), 1, anon_sym_RPAREN, - [185924] = 2, + [176680] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11564), 1, + ACTIONS(10827), 1, anon_sym_BQUOTE, - [185931] = 2, + [176687] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11566), 1, + ACTIONS(10825), 1, anon_sym_BQUOTE, - [185938] = 2, + [176694] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11564), 1, - anon_sym_RPAREN, - [185945] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11568), 1, - anon_sym_RBRACE3, - [185952] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11570), 1, - anon_sym_RBRACE3, - [185959] = 2, + ACTIONS(3258), 1, + anon_sym_then, + [176701] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11572), 1, + ACTIONS(10829), 1, anon_sym_RBRACE2, - [185966] = 2, + [176708] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11574), 1, - anon_sym_in, - [185973] = 2, + ACTIONS(10831), 1, + anon_sym_RPAREN_RPAREN, + [176715] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11576), 1, - anon_sym_RBRACE2, - [185980] = 2, + ACTIONS(10833), 1, + anon_sym_esac, + [176722] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11578), 1, - anon_sym_RBRACE3, - [185987] = 2, + ACTIONS(10835), 1, + anon_sym_RPAREN, + [176729] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11580), 1, - anon_sym_RPAREN, - [185994] = 2, + ACTIONS(10837), 1, + aux_sym_brace_expression_token1, + [176736] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11582), 1, + ACTIONS(10767), 1, anon_sym_BQUOTE, - [186001] = 2, + [176743] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11584), 1, - anon_sym_BQUOTE, - [186008] = 2, + ACTIONS(10839), 1, + anon_sym_esac, + [176750] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11586), 1, - anon_sym_RBRACE3, - [186015] = 2, + ACTIONS(10841), 1, + anon_sym_BQUOTE, + [176757] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11588), 1, - anon_sym_in, - [186022] = 2, + ACTIONS(10843), 1, + anon_sym_RPAREN, + [176764] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11582), 1, + ACTIONS(10845), 1, anon_sym_RPAREN, - [186029] = 2, + [176771] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11590), 1, + ACTIONS(10847), 1, anon_sym_RBRACE3, - [186036] = 2, + [176778] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11592), 1, - anon_sym_RPAREN_RPAREN, - [186043] = 2, + ACTIONS(10205), 1, + aux_sym__simple_variable_name_token1, + [176785] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11594), 1, + ACTIONS(10849), 1, anon_sym_RBRACE2, - [186050] = 2, + [176792] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11596), 1, - anon_sym_RBRACE3, - [186057] = 2, + ACTIONS(10851), 1, + anon_sym_RBRACE2, + [176799] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11598), 1, - aux_sym_brace_expression_token1, - [186064] = 2, + ACTIONS(10853), 1, + anon_sym_DOT_DOT, + [176806] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10855), 1, + sym_heredoc_start, + [176813] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11600), 1, + ACTIONS(10857), 1, anon_sym_RPAREN, - [186071] = 2, + [176820] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(10859), 1, anon_sym_BQUOTE, - [186078] = 2, + [176827] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11604), 1, - anon_sym_BQUOTE, - [186085] = 2, + ACTIONS(10861), 1, + sym_heredoc_start, + [176834] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(10863), 1, anon_sym_RPAREN, - [186092] = 2, + [176841] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11606), 1, - anon_sym_RBRACE3, - [186099] = 2, + ACTIONS(9709), 1, + anon_sym_fi, + [176848] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_then, - [186106] = 2, + ACTIONS(10865), 1, + anon_sym_RPAREN, + [176855] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11608), 1, - anon_sym_RPAREN, - [186113] = 2, + ACTIONS(10867), 1, + anon_sym_BQUOTE, + [176862] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10832), 1, - aux_sym__simple_variable_name_token1, - [186120] = 2, + ACTIONS(10869), 1, + sym_heredoc_start, + [176869] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11610), 1, - anon_sym_RBRACE3, - [186127] = 2, + ACTIONS(10871), 1, + anon_sym_BQUOTE, + [176876] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11612), 1, + ACTIONS(10859), 1, anon_sym_RPAREN, - [186134] = 2, + [176883] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11614), 1, - anon_sym_DOT_DOT, - [186141] = 2, + ACTIONS(10873), 1, + anon_sym_RBRACE3, + [176890] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11616), 1, + ACTIONS(10875), 1, anon_sym_RBRACE3, - [186148] = 2, + [176897] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11618), 1, + ACTIONS(10877), 1, anon_sym_BQUOTE, - [186155] = 2, + [176904] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11620), 1, + ACTIONS(10879), 1, anon_sym_BQUOTE, - [186162] = 2, + [176911] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11622), 1, - sym_heredoc_start, - [186169] = 2, + ACTIONS(10881), 1, + anon_sym_RPAREN, + [176918] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11612), 1, + ACTIONS(10883), 1, anon_sym_BQUOTE, - [186176] = 2, + [176925] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11624), 1, + ACTIONS(10871), 1, anon_sym_RPAREN, - [186183] = 2, + [176932] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11626), 1, + ACTIONS(10885), 1, anon_sym_RBRACE2, - [186190] = 2, + [176939] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11628), 1, - anon_sym_RBRACE3, - [186197] = 2, + ACTIONS(10887), 1, + ts_builtin_sym_end, + [176946] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11630), 1, - sym_heredoc_start, - [186204] = 2, + ACTIONS(10889), 1, + anon_sym_RBRACE3, + [176953] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11632), 1, + ACTIONS(10891), 1, anon_sym_RPAREN, - [186211] = 2, + [176960] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11634), 1, - anon_sym_BQUOTE, - [186218] = 2, + ACTIONS(10893), 1, + anon_sym_RBRACE2, + [176967] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11636), 1, + ACTIONS(10895), 1, anon_sym_BQUOTE, - [186225] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11634), 1, - anon_sym_RPAREN, - [186232] = 2, + [176974] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11638), 1, - anon_sym_RBRACE3, - [186239] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11640), 1, - anon_sym_RBRACE3, - [186246] = 2, + ACTIONS(6486), 1, + anon_sym_RBRACK, + [176981] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11642), 1, - anon_sym_RBRACE2, - [186253] = 2, + ACTIONS(10897), 1, + anon_sym_BQUOTE, + [176988] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11644), 1, + ACTIONS(10895), 1, anon_sym_RPAREN, - [186260] = 2, + [176995] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11646), 1, - anon_sym_BQUOTE, - [186267] = 2, + ACTIONS(6771), 1, + anon_sym_RBRACK, + [177002] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11648), 1, - anon_sym_esac, - [186274] = 2, + ACTIONS(10899), 1, + anon_sym_RBRACE3, + [177009] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(10901), 1, anon_sym_RBRACE2, - [186281] = 2, + [177016] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11652), 1, - anon_sym_RBRACE3, - [186288] = 2, + ACTIONS(10903), 1, + anon_sym_RBRACE2, + [177023] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11654), 1, + ACTIONS(10905), 1, anon_sym_RPAREN, - [186295] = 2, + [177030] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11656), 1, + ACTIONS(10907), 1, anon_sym_BQUOTE, - [186302] = 2, + [177037] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11658), 1, + ACTIONS(10909), 1, anon_sym_BQUOTE, - [186309] = 2, + [177044] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11656), 1, - anon_sym_RPAREN, - [186316] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11660), 1, - ts_builtin_sym_end, - [186323] = 2, + ACTIONS(10911), 1, + anon_sym_RBRACE3, + [177051] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11662), 1, - ts_builtin_sym_end, - [186330] = 2, + ACTIONS(10907), 1, + anon_sym_RPAREN, + [177058] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11664), 1, + ACTIONS(10913), 1, anon_sym_RBRACE3, - [186337] = 2, + [177065] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11620), 1, + ACTIONS(10915), 1, anon_sym_RPAREN, - [186344] = 2, + [177072] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11666), 1, - anon_sym_RBRACE3, - [186351] = 2, + ACTIONS(10917), 1, + anon_sym_BQUOTE, + [177079] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11668), 1, - anon_sym_RBRACE3, - [186358] = 2, + ACTIONS(10919), 1, + anon_sym_then, + [177086] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11670), 1, - anon_sym_RPAREN, - [186365] = 2, + ACTIONS(1318), 1, + anon_sym_RBRACE3, + [177093] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11672), 1, - anon_sym_RBRACE2, - [186372] = 2, + ACTIONS(10915), 1, + anon_sym_BQUOTE, + [177100] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11674), 1, - anon_sym_RBRACE3, - [186379] = 2, + ACTIONS(10921), 1, + anon_sym_RPAREN, + [177107] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11676), 1, + ACTIONS(10923), 1, anon_sym_RPAREN, - [186386] = 2, + [177114] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11678), 1, - anon_sym_BQUOTE, - [186393] = 2, + ACTIONS(10925), 1, + anon_sym_RBRACE2, + [177121] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11680), 1, - anon_sym_BQUOTE, - [186400] = 2, + ACTIONS(10927), 1, + anon_sym_RPAREN, + [177128] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11682), 1, + ACTIONS(10929), 1, anon_sym_BQUOTE, - [186407] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11678), 1, - anon_sym_RPAREN, - [186414] = 2, + [177135] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11670), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - [186421] = 2, + [177142] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11684), 1, - anon_sym_RBRACE3, - [186428] = 2, + ACTIONS(10933), 1, + anon_sym_RPAREN, + [177149] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11686), 1, + ACTIONS(10929), 1, anon_sym_RPAREN, - [186435] = 2, + [177156] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11688), 1, - anon_sym_RBRACE2, - [186442] = 2, + ACTIONS(10935), 1, + anon_sym_DOT_DOT, + [177163] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11690), 1, + ACTIONS(10937), 1, anon_sym_RBRACE3, - [186449] = 2, + [177170] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11692), 1, - anon_sym_RBRACE2, - [186456] = 2, + ACTIONS(10879), 1, + anon_sym_RPAREN, + [177177] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11694), 1, + ACTIONS(10939), 1, anon_sym_RBRACE2, - [186463] = 2, + [177184] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11696), 1, - anon_sym_RBRACE3, - [186470] = 2, + ACTIONS(10941), 1, + anon_sym_DOT_DOT, + [177191] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11698), 1, + ACTIONS(10943), 1, anon_sym_RPAREN, - [186477] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11700), 1, - sym_word, - [186484] = 2, + [177198] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11702), 1, + ACTIONS(10945), 1, anon_sym_BQUOTE, - [186491] = 2, + [177205] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11704), 1, - anon_sym_BQUOTE, - [186498] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11702), 1, - anon_sym_RPAREN, - [186505] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11706), 1, - anon_sym_RBRACE3, - [186512] = 2, + ACTIONS(10947), 1, + sym_heredoc_start, + [177212] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11708), 1, + ACTIONS(10845), 1, anon_sym_BQUOTE, - [186519] = 2, + [177219] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11710), 1, - anon_sym_DOT_DOT, - [186526] = 2, + ACTIONS(10949), 1, + anon_sym_BQUOTE, + [177226] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11712), 1, - anon_sym_then, - [186533] = 2, + ACTIONS(10951), 1, + anon_sym_BQUOTE, + [177233] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11714), 1, + ACTIONS(10953), 1, anon_sym_RBRACE3, - [186540] = 2, + [177240] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11716), 1, + ACTIONS(10955), 1, sym_heredoc_start, - [186547] = 2, + [177247] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11718), 1, + ACTIONS(10957), 1, anon_sym_RBRACE3, - [186554] = 2, + [177254] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11720), 1, - anon_sym_RBRACE3, - [186561] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11722), 1, - anon_sym_RBRACE2, - [186568] = 2, + ACTIONS(10945), 1, + anon_sym_RPAREN, + [177261] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11724), 1, + ACTIONS(10959), 1, anon_sym_RBRACE3, - [186575] = 2, + [177268] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11726), 1, - sym_heredoc_start, - [186582] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11728), 1, - anon_sym_RPAREN, - [186589] = 2, + ACTIONS(10961), 1, + anon_sym_RBRACE2, + [177275] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11730), 1, + ACTIONS(10963), 1, anon_sym_RPAREN, - [186596] = 2, + [177282] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11732), 1, - anon_sym_RBRACE2, - [186603] = 2, + ACTIONS(10965), 1, + anon_sym_BQUOTE, + [177289] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11734), 1, - anon_sym_RBRACE3, - [186610] = 2, + ACTIONS(10967), 1, + anon_sym_RPAREN, + [177296] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11736), 1, + ACTIONS(10969), 1, anon_sym_BQUOTE, - [186617] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11738), 1, - anon_sym_RBRACE3, - [186624] = 2, + [177303] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11618), 1, + ACTIONS(10965), 1, anon_sym_RPAREN, - [186631] = 2, + [177310] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11740), 1, - anon_sym_RPAREN, - [186638] = 2, + ACTIONS(10971), 1, + anon_sym_DOT_DOT, + [177317] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11742), 1, + ACTIONS(10973), 1, anon_sym_RBRACE3, - [186645] = 2, + [177324] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11744), 1, - anon_sym_DOT_DOT, - [186652] = 2, + ACTIONS(10975), 1, + ts_builtin_sym_end, + [177331] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11746), 1, - anon_sym_BQUOTE, - [186659] = 2, + ACTIONS(10977), 1, + anon_sym_RBRACE2, + [177338] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11740), 1, - anon_sym_BQUOTE, - [186666] = 2, + ACTIONS(10979), 1, + anon_sym_RPAREN, + [177345] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11748), 1, + ACTIONS(10981), 1, anon_sym_BQUOTE, - [186673] = 2, + [177352] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11750), 1, + ACTIONS(10983), 1, anon_sym_BQUOTE, - [186680] = 2, + [177359] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11752), 1, + ACTIONS(10981), 1, anon_sym_RPAREN, - [186687] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11754), 1, - anon_sym_RBRACE2, - [186694] = 2, + [177366] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11756), 1, + ACTIONS(10985), 1, anon_sym_RBRACE3, - [186701] = 2, + [177373] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11758), 1, - sym_word, - [186708] = 2, + ACTIONS(10987), 1, + anon_sym_RBRACE2, + [177380] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(10989), 1, anon_sym_RPAREN, - [186715] = 2, + [177387] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11730), 1, + ACTIONS(10991), 1, anon_sym_BQUOTE, - [186722] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11762), 1, - anon_sym_RPAREN, - [186729] = 2, + [177394] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11764), 1, + ACTIONS(10993), 1, anon_sym_BQUOTE, - [186736] = 2, + [177401] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1316), 1, - anon_sym_RBRACE3, - [186743] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11766), 1, - anon_sym_DOT_DOT, - [186750] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11768), 1, - anon_sym_DOT_DOT, - [186757] = 2, + ACTIONS(10991), 1, + anon_sym_RPAREN, + [177408] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11770), 1, + ACTIONS(10995), 1, anon_sym_DOT_DOT, - [186764] = 2, + [177415] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11772), 1, + ACTIONS(10997), 1, anon_sym_DOT_DOT, - [186771] = 2, + [177422] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11774), 1, + ACTIONS(10999), 1, anon_sym_DOT_DOT, - [186778] = 2, + [177429] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11776), 1, + ACTIONS(11001), 1, anon_sym_DOT_DOT, - [186785] = 2, + [177436] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11778), 1, + ACTIONS(11003), 1, anon_sym_DOT_DOT, - [186792] = 2, + [177443] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11780), 1, + ACTIONS(11005), 1, anon_sym_DOT_DOT, - [186799] = 2, + [177450] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11782), 1, + ACTIONS(11007), 1, anon_sym_DOT_DOT, - [186806] = 2, + [177457] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11784), 1, + ACTIONS(11009), 1, anon_sym_DOT_DOT, - [186813] = 2, + [177464] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11011), 1, anon_sym_DOT_DOT, - [186820] = 2, + [177471] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11788), 1, + ACTIONS(11013), 1, anon_sym_DOT_DOT, - [186827] = 2, + [177478] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11790), 1, + ACTIONS(11015), 1, anon_sym_DOT_DOT, - [186834] = 2, + [177485] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(11017), 1, anon_sym_DOT_DOT, - [186841] = 2, + [177492] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11794), 1, + ACTIONS(11019), 1, anon_sym_DOT_DOT, - [186848] = 2, + [177499] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11796), 1, + ACTIONS(11021), 1, anon_sym_DOT_DOT, - [186855] = 2, + [177506] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11798), 1, + ACTIONS(11023), 1, anon_sym_DOT_DOT, - [186862] = 2, + [177513] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11800), 1, + ACTIONS(11025), 1, anon_sym_DOT_DOT, - [186869] = 2, + [177520] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11802), 1, + ACTIONS(11027), 1, anon_sym_DOT_DOT, - [186876] = 2, + [177527] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11804), 1, + ACTIONS(11029), 1, anon_sym_DOT_DOT, - [186883] = 2, + [177534] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11806), 1, + ACTIONS(11031), 1, anon_sym_DOT_DOT, - [186890] = 2, + [177541] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(11033), 1, anon_sym_DOT_DOT, - [186897] = 2, + [177548] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11810), 1, + ACTIONS(11035), 1, anon_sym_DOT_DOT, - [186904] = 2, + [177555] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11812), 1, + ACTIONS(11037), 1, anon_sym_DOT_DOT, - [186911] = 2, + [177562] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11814), 1, + ACTIONS(11039), 1, anon_sym_DOT_DOT, - [186918] = 2, + [177569] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11816), 1, + ACTIONS(11041), 1, anon_sym_DOT_DOT, - [186925] = 2, + [177576] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11818), 1, + ACTIONS(11043), 1, anon_sym_DOT_DOT, - [186932] = 2, + [177583] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11820), 1, + ACTIONS(11045), 1, anon_sym_DOT_DOT, - [186939] = 2, + [177590] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11822), 1, + ACTIONS(11047), 1, anon_sym_DOT_DOT, - [186946] = 2, + [177597] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11824), 1, + ACTIONS(11049), 1, anon_sym_DOT_DOT, - [186953] = 2, + [177604] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11826), 1, + ACTIONS(11051), 1, anon_sym_DOT_DOT, - [186960] = 2, + [177611] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11828), 1, + ACTIONS(11053), 1, anon_sym_DOT_DOT, - [186967] = 2, + [177618] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11830), 1, + ACTIONS(11055), 1, anon_sym_DOT_DOT, - [186974] = 2, + [177625] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11832), 1, + ACTIONS(11057), 1, anon_sym_DOT_DOT, - [186981] = 2, + [177632] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11834), 1, + ACTIONS(11059), 1, anon_sym_DOT_DOT, - [186988] = 2, + [177639] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11836), 1, + ACTIONS(11061), 1, anon_sym_DOT_DOT, - [186995] = 2, + [177646] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11838), 1, + ACTIONS(11063), 1, anon_sym_DOT_DOT, - [187002] = 2, + [177653] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11840), 1, + ACTIONS(11065), 1, anon_sym_DOT_DOT, - [187009] = 2, + [177660] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11842), 1, + ACTIONS(11067), 1, anon_sym_DOT_DOT, - [187016] = 2, + [177667] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11844), 1, + ACTIONS(11069), 1, anon_sym_DOT_DOT, - [187023] = 2, + [177674] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11846), 1, + ACTIONS(11071), 1, anon_sym_DOT_DOT, - [187030] = 2, + [177681] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11848), 1, + ACTIONS(11073), 1, anon_sym_DOT_DOT, - [187037] = 2, + [177688] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11850), 1, + ACTIONS(11075), 1, anon_sym_DOT_DOT, - [187044] = 2, + [177695] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11852), 1, + ACTIONS(11077), 1, aux_sym_brace_expression_token1, - [187051] = 2, + [177702] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11854), 1, + ACTIONS(11079), 1, sym_word, - [187058] = 2, + [177709] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11856), 1, + ACTIONS(11081), 1, anon_sym_RPAREN, - [187065] = 2, + [177716] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11858), 1, - anon_sym_BQUOTE, - [187072] = 2, + ACTIONS(11083), 1, + anon_sym_RBRACE3, + [177723] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1304), 1, - anon_sym_RBRACE3, - [187079] = 2, + ACTIONS(11085), 1, + anon_sym_RBRACE2, + [177730] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11764), 1, + ACTIONS(11087), 1, anon_sym_RPAREN, - [187086] = 2, + [177737] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11860), 1, + ACTIONS(11089), 1, aux_sym_brace_expression_token1, - [187093] = 2, + [177744] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11862), 1, + ACTIONS(11091), 1, sym_word, - [187100] = 2, + [177751] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11864), 1, + ACTIONS(11093), 1, anon_sym_RPAREN, - [187107] = 2, + [177758] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11866), 1, - anon_sym_RBRACE3, - [187114] = 2, + ACTIONS(11095), 1, + sym_word, + [177765] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10828), 1, - aux_sym__simple_variable_name_token1, - [187121] = 2, + ACTIONS(11097), 1, + anon_sym_BQUOTE, + [177772] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1296), 1, - anon_sym_RBRACE3, - [187128] = 2, + ACTIONS(10227), 1, + aux_sym__simple_variable_name_token1, + [177779] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11868), 1, + ACTIONS(11099), 1, aux_sym_brace_expression_token1, - [187135] = 2, + [177786] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11870), 1, + ACTIONS(11101), 1, sym_word, - [187142] = 2, + [177793] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11872), 1, + ACTIONS(11103), 1, anon_sym_RPAREN, - [187149] = 2, + [177800] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(11105), 1, anon_sym_BQUOTE, - [187156] = 2, + [177807] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11874), 1, + ACTIONS(11107), 1, aux_sym_brace_expression_token1, - [187163] = 2, + [177814] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(11109), 1, sym_word, - [187170] = 2, + [177821] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11878), 1, + ACTIONS(11111), 1, anon_sym_RPAREN, - [187177] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11880), 1, - aux_sym_brace_expression_token1, - [187184] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11882), 1, - aux_sym_brace_expression_token1, - [187191] = 2, + [177828] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11884), 1, + ACTIONS(11113), 1, aux_sym_brace_expression_token1, - [187198] = 2, + [177835] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11886), 1, + ACTIONS(11115), 1, aux_sym_brace_expression_token1, - [187205] = 2, + [177842] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11888), 1, + ACTIONS(11117), 1, aux_sym_brace_expression_token1, - [187212] = 2, + [177849] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11890), 1, + ACTIONS(11119), 1, aux_sym_brace_expression_token1, - [187219] = 2, + [177856] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11892), 1, + ACTIONS(11121), 1, aux_sym_brace_expression_token1, - [187226] = 2, + [177863] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11894), 1, + ACTIONS(11123), 1, aux_sym_brace_expression_token1, - [187233] = 2, + [177870] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11896), 1, + ACTIONS(11125), 1, aux_sym_brace_expression_token1, - [187240] = 2, + [177877] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11898), 1, + ACTIONS(11127), 1, aux_sym_brace_expression_token1, - [187247] = 2, + [177884] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11900), 1, + ACTIONS(11129), 1, aux_sym_brace_expression_token1, - [187254] = 2, + [177891] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11902), 1, + ACTIONS(11131), 1, aux_sym_brace_expression_token1, - [187261] = 2, + [177898] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11904), 1, + ACTIONS(11133), 1, aux_sym_brace_expression_token1, - [187268] = 2, + [177905] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11906), 1, + ACTIONS(11135), 1, aux_sym_brace_expression_token1, - [187275] = 2, + [177912] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(11137), 1, aux_sym_brace_expression_token1, - [187282] = 2, + [177919] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11910), 1, + ACTIONS(11139), 1, aux_sym_brace_expression_token1, - [187289] = 2, + [177926] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11912), 1, + ACTIONS(11141), 1, aux_sym_brace_expression_token1, - [187296] = 2, + [177933] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11914), 1, + ACTIONS(11143), 1, aux_sym_brace_expression_token1, - [187303] = 2, + [177940] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11916), 1, + ACTIONS(11145), 1, aux_sym_brace_expression_token1, - [187310] = 2, + [177947] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11918), 1, + ACTIONS(11147), 1, aux_sym_brace_expression_token1, - [187317] = 2, + [177954] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11920), 1, + ACTIONS(11149), 1, aux_sym_brace_expression_token1, - [187324] = 2, + [177961] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11922), 1, + ACTIONS(11151), 1, aux_sym_brace_expression_token1, - [187331] = 2, + [177968] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11924), 1, + ACTIONS(11153), 1, aux_sym_brace_expression_token1, - [187338] = 2, + [177975] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11926), 1, + ACTIONS(11155), 1, aux_sym_brace_expression_token1, - [187345] = 2, + [177982] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11928), 1, + ACTIONS(11157), 1, aux_sym_brace_expression_token1, - [187352] = 2, + [177989] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11930), 1, + ACTIONS(11159), 1, aux_sym_brace_expression_token1, - [187359] = 2, + [177996] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11932), 1, + ACTIONS(11161), 1, aux_sym_brace_expression_token1, - [187366] = 2, + [178003] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11934), 1, + ACTIONS(11163), 1, aux_sym_brace_expression_token1, - [187373] = 2, + [178010] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11936), 1, + ACTIONS(11165), 1, aux_sym_brace_expression_token1, - [187380] = 2, + [178017] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11938), 1, + ACTIONS(11167), 1, aux_sym_brace_expression_token1, - [187387] = 2, + [178024] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11940), 1, + ACTIONS(11169), 1, aux_sym_brace_expression_token1, - [187394] = 2, + [178031] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11942), 1, + ACTIONS(11171), 1, aux_sym_brace_expression_token1, - [187401] = 2, + [178038] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11944), 1, + ACTIONS(11173), 1, aux_sym_brace_expression_token1, - [187408] = 2, + [178045] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11946), 1, + ACTIONS(11175), 1, aux_sym_brace_expression_token1, - [187415] = 2, + [178052] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11948), 1, + ACTIONS(11177), 1, aux_sym_brace_expression_token1, - [187422] = 2, + [178059] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11950), 1, + ACTIONS(11179), 1, aux_sym_brace_expression_token1, - [187429] = 2, + [178066] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11952), 1, + ACTIONS(11181), 1, aux_sym_brace_expression_token1, - [187436] = 2, + [178073] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11954), 1, + ACTIONS(11183), 1, aux_sym_brace_expression_token1, - [187443] = 2, + [178080] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11956), 1, + ACTIONS(11185), 1, aux_sym_brace_expression_token1, - [187450] = 2, + [178087] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11958), 1, + ACTIONS(11187), 1, aux_sym_brace_expression_token1, - [187457] = 2, + [178094] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11960), 1, + ACTIONS(11189), 1, aux_sym_brace_expression_token1, - [187464] = 2, + [178101] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11962), 1, + ACTIONS(11191), 1, aux_sym_brace_expression_token1, - [187471] = 2, + [178108] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11964), 1, + ACTIONS(11193), 1, aux_sym_brace_expression_token1, - [187478] = 2, + [178115] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11966), 1, + ACTIONS(11195), 1, aux_sym_brace_expression_token1, - [187485] = 2, + [178122] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(11968), 1, + ACTIONS(11097), 1, anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(433)] = 0, - [SMALL_STATE(434)] = 71, - [SMALL_STATE(435)] = 150, - [SMALL_STATE(436)] = 282, - [SMALL_STATE(437)] = 414, - [SMALL_STATE(438)] = 546, - [SMALL_STATE(439)] = 678, - [SMALL_STATE(440)] = 783, - [SMALL_STATE(441)] = 888, - [SMALL_STATE(442)] = 993, - [SMALL_STATE(443)] = 1097, - [SMALL_STATE(444)] = 1201, - [SMALL_STATE(445)] = 1305, - [SMALL_STATE(446)] = 1409, - [SMALL_STATE(447)] = 1513, - [SMALL_STATE(448)] = 1617, - [SMALL_STATE(449)] = 1721, - [SMALL_STATE(450)] = 1825, - [SMALL_STATE(451)] = 1928, - [SMALL_STATE(452)] = 2031, - [SMALL_STATE(453)] = 2134, - [SMALL_STATE(454)] = 2237, - [SMALL_STATE(455)] = 2340, - [SMALL_STATE(456)] = 2443, - [SMALL_STATE(457)] = 2546, - [SMALL_STATE(458)] = 2649, - [SMALL_STATE(459)] = 2752, - [SMALL_STATE(460)] = 2855, - [SMALL_STATE(461)] = 2958, - [SMALL_STATE(462)] = 3029, - [SMALL_STATE(463)] = 3100, - [SMALL_STATE(464)] = 3170, - [SMALL_STATE(465)] = 3272, - [SMALL_STATE(466)] = 3370, - [SMALL_STATE(467)] = 3468, - [SMALL_STATE(468)] = 3570, - [SMALL_STATE(469)] = 3638, - [SMALL_STATE(470)] = 3706, - [SMALL_STATE(471)] = 3808, - [SMALL_STATE(472)] = 3904, - [SMALL_STATE(473)] = 4006, - [SMALL_STATE(474)] = 4108, - [SMALL_STATE(475)] = 4210, - [SMALL_STATE(476)] = 4312, - [SMALL_STATE(477)] = 4414, - [SMALL_STATE(478)] = 4516, - [SMALL_STATE(479)] = 4586, - [SMALL_STATE(480)] = 4688, - [SMALL_STATE(481)] = 4790, - [SMALL_STATE(482)] = 4892, - [SMALL_STATE(483)] = 4992, - [SMALL_STATE(484)] = 5092, - [SMALL_STATE(485)] = 5194, - [SMALL_STATE(486)] = 5292, - [SMALL_STATE(487)] = 5387, - [SMALL_STATE(488)] = 5456, - [SMALL_STATE(489)] = 5557, - [SMALL_STATE(490)] = 5652, - [SMALL_STATE(491)] = 5721, - [SMALL_STATE(492)] = 5822, - [SMALL_STATE(493)] = 5921, - [SMALL_STATE(494)] = 5990, - [SMALL_STATE(495)] = 6091, - [SMALL_STATE(496)] = 6190, - [SMALL_STATE(497)] = 6287, - [SMALL_STATE(498)] = 6354, - [SMALL_STATE(499)] = 6423, - [SMALL_STATE(500)] = 6492, - [SMALL_STATE(501)] = 6559, - [SMALL_STATE(502)] = 6628, - [SMALL_STATE(503)] = 6725, - [SMALL_STATE(504)] = 6826, - [SMALL_STATE(505)] = 6923, - [SMALL_STATE(506)] = 7024, - [SMALL_STATE(507)] = 7123, - [SMALL_STATE(508)] = 7218, - [SMALL_STATE(509)] = 7287, - [SMALL_STATE(510)] = 7386, - [SMALL_STATE(511)] = 7481, - [SMALL_STATE(512)] = 7550, - [SMALL_STATE(513)] = 7646, - [SMALL_STATE(514)] = 7742, - [SMALL_STATE(515)] = 7838, - [SMALL_STATE(516)] = 7906, - [SMALL_STATE(517)] = 7974, - [SMALL_STATE(518)] = 8040, - [SMALL_STATE(519)] = 8134, - [SMALL_STATE(520)] = 8200, - [SMALL_STATE(521)] = 8266, - [SMALL_STATE(522)] = 8360, - [SMALL_STATE(523)] = 8454, - [SMALL_STATE(524)] = 8548, - [SMALL_STATE(525)] = 8616, - [SMALL_STATE(526)] = 8684, - [SMALL_STATE(527)] = 8778, - [SMALL_STATE(528)] = 8874, - [SMALL_STATE(529)] = 8942, - [SMALL_STATE(530)] = 9010, - [SMALL_STATE(531)] = 9076, - [SMALL_STATE(532)] = 9144, - [SMALL_STATE(533)] = 9240, - [SMALL_STATE(534)] = 9308, - [SMALL_STATE(535)] = 9376, - [SMALL_STATE(536)] = 9444, - [SMALL_STATE(537)] = 9540, - [SMALL_STATE(538)] = 9607, - [SMALL_STATE(539)] = 9706, - [SMALL_STATE(540)] = 9799, - [SMALL_STATE(541)] = 9862, - [SMALL_STATE(542)] = 9955, - [SMALL_STATE(543)] = 10020, - [SMALL_STATE(544)] = 10115, - [SMALL_STATE(545)] = 10182, - [SMALL_STATE(546)] = 10275, - [SMALL_STATE(547)] = 10342, - [SMALL_STATE(548)] = 10437, - [SMALL_STATE(549)] = 10496, - [SMALL_STATE(550)] = 10589, - [SMALL_STATE(551)] = 10654, - [SMALL_STATE(552)] = 10717, - [SMALL_STATE(553)] = 10784, - [SMALL_STATE(554)] = 10877, - [SMALL_STATE(555)] = 10944, - [SMALL_STATE(556)] = 11037, - [SMALL_STATE(557)] = 11104, - [SMALL_STATE(558)] = 11203, - [SMALL_STATE(559)] = 11296, - [SMALL_STATE(560)] = 11391, - [SMALL_STATE(561)] = 11454, - [SMALL_STATE(562)] = 11553, - [SMALL_STATE(563)] = 11620, - [SMALL_STATE(564)] = 11687, - [SMALL_STATE(565)] = 11754, - [SMALL_STATE(566)] = 11821, - [SMALL_STATE(567)] = 11884, - [SMALL_STATE(568)] = 11977, - [SMALL_STATE(569)] = 12070, - [SMALL_STATE(570)] = 12137, - [SMALL_STATE(571)] = 12204, - [SMALL_STATE(572)] = 12270, - [SMALL_STATE(573)] = 12336, - [SMALL_STATE(574)] = 12426, - [SMALL_STATE(575)] = 12492, - [SMALL_STATE(576)] = 12558, - [SMALL_STATE(577)] = 12674, - [SMALL_STATE(578)] = 12790, - [SMALL_STATE(579)] = 12906, - [SMALL_STATE(580)] = 13022, - [SMALL_STATE(581)] = 13138, - [SMALL_STATE(582)] = 13238, - [SMALL_STATE(583)] = 13354, - [SMALL_STATE(584)] = 13454, - [SMALL_STATE(585)] = 13520, - [SMALL_STATE(586)] = 13586, - [SMALL_STATE(587)] = 13652, - [SMALL_STATE(588)] = 13768, - [SMALL_STATE(589)] = 13866, - [SMALL_STATE(590)] = 13932, - [SMALL_STATE(591)] = 14030, - [SMALL_STATE(592)] = 14096, - [SMALL_STATE(593)] = 14162, - [SMALL_STATE(594)] = 14228, - [SMALL_STATE(595)] = 14318, - [SMALL_STATE(596)] = 14384, - [SMALL_STATE(597)] = 14482, - [SMALL_STATE(598)] = 14580, - [SMALL_STATE(599)] = 14672, - [SMALL_STATE(600)] = 14788, - [SMALL_STATE(601)] = 14880, - [SMALL_STATE(602)] = 14972, - [SMALL_STATE(603)] = 15070, - [SMALL_STATE(604)] = 15170, - [SMALL_STATE(605)] = 15269, - [SMALL_STATE(606)] = 15370, - [SMALL_STATE(607)] = 15435, - [SMALL_STATE(608)] = 15500, - [SMALL_STATE(609)] = 15577, - [SMALL_STATE(610)] = 15676, - [SMALL_STATE(611)] = 15745, - [SMALL_STATE(612)] = 15844, - [SMALL_STATE(613)] = 15943, - [SMALL_STATE(614)] = 16020, - [SMALL_STATE(615)] = 16085, - [SMALL_STATE(616)] = 16184, - [SMALL_STATE(617)] = 16253, - [SMALL_STATE(618)] = 16318, - [SMALL_STATE(619)] = 16383, - [SMALL_STATE(620)] = 16448, - [SMALL_STATE(621)] = 16510, - [SMALL_STATE(622)] = 16568, - [SMALL_STATE(623)] = 16630, - [SMALL_STATE(624)] = 16688, - [SMALL_STATE(625)] = 16764, - [SMALL_STATE(626)] = 16832, - [SMALL_STATE(627)] = 16894, - [SMALL_STATE(628)] = 16956, - [SMALL_STATE(629)] = 17012, - [SMALL_STATE(630)] = 17104, - [SMALL_STATE(631)] = 17162, - [SMALL_STATE(632)] = 17230, - [SMALL_STATE(633)] = 17306, - [SMALL_STATE(634)] = 17364, - [SMALL_STATE(635)] = 17456, - [SMALL_STATE(636)] = 17514, - [SMALL_STATE(637)] = 17606, - [SMALL_STATE(638)] = 17662, - [SMALL_STATE(639)] = 17726, - [SMALL_STATE(640)] = 17816, - [SMALL_STATE(641)] = 17880, - [SMALL_STATE(642)] = 17944, - [SMALL_STATE(643)] = 18036, - [SMALL_STATE(644)] = 18099, - [SMALL_STATE(645)] = 18174, - [SMALL_STATE(646)] = 18267, - [SMALL_STATE(647)] = 18322, - [SMALL_STATE(648)] = 18411, - [SMALL_STATE(649)] = 18480, - [SMALL_STATE(650)] = 18569, - [SMALL_STATE(651)] = 18662, - [SMALL_STATE(652)] = 18725, - [SMALL_STATE(653)] = 18782, - [SMALL_STATE(654)] = 18857, - [SMALL_STATE(655)] = 18920, - [SMALL_STATE(656)] = 18983, - [SMALL_STATE(657)] = 19050, - [SMALL_STATE(658)] = 19113, - [SMALL_STATE(659)] = 19176, - [SMALL_STATE(660)] = 19269, - [SMALL_STATE(661)] = 19326, - [SMALL_STATE(662)] = 19389, - [SMALL_STATE(663)] = 19464, - [SMALL_STATE(664)] = 19531, - [SMALL_STATE(665)] = 19622, - [SMALL_STATE(666)] = 19683, - [SMALL_STATE(667)] = 19744, - [SMALL_STATE(668)] = 19807, - [SMALL_STATE(669)] = 19870, - [SMALL_STATE(670)] = 19961, - [SMALL_STATE(671)] = 20022, - [SMALL_STATE(672)] = 20083, - [SMALL_STATE(673)] = 20172, - [SMALL_STATE(674)] = 20233, - [SMALL_STATE(675)] = 20300, - [SMALL_STATE(676)] = 20361, - [SMALL_STATE(677)] = 20436, - [SMALL_STATE(678)] = 20497, - [SMALL_STATE(679)] = 20558, - [SMALL_STATE(680)] = 20619, - [SMALL_STATE(681)] = 20680, - [SMALL_STATE(682)] = 20741, - [SMALL_STATE(683)] = 20832, - [SMALL_STATE(684)] = 20893, - [SMALL_STATE(685)] = 20954, - [SMALL_STATE(686)] = 21045, - [SMALL_STATE(687)] = 21106, - [SMALL_STATE(688)] = 21166, - [SMALL_STATE(689)] = 21226, - [SMALL_STATE(690)] = 21288, - [SMALL_STATE(691)] = 21348, - [SMALL_STATE(692)] = 21402, - [SMALL_STATE(693)] = 21464, - [SMALL_STATE(694)] = 21518, - [SMALL_STATE(695)] = 21572, - [SMALL_STATE(696)] = 21626, - [SMALL_STATE(697)] = 21686, - [SMALL_STATE(698)] = 21746, - [SMALL_STATE(699)] = 21800, - [SMALL_STATE(700)] = 21854, - [SMALL_STATE(701)] = 21908, - [SMALL_STATE(702)] = 21974, - [SMALL_STATE(703)] = 22028, - [SMALL_STATE(704)] = 22094, - [SMALL_STATE(705)] = 22148, - [SMALL_STATE(706)] = 22202, - [SMALL_STATE(707)] = 22298, - [SMALL_STATE(708)] = 22358, - [SMALL_STATE(709)] = 22418, - [SMALL_STATE(710)] = 22490, - [SMALL_STATE(711)] = 22550, - [SMALL_STATE(712)] = 22604, - [SMALL_STATE(713)] = 22658, - [SMALL_STATE(714)] = 22712, - [SMALL_STATE(715)] = 22766, - [SMALL_STATE(716)] = 22826, - [SMALL_STATE(717)] = 22880, - [SMALL_STATE(718)] = 22934, - [SMALL_STATE(719)] = 22988, - [SMALL_STATE(720)] = 23048, - [SMALL_STATE(721)] = 23102, - [SMALL_STATE(722)] = 23156, - [SMALL_STATE(723)] = 23216, - [SMALL_STATE(724)] = 23270, - [SMALL_STATE(725)] = 23330, - [SMALL_STATE(726)] = 23390, - [SMALL_STATE(727)] = 23452, - [SMALL_STATE(728)] = 23512, - [SMALL_STATE(729)] = 23572, - [SMALL_STATE(730)] = 23632, - [SMALL_STATE(731)] = 23692, - [SMALL_STATE(732)] = 23752, - [SMALL_STATE(733)] = 23824, - [SMALL_STATE(734)] = 23884, - [SMALL_STATE(735)] = 23944, - [SMALL_STATE(736)] = 24004, - [SMALL_STATE(737)] = 24064, - [SMALL_STATE(738)] = 24124, - [SMALL_STATE(739)] = 24186, - [SMALL_STATE(740)] = 24246, - [SMALL_STATE(741)] = 24336, - [SMALL_STATE(742)] = 24398, - [SMALL_STATE(743)] = 24472, - [SMALL_STATE(744)] = 24546, - [SMALL_STATE(745)] = 24608, - [SMALL_STATE(746)] = 24670, - [SMALL_STATE(747)] = 24760, - [SMALL_STATE(748)] = 24820, - [SMALL_STATE(749)] = 24880, - [SMALL_STATE(750)] = 24942, - [SMALL_STATE(751)] = 25004, - [SMALL_STATE(752)] = 25066, - [SMALL_STATE(753)] = 25156, - [SMALL_STATE(754)] = 25228, - [SMALL_STATE(755)] = 25294, - [SMALL_STATE(756)] = 25366, - [SMALL_STATE(757)] = 25432, - [SMALL_STATE(758)] = 25492, - [SMALL_STATE(759)] = 25552, - [SMALL_STATE(760)] = 25624, - [SMALL_STATE(761)] = 25686, - [SMALL_STATE(762)] = 25748, - [SMALL_STATE(763)] = 25844, - [SMALL_STATE(764)] = 25916, - [SMALL_STATE(765)] = 25988, - [SMALL_STATE(766)] = 26060, - [SMALL_STATE(767)] = 26113, - [SMALL_STATE(768)] = 26172, - [SMALL_STATE(769)] = 26233, - [SMALL_STATE(770)] = 26292, - [SMALL_STATE(771)] = 26351, - [SMALL_STATE(772)] = 26410, - [SMALL_STATE(773)] = 26469, - [SMALL_STATE(774)] = 26528, - [SMALL_STATE(775)] = 26587, - [SMALL_STATE(776)] = 26640, - [SMALL_STATE(777)] = 26699, - [SMALL_STATE(778)] = 26758, - [SMALL_STATE(779)] = 26817, - [SMALL_STATE(780)] = 26876, - [SMALL_STATE(781)] = 26935, - [SMALL_STATE(782)] = 26994, - [SMALL_STATE(783)] = 27087, - [SMALL_STATE(784)] = 27180, - [SMALL_STATE(785)] = 27239, - [SMALL_STATE(786)] = 27298, - [SMALL_STATE(787)] = 27357, - [SMALL_STATE(788)] = 27416, - [SMALL_STATE(789)] = 27475, - [SMALL_STATE(790)] = 27528, - [SMALL_STATE(791)] = 27587, - [SMALL_STATE(792)] = 27648, - [SMALL_STATE(793)] = 27705, - [SMALL_STATE(794)] = 27766, - [SMALL_STATE(795)] = 27825, - [SMALL_STATE(796)] = 27884, - [SMALL_STATE(797)] = 27941, - [SMALL_STATE(798)] = 28000, - [SMALL_STATE(799)] = 28059, - [SMALL_STATE(800)] = 28118, - [SMALL_STATE(801)] = 28177, - [SMALL_STATE(802)] = 28236, - [SMALL_STATE(803)] = 28289, - [SMALL_STATE(804)] = 28342, - [SMALL_STATE(805)] = 28395, - [SMALL_STATE(806)] = 28448, - [SMALL_STATE(807)] = 28501, - [SMALL_STATE(808)] = 28560, - [SMALL_STATE(809)] = 28619, - [SMALL_STATE(810)] = 28676, - [SMALL_STATE(811)] = 28735, - [SMALL_STATE(812)] = 28794, - [SMALL_STATE(813)] = 28847, - [SMALL_STATE(814)] = 28906, - [SMALL_STATE(815)] = 28965, - [SMALL_STATE(816)] = 29018, - [SMALL_STATE(817)] = 29077, - [SMALL_STATE(818)] = 29136, - [SMALL_STATE(819)] = 29195, - [SMALL_STATE(820)] = 29248, - [SMALL_STATE(821)] = 29301, - [SMALL_STATE(822)] = 29354, - [SMALL_STATE(823)] = 29407, - [SMALL_STATE(824)] = 29460, - [SMALL_STATE(825)] = 29553, - [SMALL_STATE(826)] = 29606, - [SMALL_STATE(827)] = 29659, - [SMALL_STATE(828)] = 29712, - [SMALL_STATE(829)] = 29771, - [SMALL_STATE(830)] = 29832, - [SMALL_STATE(831)] = 29885, - [SMALL_STATE(832)] = 29942, - [SMALL_STATE(833)] = 29995, - [SMALL_STATE(834)] = 30048, - [SMALL_STATE(835)] = 30101, - [SMALL_STATE(836)] = 30154, - [SMALL_STATE(837)] = 30213, - [SMALL_STATE(838)] = 30266, - [SMALL_STATE(839)] = 30319, - [SMALL_STATE(840)] = 30372, - [SMALL_STATE(841)] = 30425, - [SMALL_STATE(842)] = 30478, - [SMALL_STATE(843)] = 30531, - [SMALL_STATE(844)] = 30584, - [SMALL_STATE(845)] = 30643, - [SMALL_STATE(846)] = 30696, - [SMALL_STATE(847)] = 30755, - [SMALL_STATE(848)] = 30808, - [SMALL_STATE(849)] = 30861, - [SMALL_STATE(850)] = 30914, - [SMALL_STATE(851)] = 30967, - [SMALL_STATE(852)] = 31020, - [SMALL_STATE(853)] = 31073, - [SMALL_STATE(854)] = 31126, - [SMALL_STATE(855)] = 31179, - [SMALL_STATE(856)] = 31238, - [SMALL_STATE(857)] = 31297, - [SMALL_STATE(858)] = 31356, - [SMALL_STATE(859)] = 31415, - [SMALL_STATE(860)] = 31468, - [SMALL_STATE(861)] = 31561, - [SMALL_STATE(862)] = 31654, - [SMALL_STATE(863)] = 31715, - [SMALL_STATE(864)] = 31776, - [SMALL_STATE(865)] = 31869, - [SMALL_STATE(866)] = 31962, - [SMALL_STATE(867)] = 32055, - [SMALL_STATE(868)] = 32114, - [SMALL_STATE(869)] = 32207, - [SMALL_STATE(870)] = 32300, - [SMALL_STATE(871)] = 32352, - [SMALL_STATE(872)] = 32404, - [SMALL_STATE(873)] = 32456, - [SMALL_STATE(874)] = 32508, - [SMALL_STATE(875)] = 32560, - [SMALL_STATE(876)] = 32612, - [SMALL_STATE(877)] = 32664, - [SMALL_STATE(878)] = 32716, - [SMALL_STATE(879)] = 32768, - [SMALL_STATE(880)] = 32820, - [SMALL_STATE(881)] = 32872, - [SMALL_STATE(882)] = 32924, - [SMALL_STATE(883)] = 32982, - [SMALL_STATE(884)] = 33040, - [SMALL_STATE(885)] = 33092, - [SMALL_STATE(886)] = 33144, - [SMALL_STATE(887)] = 33196, - [SMALL_STATE(888)] = 33248, - [SMALL_STATE(889)] = 33306, - [SMALL_STATE(890)] = 33364, - [SMALL_STATE(891)] = 33422, - [SMALL_STATE(892)] = 33480, - [SMALL_STATE(893)] = 33538, - [SMALL_STATE(894)] = 33596, - [SMALL_STATE(895)] = 33694, - [SMALL_STATE(896)] = 33752, - [SMALL_STATE(897)] = 33850, - [SMALL_STATE(898)] = 33908, - [SMALL_STATE(899)] = 33966, - [SMALL_STATE(900)] = 34064, - [SMALL_STATE(901)] = 34120, - [SMALL_STATE(902)] = 34172, - [SMALL_STATE(903)] = 34230, - [SMALL_STATE(904)] = 34288, - [SMALL_STATE(905)] = 34344, - [SMALL_STATE(906)] = 34396, - [SMALL_STATE(907)] = 34448, - [SMALL_STATE(908)] = 34504, - [SMALL_STATE(909)] = 34602, - [SMALL_STATE(910)] = 34654, - [SMALL_STATE(911)] = 34706, - [SMALL_STATE(912)] = 34764, - [SMALL_STATE(913)] = 34822, - [SMALL_STATE(914)] = 34880, - [SMALL_STATE(915)] = 34938, - [SMALL_STATE(916)] = 34996, - [SMALL_STATE(917)] = 35054, - [SMALL_STATE(918)] = 35106, - [SMALL_STATE(919)] = 35158, - [SMALL_STATE(920)] = 35216, - [SMALL_STATE(921)] = 35268, - [SMALL_STATE(922)] = 35320, - [SMALL_STATE(923)] = 35372, - [SMALL_STATE(924)] = 35424, - [SMALL_STATE(925)] = 35480, - [SMALL_STATE(926)] = 35538, - [SMALL_STATE(927)] = 35590, - [SMALL_STATE(928)] = 35642, - [SMALL_STATE(929)] = 35694, - [SMALL_STATE(930)] = 35746, - [SMALL_STATE(931)] = 35804, - [SMALL_STATE(932)] = 35856, - [SMALL_STATE(933)] = 35914, - [SMALL_STATE(934)] = 35972, - [SMALL_STATE(935)] = 36030, - [SMALL_STATE(936)] = 36088, - [SMALL_STATE(937)] = 36146, - [SMALL_STATE(938)] = 36204, - [SMALL_STATE(939)] = 36256, - [SMALL_STATE(940)] = 36314, - [SMALL_STATE(941)] = 36370, - [SMALL_STATE(942)] = 36468, - [SMALL_STATE(943)] = 36526, - [SMALL_STATE(944)] = 36584, - [SMALL_STATE(945)] = 36642, - [SMALL_STATE(946)] = 36700, - [SMALL_STATE(947)] = 36752, - [SMALL_STATE(948)] = 36804, - [SMALL_STATE(949)] = 36862, - [SMALL_STATE(950)] = 36960, - [SMALL_STATE(951)] = 37012, - [SMALL_STATE(952)] = 37064, - [SMALL_STATE(953)] = 37116, - [SMALL_STATE(954)] = 37168, - [SMALL_STATE(955)] = 37220, - [SMALL_STATE(956)] = 37272, - [SMALL_STATE(957)] = 37324, - [SMALL_STATE(958)] = 37422, - [SMALL_STATE(959)] = 37480, - [SMALL_STATE(960)] = 37538, - [SMALL_STATE(961)] = 37590, - [SMALL_STATE(962)] = 37642, - [SMALL_STATE(963)] = 37694, - [SMALL_STATE(964)] = 37752, - [SMALL_STATE(965)] = 37810, - [SMALL_STATE(966)] = 37866, - [SMALL_STATE(967)] = 37918, - [SMALL_STATE(968)] = 37970, - [SMALL_STATE(969)] = 38022, - [SMALL_STATE(970)] = 38074, - [SMALL_STATE(971)] = 38126, - [SMALL_STATE(972)] = 38178, - [SMALL_STATE(973)] = 38230, - [SMALL_STATE(974)] = 38282, - [SMALL_STATE(975)] = 38334, - [SMALL_STATE(976)] = 38386, - [SMALL_STATE(977)] = 38438, - [SMALL_STATE(978)] = 38490, - [SMALL_STATE(979)] = 38542, - [SMALL_STATE(980)] = 38594, - [SMALL_STATE(981)] = 38646, - [SMALL_STATE(982)] = 38698, - [SMALL_STATE(983)] = 38750, - [SMALL_STATE(984)] = 38802, - [SMALL_STATE(985)] = 38854, - [SMALL_STATE(986)] = 38906, - [SMALL_STATE(987)] = 38958, - [SMALL_STATE(988)] = 39010, - [SMALL_STATE(989)] = 39062, - [SMALL_STATE(990)] = 39114, - [SMALL_STATE(991)] = 39166, - [SMALL_STATE(992)] = 39218, - [SMALL_STATE(993)] = 39276, - [SMALL_STATE(994)] = 39334, - [SMALL_STATE(995)] = 39386, - [SMALL_STATE(996)] = 39438, - [SMALL_STATE(997)] = 39494, - [SMALL_STATE(998)] = 39546, - [SMALL_STATE(999)] = 39598, - [SMALL_STATE(1000)] = 39656, - [SMALL_STATE(1001)] = 39714, - [SMALL_STATE(1002)] = 39766, - [SMALL_STATE(1003)] = 39864, - [SMALL_STATE(1004)] = 39916, - [SMALL_STATE(1005)] = 39974, - [SMALL_STATE(1006)] = 40026, - [SMALL_STATE(1007)] = 40078, - [SMALL_STATE(1008)] = 40130, - [SMALL_STATE(1009)] = 40182, - [SMALL_STATE(1010)] = 40234, - [SMALL_STATE(1011)] = 40286, - [SMALL_STATE(1012)] = 40338, - [SMALL_STATE(1013)] = 40390, - [SMALL_STATE(1014)] = 40448, - [SMALL_STATE(1015)] = 40500, - [SMALL_STATE(1016)] = 40552, - [SMALL_STATE(1017)] = 40604, - [SMALL_STATE(1018)] = 40656, - [SMALL_STATE(1019)] = 40708, - [SMALL_STATE(1020)] = 40760, - [SMALL_STATE(1021)] = 40812, - [SMALL_STATE(1022)] = 40864, - [SMALL_STATE(1023)] = 40916, - [SMALL_STATE(1024)] = 40968, - [SMALL_STATE(1025)] = 41020, - [SMALL_STATE(1026)] = 41078, - [SMALL_STATE(1027)] = 41168, - [SMALL_STATE(1028)] = 41220, - [SMALL_STATE(1029)] = 41272, - [SMALL_STATE(1030)] = 41324, - [SMALL_STATE(1031)] = 41376, - [SMALL_STATE(1032)] = 41428, - [SMALL_STATE(1033)] = 41480, - [SMALL_STATE(1034)] = 41532, - [SMALL_STATE(1035)] = 41584, - [SMALL_STATE(1036)] = 41635, - [SMALL_STATE(1037)] = 41686, - [SMALL_STATE(1038)] = 41743, - [SMALL_STATE(1039)] = 41794, - [SMALL_STATE(1040)] = 41845, - [SMALL_STATE(1041)] = 41896, - [SMALL_STATE(1042)] = 41947, - [SMALL_STATE(1043)] = 41998, - [SMALL_STATE(1044)] = 42049, - [SMALL_STATE(1045)] = 42112, - [SMALL_STATE(1046)] = 42163, - [SMALL_STATE(1047)] = 42214, - [SMALL_STATE(1048)] = 42265, - [SMALL_STATE(1049)] = 42316, - [SMALL_STATE(1050)] = 42371, - [SMALL_STATE(1051)] = 42422, - [SMALL_STATE(1052)] = 42473, - [SMALL_STATE(1053)] = 42524, - [SMALL_STATE(1054)] = 42575, - [SMALL_STATE(1055)] = 42626, - [SMALL_STATE(1056)] = 42677, - [SMALL_STATE(1057)] = 42728, - [SMALL_STATE(1058)] = 42779, - [SMALL_STATE(1059)] = 42830, - [SMALL_STATE(1060)] = 42885, - [SMALL_STATE(1061)] = 42936, - [SMALL_STATE(1062)] = 42991, - [SMALL_STATE(1063)] = 43042, - [SMALL_STATE(1064)] = 43093, - [SMALL_STATE(1065)] = 43150, - [SMALL_STATE(1066)] = 43201, - [SMALL_STATE(1067)] = 43252, - [SMALL_STATE(1068)] = 43309, - [SMALL_STATE(1069)] = 43364, - [SMALL_STATE(1070)] = 43415, - [SMALL_STATE(1071)] = 43466, - [SMALL_STATE(1072)] = 43517, - [SMALL_STATE(1073)] = 43574, - [SMALL_STATE(1074)] = 43631, - [SMALL_STATE(1075)] = 43688, - [SMALL_STATE(1076)] = 43739, - [SMALL_STATE(1077)] = 43790, - [SMALL_STATE(1078)] = 43841, - [SMALL_STATE(1079)] = 43898, - [SMALL_STATE(1080)] = 43953, - [SMALL_STATE(1081)] = 44010, - [SMALL_STATE(1082)] = 44067, - [SMALL_STATE(1083)] = 44118, - [SMALL_STATE(1084)] = 44169, - [SMALL_STATE(1085)] = 44220, - [SMALL_STATE(1086)] = 44271, - [SMALL_STATE(1087)] = 44322, - [SMALL_STATE(1088)] = 44373, - [SMALL_STATE(1089)] = 44424, - [SMALL_STATE(1090)] = 44475, - [SMALL_STATE(1091)] = 44544, - [SMALL_STATE(1092)] = 44601, - [SMALL_STATE(1093)] = 44652, - [SMALL_STATE(1094)] = 44703, - [SMALL_STATE(1095)] = 44754, - [SMALL_STATE(1096)] = 44805, - [SMALL_STATE(1097)] = 44860, - [SMALL_STATE(1098)] = 44911, - [SMALL_STATE(1099)] = 44962, - [SMALL_STATE(1100)] = 45013, - [SMALL_STATE(1101)] = 45064, - [SMALL_STATE(1102)] = 45121, - [SMALL_STATE(1103)] = 45178, - [SMALL_STATE(1104)] = 45233, - [SMALL_STATE(1105)] = 45288, - [SMALL_STATE(1106)] = 45339, - [SMALL_STATE(1107)] = 45390, - [SMALL_STATE(1108)] = 45441, - [SMALL_STATE(1109)] = 45492, - [SMALL_STATE(1110)] = 45543, - [SMALL_STATE(1111)] = 45600, - [SMALL_STATE(1112)] = 45651, - [SMALL_STATE(1113)] = 45702, - [SMALL_STATE(1114)] = 45753, - [SMALL_STATE(1115)] = 45804, - [SMALL_STATE(1116)] = 45855, - [SMALL_STATE(1117)] = 45906, - [SMALL_STATE(1118)] = 45957, - [SMALL_STATE(1119)] = 46008, - [SMALL_STATE(1120)] = 46059, - [SMALL_STATE(1121)] = 46110, - [SMALL_STATE(1122)] = 46161, - [SMALL_STATE(1123)] = 46218, - [SMALL_STATE(1124)] = 46269, - [SMALL_STATE(1125)] = 46326, - [SMALL_STATE(1126)] = 46383, - [SMALL_STATE(1127)] = 46440, - [SMALL_STATE(1128)] = 46497, - [SMALL_STATE(1129)] = 46554, - [SMALL_STATE(1130)] = 46611, - [SMALL_STATE(1131)] = 46666, - [SMALL_STATE(1132)] = 46723, - [SMALL_STATE(1133)] = 46774, - [SMALL_STATE(1134)] = 46825, - [SMALL_STATE(1135)] = 46876, - [SMALL_STATE(1136)] = 46933, - [SMALL_STATE(1137)] = 46990, - [SMALL_STATE(1138)] = 47041, - [SMALL_STATE(1139)] = 47092, - [SMALL_STATE(1140)] = 47147, - [SMALL_STATE(1141)] = 47202, - [SMALL_STATE(1142)] = 47253, - [SMALL_STATE(1143)] = 47304, - [SMALL_STATE(1144)] = 47355, - [SMALL_STATE(1145)] = 47406, - [SMALL_STATE(1146)] = 47463, - [SMALL_STATE(1147)] = 47514, - [SMALL_STATE(1148)] = 47571, - [SMALL_STATE(1149)] = 47622, - [SMALL_STATE(1150)] = 47677, - [SMALL_STATE(1151)] = 47728, - [SMALL_STATE(1152)] = 47779, - [SMALL_STATE(1153)] = 47830, - [SMALL_STATE(1154)] = 47881, - [SMALL_STATE(1155)] = 47936, - [SMALL_STATE(1156)] = 47987, - [SMALL_STATE(1157)] = 48044, - [SMALL_STATE(1158)] = 48095, - [SMALL_STATE(1159)] = 48146, - [SMALL_STATE(1160)] = 48203, - [SMALL_STATE(1161)] = 48254, - [SMALL_STATE(1162)] = 48305, - [SMALL_STATE(1163)] = 48356, - [SMALL_STATE(1164)] = 48407, - [SMALL_STATE(1165)] = 48458, - [SMALL_STATE(1166)] = 48515, - [SMALL_STATE(1167)] = 48572, - [SMALL_STATE(1168)] = 48623, - [SMALL_STATE(1169)] = 48674, - [SMALL_STATE(1170)] = 48731, - [SMALL_STATE(1171)] = 48782, - [SMALL_STATE(1172)] = 48833, - [SMALL_STATE(1173)] = 48884, - [SMALL_STATE(1174)] = 48935, - [SMALL_STATE(1175)] = 48992, - [SMALL_STATE(1176)] = 49049, - [SMALL_STATE(1177)] = 49106, - [SMALL_STATE(1178)] = 49157, - [SMALL_STATE(1179)] = 49214, - [SMALL_STATE(1180)] = 49271, - [SMALL_STATE(1181)] = 49322, - [SMALL_STATE(1182)] = 49379, - [SMALL_STATE(1183)] = 49430, - [SMALL_STATE(1184)] = 49481, - [SMALL_STATE(1185)] = 49544, - [SMALL_STATE(1186)] = 49601, - [SMALL_STATE(1187)] = 49656, - [SMALL_STATE(1188)] = 49707, - [SMALL_STATE(1189)] = 49764, - [SMALL_STATE(1190)] = 49821, - [SMALL_STATE(1191)] = 49872, - [SMALL_STATE(1192)] = 49923, - [SMALL_STATE(1193)] = 49978, - [SMALL_STATE(1194)] = 50033, - [SMALL_STATE(1195)] = 50084, - [SMALL_STATE(1196)] = 50141, - [SMALL_STATE(1197)] = 50192, - [SMALL_STATE(1198)] = 50243, - [SMALL_STATE(1199)] = 50294, - [SMALL_STATE(1200)] = 50345, - [SMALL_STATE(1201)] = 50396, - [SMALL_STATE(1202)] = 50447, - [SMALL_STATE(1203)] = 50504, - [SMALL_STATE(1204)] = 50554, - [SMALL_STATE(1205)] = 50608, - [SMALL_STATE(1206)] = 50658, - [SMALL_STATE(1207)] = 50708, - [SMALL_STATE(1208)] = 50758, - [SMALL_STATE(1209)] = 50808, - [SMALL_STATE(1210)] = 50858, - [SMALL_STATE(1211)] = 50914, - [SMALL_STATE(1212)] = 50970, - [SMALL_STATE(1213)] = 51026, - [SMALL_STATE(1214)] = 51082, - [SMALL_STATE(1215)] = 51132, - [SMALL_STATE(1216)] = 51182, - [SMALL_STATE(1217)] = 51236, - [SMALL_STATE(1218)] = 51292, - [SMALL_STATE(1219)] = 51348, - [SMALL_STATE(1220)] = 51404, - [SMALL_STATE(1221)] = 51454, - [SMALL_STATE(1222)] = 51504, - [SMALL_STATE(1223)] = 51554, - [SMALL_STATE(1224)] = 51604, - [SMALL_STATE(1225)] = 51654, - [SMALL_STATE(1226)] = 51704, - [SMALL_STATE(1227)] = 51758, - [SMALL_STATE(1228)] = 51808, - [SMALL_STATE(1229)] = 51858, - [SMALL_STATE(1230)] = 51908, - [SMALL_STATE(1231)] = 51958, - [SMALL_STATE(1232)] = 52014, - [SMALL_STATE(1233)] = 52064, - [SMALL_STATE(1234)] = 52114, - [SMALL_STATE(1235)] = 52164, - [SMALL_STATE(1236)] = 52214, - [SMALL_STATE(1237)] = 52270, - [SMALL_STATE(1238)] = 52320, - [SMALL_STATE(1239)] = 52370, - [SMALL_STATE(1240)] = 52426, - [SMALL_STATE(1241)] = 52480, - [SMALL_STATE(1242)] = 52530, - [SMALL_STATE(1243)] = 52586, - [SMALL_STATE(1244)] = 52636, - [SMALL_STATE(1245)] = 52686, - [SMALL_STATE(1246)] = 52736, - [SMALL_STATE(1247)] = 52786, - [SMALL_STATE(1248)] = 52836, - [SMALL_STATE(1249)] = 52890, - [SMALL_STATE(1250)] = 52940, - [SMALL_STATE(1251)] = 52990, - [SMALL_STATE(1252)] = 53040, - [SMALL_STATE(1253)] = 53090, - [SMALL_STATE(1254)] = 53140, - [SMALL_STATE(1255)] = 53194, - [SMALL_STATE(1256)] = 53244, - [SMALL_STATE(1257)] = 53300, - [SMALL_STATE(1258)] = 53350, - [SMALL_STATE(1259)] = 53400, - [SMALL_STATE(1260)] = 53450, - [SMALL_STATE(1261)] = 53500, - [SMALL_STATE(1262)] = 53550, - [SMALL_STATE(1263)] = 53600, - [SMALL_STATE(1264)] = 53650, - [SMALL_STATE(1265)] = 53700, - [SMALL_STATE(1266)] = 53750, - [SMALL_STATE(1267)] = 53800, - [SMALL_STATE(1268)] = 53850, - [SMALL_STATE(1269)] = 53904, - [SMALL_STATE(1270)] = 53954, - [SMALL_STATE(1271)] = 54010, - [SMALL_STATE(1272)] = 54060, - [SMALL_STATE(1273)] = 54110, - [SMALL_STATE(1274)] = 54160, - [SMALL_STATE(1275)] = 54210, - [SMALL_STATE(1276)] = 54260, - [SMALL_STATE(1277)] = 54310, - [SMALL_STATE(1278)] = 54360, - [SMALL_STATE(1279)] = 54410, - [SMALL_STATE(1280)] = 54460, - [SMALL_STATE(1281)] = 54510, - [SMALL_STATE(1282)] = 54566, - [SMALL_STATE(1283)] = 54616, - [SMALL_STATE(1284)] = 54674, - [SMALL_STATE(1285)] = 54724, - [SMALL_STATE(1286)] = 54774, - [SMALL_STATE(1287)] = 54824, - [SMALL_STATE(1288)] = 54880, - [SMALL_STATE(1289)] = 54930, - [SMALL_STATE(1290)] = 54984, - [SMALL_STATE(1291)] = 55034, - [SMALL_STATE(1292)] = 55090, - [SMALL_STATE(1293)] = 55140, - [SMALL_STATE(1294)] = 55190, - [SMALL_STATE(1295)] = 55240, - [SMALL_STATE(1296)] = 55294, - [SMALL_STATE(1297)] = 55344, - [SMALL_STATE(1298)] = 55394, - [SMALL_STATE(1299)] = 55444, - [SMALL_STATE(1300)] = 55494, - [SMALL_STATE(1301)] = 55544, - [SMALL_STATE(1302)] = 55594, - [SMALL_STATE(1303)] = 55644, - [SMALL_STATE(1304)] = 55700, - [SMALL_STATE(1305)] = 55750, - [SMALL_STATE(1306)] = 55800, - [SMALL_STATE(1307)] = 55850, - [SMALL_STATE(1308)] = 55900, - [SMALL_STATE(1309)] = 55950, - [SMALL_STATE(1310)] = 56000, - [SMALL_STATE(1311)] = 56056, - [SMALL_STATE(1312)] = 56112, - [SMALL_STATE(1313)] = 56162, - [SMALL_STATE(1314)] = 56212, - [SMALL_STATE(1315)] = 56262, - [SMALL_STATE(1316)] = 56312, - [SMALL_STATE(1317)] = 56362, - [SMALL_STATE(1318)] = 56412, - [SMALL_STATE(1319)] = 56462, - [SMALL_STATE(1320)] = 56512, - [SMALL_STATE(1321)] = 56562, - [SMALL_STATE(1322)] = 56612, - [SMALL_STATE(1323)] = 56678, - [SMALL_STATE(1324)] = 56728, - [SMALL_STATE(1325)] = 56790, - [SMALL_STATE(1326)] = 56840, - [SMALL_STATE(1327)] = 56890, - [SMALL_STATE(1328)] = 56940, - [SMALL_STATE(1329)] = 57010, - [SMALL_STATE(1330)] = 57060, - [SMALL_STATE(1331)] = 57110, - [SMALL_STATE(1332)] = 57160, - [SMALL_STATE(1333)] = 57210, - [SMALL_STATE(1334)] = 57260, - [SMALL_STATE(1335)] = 57316, - [SMALL_STATE(1336)] = 57366, - [SMALL_STATE(1337)] = 57420, - [SMALL_STATE(1338)] = 57476, - [SMALL_STATE(1339)] = 57526, - [SMALL_STATE(1340)] = 57582, - [SMALL_STATE(1341)] = 57632, - [SMALL_STATE(1342)] = 57682, - [SMALL_STATE(1343)] = 57732, - [SMALL_STATE(1344)] = 57782, - [SMALL_STATE(1345)] = 57832, - [SMALL_STATE(1346)] = 57886, - [SMALL_STATE(1347)] = 57936, - [SMALL_STATE(1348)] = 57986, - [SMALL_STATE(1349)] = 58040, - [SMALL_STATE(1350)] = 58090, - [SMALL_STATE(1351)] = 58144, - [SMALL_STATE(1352)] = 58194, - [SMALL_STATE(1353)] = 58244, - [SMALL_STATE(1354)] = 58300, - [SMALL_STATE(1355)] = 58356, - [SMALL_STATE(1356)] = 58406, - [SMALL_STATE(1357)] = 58462, - [SMALL_STATE(1358)] = 58512, - [SMALL_STATE(1359)] = 58562, - [SMALL_STATE(1360)] = 58612, - [SMALL_STATE(1361)] = 58662, - [SMALL_STATE(1362)] = 58716, - [SMALL_STATE(1363)] = 58766, - [SMALL_STATE(1364)] = 58815, - [SMALL_STATE(1365)] = 58864, - [SMALL_STATE(1366)] = 58919, - [SMALL_STATE(1367)] = 58974, - [SMALL_STATE(1368)] = 59023, - [SMALL_STATE(1369)] = 59072, - [SMALL_STATE(1370)] = 59127, - [SMALL_STATE(1371)] = 59180, - [SMALL_STATE(1372)] = 59229, - [SMALL_STATE(1373)] = 59282, - [SMALL_STATE(1374)] = 59335, - [SMALL_STATE(1375)] = 59384, - [SMALL_STATE(1376)] = 59439, - [SMALL_STATE(1377)] = 59488, - [SMALL_STATE(1378)] = 59543, - [SMALL_STATE(1379)] = 59598, - [SMALL_STATE(1380)] = 59653, - [SMALL_STATE(1381)] = 59706, - [SMALL_STATE(1382)] = 59761, - [SMALL_STATE(1383)] = 59816, - [SMALL_STATE(1384)] = 59871, - [SMALL_STATE(1385)] = 59926, - [SMALL_STATE(1386)] = 59975, - [SMALL_STATE(1387)] = 60028, - [SMALL_STATE(1388)] = 60083, - [SMALL_STATE(1389)] = 60132, - [SMALL_STATE(1390)] = 60181, - [SMALL_STATE(1391)] = 60234, - [SMALL_STATE(1392)] = 60283, - [SMALL_STATE(1393)] = 60338, - [SMALL_STATE(1394)] = 60393, - [SMALL_STATE(1395)] = 60442, - [SMALL_STATE(1396)] = 60491, - [SMALL_STATE(1397)] = 60540, - [SMALL_STATE(1398)] = 60595, - [SMALL_STATE(1399)] = 60644, - [SMALL_STATE(1400)] = 60693, - [SMALL_STATE(1401)] = 60742, - [SMALL_STATE(1402)] = 60791, - [SMALL_STATE(1403)] = 60840, - [SMALL_STATE(1404)] = 60889, - [SMALL_STATE(1405)] = 60942, - [SMALL_STATE(1406)] = 60991, - [SMALL_STATE(1407)] = 61040, - [SMALL_STATE(1408)] = 61095, - [SMALL_STATE(1409)] = 61148, - [SMALL_STATE(1410)] = 61197, - [SMALL_STATE(1411)] = 61246, - [SMALL_STATE(1412)] = 61295, - [SMALL_STATE(1413)] = 61344, - [SMALL_STATE(1414)] = 61401, - [SMALL_STATE(1415)] = 61458, - [SMALL_STATE(1416)] = 61511, - [SMALL_STATE(1417)] = 61564, - [SMALL_STATE(1418)] = 61613, - [SMALL_STATE(1419)] = 61662, - [SMALL_STATE(1420)] = 61715, - [SMALL_STATE(1421)] = 61764, - [SMALL_STATE(1422)] = 61817, - [SMALL_STATE(1423)] = 61866, - [SMALL_STATE(1424)] = 61915, - [SMALL_STATE(1425)] = 61964, - [SMALL_STATE(1426)] = 62013, - [SMALL_STATE(1427)] = 62062, - [SMALL_STATE(1428)] = 62111, - [SMALL_STATE(1429)] = 62160, - [SMALL_STATE(1430)] = 62209, - [SMALL_STATE(1431)] = 62258, - [SMALL_STATE(1432)] = 62307, - [SMALL_STATE(1433)] = 62356, - [SMALL_STATE(1434)] = 62405, - [SMALL_STATE(1435)] = 62454, - [SMALL_STATE(1436)] = 62503, - [SMALL_STATE(1437)] = 62552, - [SMALL_STATE(1438)] = 62601, - [SMALL_STATE(1439)] = 62654, - [SMALL_STATE(1440)] = 62703, - [SMALL_STATE(1441)] = 62752, - [SMALL_STATE(1442)] = 62801, - [SMALL_STATE(1443)] = 62850, - [SMALL_STATE(1444)] = 62903, - [SMALL_STATE(1445)] = 62952, - [SMALL_STATE(1446)] = 63001, - [SMALL_STATE(1447)] = 63054, - [SMALL_STATE(1448)] = 63103, - [SMALL_STATE(1449)] = 63152, - [SMALL_STATE(1450)] = 63201, - [SMALL_STATE(1451)] = 63257, - [SMALL_STATE(1452)] = 63305, - [SMALL_STATE(1453)] = 63361, - [SMALL_STATE(1454)] = 63417, - [SMALL_STATE(1455)] = 63465, - [SMALL_STATE(1456)] = 63521, - [SMALL_STATE(1457)] = 63577, - [SMALL_STATE(1458)] = 63625, - [SMALL_STATE(1459)] = 63677, - [SMALL_STATE(1460)] = 63729, - [SMALL_STATE(1461)] = 63781, - [SMALL_STATE(1462)] = 63833, - [SMALL_STATE(1463)] = 63889, - [SMALL_STATE(1464)] = 63973, - [SMALL_STATE(1465)] = 64029, - [SMALL_STATE(1466)] = 64081, - [SMALL_STATE(1467)] = 64137, - [SMALL_STATE(1468)] = 64191, - [SMALL_STATE(1469)] = 64239, - [SMALL_STATE(1470)] = 64295, - [SMALL_STATE(1471)] = 64347, - [SMALL_STATE(1472)] = 64399, - [SMALL_STATE(1473)] = 64451, - [SMALL_STATE(1474)] = 64499, - [SMALL_STATE(1475)] = 64555, - [SMALL_STATE(1476)] = 64607, - [SMALL_STATE(1477)] = 64663, - [SMALL_STATE(1478)] = 64719, - [SMALL_STATE(1479)] = 64775, - [SMALL_STATE(1480)] = 64831, - [SMALL_STATE(1481)] = 64879, - [SMALL_STATE(1482)] = 64935, - [SMALL_STATE(1483)] = 64983, - [SMALL_STATE(1484)] = 65039, - [SMALL_STATE(1485)] = 65091, - [SMALL_STATE(1486)] = 65139, - [SMALL_STATE(1487)] = 65187, - [SMALL_STATE(1488)] = 65235, - [SMALL_STATE(1489)] = 65283, - [SMALL_STATE(1490)] = 65339, - [SMALL_STATE(1491)] = 65395, - [SMALL_STATE(1492)] = 65443, - [SMALL_STATE(1493)] = 65499, - [SMALL_STATE(1494)] = 65555, - [SMALL_STATE(1495)] = 65611, - [SMALL_STATE(1496)] = 65659, - [SMALL_STATE(1497)] = 65711, - [SMALL_STATE(1498)] = 65763, - [SMALL_STATE(1499)] = 65819, - [SMALL_STATE(1500)] = 65875, - [SMALL_STATE(1501)] = 65931, - [SMALL_STATE(1502)] = 65987, - [SMALL_STATE(1503)] = 66035, - [SMALL_STATE(1504)] = 66091, - [SMALL_STATE(1505)] = 66139, - [SMALL_STATE(1506)] = 66187, - [SMALL_STATE(1507)] = 66235, - [SMALL_STATE(1508)] = 66289, - [SMALL_STATE(1509)] = 66345, - [SMALL_STATE(1510)] = 66401, - [SMALL_STATE(1511)] = 66457, - [SMALL_STATE(1512)] = 66505, - [SMALL_STATE(1513)] = 66561, - [SMALL_STATE(1514)] = 66613, - [SMALL_STATE(1515)] = 66669, - [SMALL_STATE(1516)] = 66723, - [SMALL_STATE(1517)] = 66779, - [SMALL_STATE(1518)] = 66833, - [SMALL_STATE(1519)] = 66885, - [SMALL_STATE(1520)] = 66937, - [SMALL_STATE(1521)] = 66991, - [SMALL_STATE(1522)] = 67043, - [SMALL_STATE(1523)] = 67091, - [SMALL_STATE(1524)] = 67147, - [SMALL_STATE(1525)] = 67201, - [SMALL_STATE(1526)] = 67255, - [SMALL_STATE(1527)] = 67311, - [SMALL_STATE(1528)] = 67363, - [SMALL_STATE(1529)] = 67411, - [SMALL_STATE(1530)] = 67467, - [SMALL_STATE(1531)] = 67521, - [SMALL_STATE(1532)] = 67577, - [SMALL_STATE(1533)] = 67629, - [SMALL_STATE(1534)] = 67683, - [SMALL_STATE(1535)] = 67739, - [SMALL_STATE(1536)] = 67795, - [SMALL_STATE(1537)] = 67851, - [SMALL_STATE(1538)] = 67899, - [SMALL_STATE(1539)] = 67955, - [SMALL_STATE(1540)] = 68007, - [SMALL_STATE(1541)] = 68063, - [SMALL_STATE(1542)] = 68119, - [SMALL_STATE(1543)] = 68167, - [SMALL_STATE(1544)] = 68223, - [SMALL_STATE(1545)] = 68275, - [SMALL_STATE(1546)] = 68323, - [SMALL_STATE(1547)] = 68377, - [SMALL_STATE(1548)] = 68431, - [SMALL_STATE(1549)] = 68479, - [SMALL_STATE(1550)] = 68535, - [SMALL_STATE(1551)] = 68591, - [SMALL_STATE(1552)] = 68639, - [SMALL_STATE(1553)] = 68695, - [SMALL_STATE(1554)] = 68751, - [SMALL_STATE(1555)] = 68807, - [SMALL_STATE(1556)] = 68859, - [SMALL_STATE(1557)] = 68915, - [SMALL_STATE(1558)] = 68967, - [SMALL_STATE(1559)] = 69015, - [SMALL_STATE(1560)] = 69071, - [SMALL_STATE(1561)] = 69119, - [SMALL_STATE(1562)] = 69167, - [SMALL_STATE(1563)] = 69223, - [SMALL_STATE(1564)] = 69279, - [SMALL_STATE(1565)] = 69327, - [SMALL_STATE(1566)] = 69381, - [SMALL_STATE(1567)] = 69429, - [SMALL_STATE(1568)] = 69485, - [SMALL_STATE(1569)] = 69541, - [SMALL_STATE(1570)] = 69589, - [SMALL_STATE(1571)] = 69643, - [SMALL_STATE(1572)] = 69699, - [SMALL_STATE(1573)] = 69753, - [SMALL_STATE(1574)] = 69806, - [SMALL_STATE(1575)] = 69895, - [SMALL_STATE(1576)] = 69946, - [SMALL_STATE(1577)] = 69999, - [SMALL_STATE(1578)] = 70052, - [SMALL_STATE(1579)] = 70105, - [SMALL_STATE(1580)] = 70158, - [SMALL_STATE(1581)] = 70211, - [SMALL_STATE(1582)] = 70262, - [SMALL_STATE(1583)] = 70313, - [SMALL_STATE(1584)] = 70364, - [SMALL_STATE(1585)] = 70415, - [SMALL_STATE(1586)] = 70470, - [SMALL_STATE(1587)] = 70521, - [SMALL_STATE(1588)] = 70576, - [SMALL_STATE(1589)] = 70627, - [SMALL_STATE(1590)] = 70678, - [SMALL_STATE(1591)] = 70727, - [SMALL_STATE(1592)] = 70774, - [SMALL_STATE(1593)] = 70863, - [SMALL_STATE(1594)] = 70914, - [SMALL_STATE(1595)] = 70967, - [SMALL_STATE(1596)] = 71020, - [SMALL_STATE(1597)] = 71073, - [SMALL_STATE(1598)] = 71126, - [SMALL_STATE(1599)] = 71177, - [SMALL_STATE(1600)] = 71228, - [SMALL_STATE(1601)] = 71279, - [SMALL_STATE(1602)] = 71328, - [SMALL_STATE(1603)] = 71379, - [SMALL_STATE(1604)] = 71434, - [SMALL_STATE(1605)] = 71489, - [SMALL_STATE(1606)] = 71536, - [SMALL_STATE(1607)] = 71589, - [SMALL_STATE(1608)] = 71642, - [SMALL_STATE(1609)] = 71731, - [SMALL_STATE(1610)] = 71820, - [SMALL_STATE(1611)] = 71867, - [SMALL_STATE(1612)] = 71914, - [SMALL_STATE(1613)] = 71967, - [SMALL_STATE(1614)] = 72056, - [SMALL_STATE(1615)] = 72103, - [SMALL_STATE(1616)] = 72192, - [SMALL_STATE(1617)] = 72239, - [SMALL_STATE(1618)] = 72288, - [SMALL_STATE(1619)] = 72341, - [SMALL_STATE(1620)] = 72394, - [SMALL_STATE(1621)] = 72445, - [SMALL_STATE(1622)] = 72534, - [SMALL_STATE(1623)] = 72585, - [SMALL_STATE(1624)] = 72632, - [SMALL_STATE(1625)] = 72679, - [SMALL_STATE(1626)] = 72726, - [SMALL_STATE(1627)] = 72779, - [SMALL_STATE(1628)] = 72868, - [SMALL_STATE(1629)] = 72915, - [SMALL_STATE(1630)] = 72962, - [SMALL_STATE(1631)] = 73015, - [SMALL_STATE(1632)] = 73062, - [SMALL_STATE(1633)] = 73109, - [SMALL_STATE(1634)] = 73156, - [SMALL_STATE(1635)] = 73203, - [SMALL_STATE(1636)] = 73254, - [SMALL_STATE(1637)] = 73305, - [SMALL_STATE(1638)] = 73356, - [SMALL_STATE(1639)] = 73403, - [SMALL_STATE(1640)] = 73450, - [SMALL_STATE(1641)] = 73497, - [SMALL_STATE(1642)] = 73548, - [SMALL_STATE(1643)] = 73637, - [SMALL_STATE(1644)] = 73726, - [SMALL_STATE(1645)] = 73773, - [SMALL_STATE(1646)] = 73820, - [SMALL_STATE(1647)] = 73867, - [SMALL_STATE(1648)] = 73914, - [SMALL_STATE(1649)] = 73967, - [SMALL_STATE(1650)] = 74014, - [SMALL_STATE(1651)] = 74103, - [SMALL_STATE(1652)] = 74156, - [SMALL_STATE(1653)] = 74245, - [SMALL_STATE(1654)] = 74292, - [SMALL_STATE(1655)] = 74339, - [SMALL_STATE(1656)] = 74394, - [SMALL_STATE(1657)] = 74447, - [SMALL_STATE(1658)] = 74502, - [SMALL_STATE(1659)] = 74549, - [SMALL_STATE(1660)] = 74596, - [SMALL_STATE(1661)] = 74649, - [SMALL_STATE(1662)] = 74698, - [SMALL_STATE(1663)] = 74751, - [SMALL_STATE(1664)] = 74800, - [SMALL_STATE(1665)] = 74851, - [SMALL_STATE(1666)] = 74902, - [SMALL_STATE(1667)] = 74949, - [SMALL_STATE(1668)] = 74996, - [SMALL_STATE(1669)] = 75049, - [SMALL_STATE(1670)] = 75096, - [SMALL_STATE(1671)] = 75143, - [SMALL_STATE(1672)] = 75190, - [SMALL_STATE(1673)] = 75237, - [SMALL_STATE(1674)] = 75326, - [SMALL_STATE(1675)] = 75373, - [SMALL_STATE(1676)] = 75420, - [SMALL_STATE(1677)] = 75467, - [SMALL_STATE(1678)] = 75514, - [SMALL_STATE(1679)] = 75561, - [SMALL_STATE(1680)] = 75608, - [SMALL_STATE(1681)] = 75655, - [SMALL_STATE(1682)] = 75702, - [SMALL_STATE(1683)] = 75749, - [SMALL_STATE(1684)] = 75800, - [SMALL_STATE(1685)] = 75889, - [SMALL_STATE(1686)] = 75936, - [SMALL_STATE(1687)] = 76025, - [SMALL_STATE(1688)] = 76078, - [SMALL_STATE(1689)] = 76125, - [SMALL_STATE(1690)] = 76172, - [SMALL_STATE(1691)] = 76219, - [SMALL_STATE(1692)] = 76266, - [SMALL_STATE(1693)] = 76319, - [SMALL_STATE(1694)] = 76370, - [SMALL_STATE(1695)] = 76423, - [SMALL_STATE(1696)] = 76476, - [SMALL_STATE(1697)] = 76529, - [SMALL_STATE(1698)] = 76580, - [SMALL_STATE(1699)] = 76635, - [SMALL_STATE(1700)] = 76690, - [SMALL_STATE(1701)] = 76779, - [SMALL_STATE(1702)] = 76868, - [SMALL_STATE(1703)] = 76957, - [SMALL_STATE(1704)] = 77008, - [SMALL_STATE(1705)] = 77097, - [SMALL_STATE(1706)] = 77186, - [SMALL_STATE(1707)] = 77239, - [SMALL_STATE(1708)] = 77294, - [SMALL_STATE(1709)] = 77349, - [SMALL_STATE(1710)] = 77435, - [SMALL_STATE(1711)] = 77487, - [SMALL_STATE(1712)] = 77537, - [SMALL_STATE(1713)] = 77583, - [SMALL_STATE(1714)] = 77629, - [SMALL_STATE(1715)] = 77715, - [SMALL_STATE(1716)] = 77771, - [SMALL_STATE(1717)] = 77827, - [SMALL_STATE(1718)] = 77913, - [SMALL_STATE(1719)] = 77969, - [SMALL_STATE(1720)] = 78025, - [SMALL_STATE(1721)] = 78071, - [SMALL_STATE(1722)] = 78117, - [SMALL_STATE(1723)] = 78163, - [SMALL_STATE(1724)] = 78219, - [SMALL_STATE(1725)] = 78265, - [SMALL_STATE(1726)] = 78351, - [SMALL_STATE(1727)] = 78407, - [SMALL_STATE(1728)] = 78453, - [SMALL_STATE(1729)] = 78499, - [SMALL_STATE(1730)] = 78549, - [SMALL_STATE(1731)] = 78605, - [SMALL_STATE(1732)] = 78655, - [SMALL_STATE(1733)] = 78711, - [SMALL_STATE(1734)] = 78757, - [SMALL_STATE(1735)] = 78803, - [SMALL_STATE(1736)] = 78889, - [SMALL_STATE(1737)] = 78945, - [SMALL_STATE(1738)] = 79001, - [SMALL_STATE(1739)] = 79047, - [SMALL_STATE(1740)] = 79103, - [SMALL_STATE(1741)] = 79191, - [SMALL_STATE(1742)] = 79277, - [SMALL_STATE(1743)] = 79363, - [SMALL_STATE(1744)] = 79419, - [SMALL_STATE(1745)] = 79465, - [SMALL_STATE(1746)] = 79515, - [SMALL_STATE(1747)] = 79561, - [SMALL_STATE(1748)] = 79647, - [SMALL_STATE(1749)] = 79693, - [SMALL_STATE(1750)] = 79739, - [SMALL_STATE(1751)] = 79795, - [SMALL_STATE(1752)] = 79851, - [SMALL_STATE(1753)] = 79937, - [SMALL_STATE(1754)] = 80023, - [SMALL_STATE(1755)] = 80109, - [SMALL_STATE(1756)] = 80165, - [SMALL_STATE(1757)] = 80215, - [SMALL_STATE(1758)] = 80261, - [SMALL_STATE(1759)] = 80311, - [SMALL_STATE(1760)] = 80367, - [SMALL_STATE(1761)] = 80423, - [SMALL_STATE(1762)] = 80509, - [SMALL_STATE(1763)] = 80565, - [SMALL_STATE(1764)] = 80615, - [SMALL_STATE(1765)] = 80703, - [SMALL_STATE(1766)] = 80753, - [SMALL_STATE(1767)] = 80799, - [SMALL_STATE(1768)] = 80845, - [SMALL_STATE(1769)] = 80901, - [SMALL_STATE(1770)] = 80987, - [SMALL_STATE(1771)] = 81037, - [SMALL_STATE(1772)] = 81087, - [SMALL_STATE(1773)] = 81137, - [SMALL_STATE(1774)] = 81187, - [SMALL_STATE(1775)] = 81273, - [SMALL_STATE(1776)] = 81329, - [SMALL_STATE(1777)] = 81375, - [SMALL_STATE(1778)] = 81431, - [SMALL_STATE(1779)] = 81483, - [SMALL_STATE(1780)] = 81569, - [SMALL_STATE(1781)] = 81621, - [SMALL_STATE(1782)] = 81677, - [SMALL_STATE(1783)] = 81723, - [SMALL_STATE(1784)] = 81773, - [SMALL_STATE(1785)] = 81819, - [SMALL_STATE(1786)] = 81905, - [SMALL_STATE(1787)] = 81991, - [SMALL_STATE(1788)] = 82077, - [SMALL_STATE(1789)] = 82129, - [SMALL_STATE(1790)] = 82175, - [SMALL_STATE(1791)] = 82227, - [SMALL_STATE(1792)] = 82273, - [SMALL_STATE(1793)] = 82319, - [SMALL_STATE(1794)] = 82371, - [SMALL_STATE(1795)] = 82417, - [SMALL_STATE(1796)] = 82463, - [SMALL_STATE(1797)] = 82509, - [SMALL_STATE(1798)] = 82561, - [SMALL_STATE(1799)] = 82647, - [SMALL_STATE(1800)] = 82697, - [SMALL_STATE(1801)] = 82743, - [SMALL_STATE(1802)] = 82829, - [SMALL_STATE(1803)] = 82885, - [SMALL_STATE(1804)] = 82971, - [SMALL_STATE(1805)] = 83017, - [SMALL_STATE(1806)] = 83063, - [SMALL_STATE(1807)] = 83149, - [SMALL_STATE(1808)] = 83195, - [SMALL_STATE(1809)] = 83281, - [SMALL_STATE(1810)] = 83327, - [SMALL_STATE(1811)] = 83373, - [SMALL_STATE(1812)] = 83459, - [SMALL_STATE(1813)] = 83509, - [SMALL_STATE(1814)] = 83555, - [SMALL_STATE(1815)] = 83641, - [SMALL_STATE(1816)] = 83687, - [SMALL_STATE(1817)] = 83733, - [SMALL_STATE(1818)] = 83819, - [SMALL_STATE(1819)] = 83875, - [SMALL_STATE(1820)] = 83963, - [SMALL_STATE(1821)] = 84019, - [SMALL_STATE(1822)] = 84075, - [SMALL_STATE(1823)] = 84121, - [SMALL_STATE(1824)] = 84167, - [SMALL_STATE(1825)] = 84217, - [SMALL_STATE(1826)] = 84273, - [SMALL_STATE(1827)] = 84323, - [SMALL_STATE(1828)] = 84375, - [SMALL_STATE(1829)] = 84421, - [SMALL_STATE(1830)] = 84477, - [SMALL_STATE(1831)] = 84529, - [SMALL_STATE(1832)] = 84579, - [SMALL_STATE(1833)] = 84625, - [SMALL_STATE(1834)] = 84671, - [SMALL_STATE(1835)] = 84717, - [SMALL_STATE(1836)] = 84773, - [SMALL_STATE(1837)] = 84859, - [SMALL_STATE(1838)] = 84915, - [SMALL_STATE(1839)] = 84971, - [SMALL_STATE(1840)] = 85017, - [SMALL_STATE(1841)] = 85103, - [SMALL_STATE(1842)] = 85149, - [SMALL_STATE(1843)] = 85195, - [SMALL_STATE(1844)] = 85251, - [SMALL_STATE(1845)] = 85297, - [SMALL_STATE(1846)] = 85343, - [SMALL_STATE(1847)] = 85391, - [SMALL_STATE(1848)] = 85477, - [SMALL_STATE(1849)] = 85523, - [SMALL_STATE(1850)] = 85569, - [SMALL_STATE(1851)] = 85625, - [SMALL_STATE(1852)] = 85671, - [SMALL_STATE(1853)] = 85717, - [SMALL_STATE(1854)] = 85763, - [SMALL_STATE(1855)] = 85813, - [SMALL_STATE(1856)] = 85899, - [SMALL_STATE(1857)] = 85945, - [SMALL_STATE(1858)] = 85991, - [SMALL_STATE(1859)] = 86077, - [SMALL_STATE(1860)] = 86163, - [SMALL_STATE(1861)] = 86249, - [SMALL_STATE(1862)] = 86295, - [SMALL_STATE(1863)] = 86341, - [SMALL_STATE(1864)] = 86397, - [SMALL_STATE(1865)] = 86443, - [SMALL_STATE(1866)] = 86489, - [SMALL_STATE(1867)] = 86545, - [SMALL_STATE(1868)] = 86591, - [SMALL_STATE(1869)] = 86677, - [SMALL_STATE(1870)] = 86733, - [SMALL_STATE(1871)] = 86819, - [SMALL_STATE(1872)] = 86865, - [SMALL_STATE(1873)] = 86921, - [SMALL_STATE(1874)] = 86977, - [SMALL_STATE(1875)] = 87033, - [SMALL_STATE(1876)] = 87079, - [SMALL_STATE(1877)] = 87125, - [SMALL_STATE(1878)] = 87171, - [SMALL_STATE(1879)] = 87223, - [SMALL_STATE(1880)] = 87279, - [SMALL_STATE(1881)] = 87331, - [SMALL_STATE(1882)] = 87377, - [SMALL_STATE(1883)] = 87423, - [SMALL_STATE(1884)] = 87469, - [SMALL_STATE(1885)] = 87555, - [SMALL_STATE(1886)] = 87601, - [SMALL_STATE(1887)] = 87657, - [SMALL_STATE(1888)] = 87713, - [SMALL_STATE(1889)] = 87799, - [SMALL_STATE(1890)] = 87885, - [SMALL_STATE(1891)] = 87931, - [SMALL_STATE(1892)] = 87981, - [SMALL_STATE(1893)] = 88027, - [SMALL_STATE(1894)] = 88073, - [SMALL_STATE(1895)] = 88123, - [SMALL_STATE(1896)] = 88209, - [SMALL_STATE(1897)] = 88265, - [SMALL_STATE(1898)] = 88321, - [SMALL_STATE(1899)] = 88407, - [SMALL_STATE(1900)] = 88453, - [SMALL_STATE(1901)] = 88499, - [SMALL_STATE(1902)] = 88545, - [SMALL_STATE(1903)] = 88591, - [SMALL_STATE(1904)] = 88637, - [SMALL_STATE(1905)] = 88693, - [SMALL_STATE(1906)] = 88749, - [SMALL_STATE(1907)] = 88835, - [SMALL_STATE(1908)] = 88881, - [SMALL_STATE(1909)] = 88927, - [SMALL_STATE(1910)] = 88983, - [SMALL_STATE(1911)] = 89033, - [SMALL_STATE(1912)] = 89089, - [SMALL_STATE(1913)] = 89175, - [SMALL_STATE(1914)] = 89263, - [SMALL_STATE(1915)] = 89349, - [SMALL_STATE(1916)] = 89395, - [SMALL_STATE(1917)] = 89441, - [SMALL_STATE(1918)] = 89527, - [SMALL_STATE(1919)] = 89579, - [SMALL_STATE(1920)] = 89665, - [SMALL_STATE(1921)] = 89711, - [SMALL_STATE(1922)] = 89767, - [SMALL_STATE(1923)] = 89853, - [SMALL_STATE(1924)] = 89903, - [SMALL_STATE(1925)] = 89949, - [SMALL_STATE(1926)] = 89995, - [SMALL_STATE(1927)] = 90047, - [SMALL_STATE(1928)] = 90103, - [SMALL_STATE(1929)] = 90148, - [SMALL_STATE(1930)] = 90193, - [SMALL_STATE(1931)] = 90238, - [SMALL_STATE(1932)] = 90287, - [SMALL_STATE(1933)] = 90338, - [SMALL_STATE(1934)] = 90383, - [SMALL_STATE(1935)] = 90428, - [SMALL_STATE(1936)] = 90479, - [SMALL_STATE(1937)] = 90524, - [SMALL_STATE(1938)] = 90569, - [SMALL_STATE(1939)] = 90614, - [SMALL_STATE(1940)] = 90659, - [SMALL_STATE(1941)] = 90704, - [SMALL_STATE(1942)] = 90759, - [SMALL_STATE(1943)] = 90804, - [SMALL_STATE(1944)] = 90849, - [SMALL_STATE(1945)] = 90894, - [SMALL_STATE(1946)] = 90945, - [SMALL_STATE(1947)] = 90990, - [SMALL_STATE(1948)] = 91035, - [SMALL_STATE(1949)] = 91090, - [SMALL_STATE(1950)] = 91135, - [SMALL_STATE(1951)] = 91180, - [SMALL_STATE(1952)] = 91229, - [SMALL_STATE(1953)] = 91274, - [SMALL_STATE(1954)] = 91319, - [SMALL_STATE(1955)] = 91374, - [SMALL_STATE(1956)] = 91419, - [SMALL_STATE(1957)] = 91464, - [SMALL_STATE(1958)] = 91509, - [SMALL_STATE(1959)] = 91554, - [SMALL_STATE(1960)] = 91599, - [SMALL_STATE(1961)] = 91644, - [SMALL_STATE(1962)] = 91691, - [SMALL_STATE(1963)] = 91738, - [SMALL_STATE(1964)] = 91783, - [SMALL_STATE(1965)] = 91828, - [SMALL_STATE(1966)] = 91875, - [SMALL_STATE(1967)] = 91920, - [SMALL_STATE(1968)] = 91969, - [SMALL_STATE(1969)] = 92018, - [SMALL_STATE(1970)] = 92063, - [SMALL_STATE(1971)] = 92108, - [SMALL_STATE(1972)] = 92153, - [SMALL_STATE(1973)] = 92200, - [SMALL_STATE(1974)] = 92249, - [SMALL_STATE(1975)] = 92298, - [SMALL_STATE(1976)] = 92343, - [SMALL_STATE(1977)] = 92392, - [SMALL_STATE(1978)] = 92437, - [SMALL_STATE(1979)] = 92482, - [SMALL_STATE(1980)] = 92527, - [SMALL_STATE(1981)] = 92584, - [SMALL_STATE(1982)] = 92629, - [SMALL_STATE(1983)] = 92678, - [SMALL_STATE(1984)] = 92727, - [SMALL_STATE(1985)] = 92772, - [SMALL_STATE(1986)] = 92823, - [SMALL_STATE(1987)] = 92872, - [SMALL_STATE(1988)] = 92917, - [SMALL_STATE(1989)] = 92962, - [SMALL_STATE(1990)] = 93013, - [SMALL_STATE(1991)] = 93064, - [SMALL_STATE(1992)] = 93109, - [SMALL_STATE(1993)] = 93154, - [SMALL_STATE(1994)] = 93203, - [SMALL_STATE(1995)] = 93248, - [SMALL_STATE(1996)] = 93293, - [SMALL_STATE(1997)] = 93338, - [SMALL_STATE(1998)] = 93391, - [SMALL_STATE(1999)] = 93436, - [SMALL_STATE(2000)] = 93481, - [SMALL_STATE(2001)] = 93526, - [SMALL_STATE(2002)] = 93579, - [SMALL_STATE(2003)] = 93624, - [SMALL_STATE(2004)] = 93673, - [SMALL_STATE(2005)] = 93722, - [SMALL_STATE(2006)] = 93767, - [SMALL_STATE(2007)] = 93812, - [SMALL_STATE(2008)] = 93857, - [SMALL_STATE(2009)] = 93902, - [SMALL_STATE(2010)] = 93947, - [SMALL_STATE(2011)] = 93992, - [SMALL_STATE(2012)] = 94037, - [SMALL_STATE(2013)] = 94082, - [SMALL_STATE(2014)] = 94127, - [SMALL_STATE(2015)] = 94172, - [SMALL_STATE(2016)] = 94217, - [SMALL_STATE(2017)] = 94262, - [SMALL_STATE(2018)] = 94307, - [SMALL_STATE(2019)] = 94352, - [SMALL_STATE(2020)] = 94397, - [SMALL_STATE(2021)] = 94446, - [SMALL_STATE(2022)] = 94495, - [SMALL_STATE(2023)] = 94540, - [SMALL_STATE(2024)] = 94587, - [SMALL_STATE(2025)] = 94632, - [SMALL_STATE(2026)] = 94679, - [SMALL_STATE(2027)] = 94724, - [SMALL_STATE(2028)] = 94771, - [SMALL_STATE(2029)] = 94820, - [SMALL_STATE(2030)] = 94865, - [SMALL_STATE(2031)] = 94912, - [SMALL_STATE(2032)] = 94957, - [SMALL_STATE(2033)] = 95002, - [SMALL_STATE(2034)] = 95049, - [SMALL_STATE(2035)] = 95094, - [SMALL_STATE(2036)] = 95138, - [SMALL_STATE(2037)] = 95182, - [SMALL_STATE(2038)] = 95234, - [SMALL_STATE(2039)] = 95282, - [SMALL_STATE(2040)] = 95326, - [SMALL_STATE(2041)] = 95370, - [SMALL_STATE(2042)] = 95420, - [SMALL_STATE(2043)] = 95464, - [SMALL_STATE(2044)] = 95508, - [SMALL_STATE(2045)] = 95552, - [SMALL_STATE(2046)] = 95604, - [SMALL_STATE(2047)] = 95648, - [SMALL_STATE(2048)] = 95692, - [SMALL_STATE(2049)] = 95736, - [SMALL_STATE(2050)] = 95780, - [SMALL_STATE(2051)] = 95824, - [SMALL_STATE(2052)] = 95872, - [SMALL_STATE(2053)] = 95924, - [SMALL_STATE(2054)] = 95972, - [SMALL_STATE(2055)] = 96020, - [SMALL_STATE(2056)] = 96064, - [SMALL_STATE(2057)] = 96116, - [SMALL_STATE(2058)] = 96164, - [SMALL_STATE(2059)] = 96208, - [SMALL_STATE(2060)] = 96252, - [SMALL_STATE(2061)] = 96300, - [SMALL_STATE(2062)] = 96344, - [SMALL_STATE(2063)] = 96396, - [SMALL_STATE(2064)] = 96448, - [SMALL_STATE(2065)] = 96492, - [SMALL_STATE(2066)] = 96536, - [SMALL_STATE(2067)] = 96580, - [SMALL_STATE(2068)] = 96630, - [SMALL_STATE(2069)] = 96674, - [SMALL_STATE(2070)] = 96722, - [SMALL_STATE(2071)] = 96766, - [SMALL_STATE(2072)] = 96810, - [SMALL_STATE(2073)] = 96854, - [SMALL_STATE(2074)] = 96898, - [SMALL_STATE(2075)] = 96950, - [SMALL_STATE(2076)] = 97002, - [SMALL_STATE(2077)] = 97046, - [SMALL_STATE(2078)] = 97090, - [SMALL_STATE(2079)] = 97134, - [SMALL_STATE(2080)] = 97186, - [SMALL_STATE(2081)] = 97230, - [SMALL_STATE(2082)] = 97278, - [SMALL_STATE(2083)] = 97322, - [SMALL_STATE(2084)] = 97366, - [SMALL_STATE(2085)] = 97410, - [SMALL_STATE(2086)] = 97462, - [SMALL_STATE(2087)] = 97506, - [SMALL_STATE(2088)] = 97550, - [SMALL_STATE(2089)] = 97594, - [SMALL_STATE(2090)] = 97646, - [SMALL_STATE(2091)] = 97698, - [SMALL_STATE(2092)] = 97742, - [SMALL_STATE(2093)] = 97794, - [SMALL_STATE(2094)] = 97838, - [SMALL_STATE(2095)] = 97886, - [SMALL_STATE(2096)] = 97938, - [SMALL_STATE(2097)] = 97986, - [SMALL_STATE(2098)] = 98034, - [SMALL_STATE(2099)] = 98078, - [SMALL_STATE(2100)] = 98124, - [SMALL_STATE(2101)] = 98172, - [SMALL_STATE(2102)] = 98216, - [SMALL_STATE(2103)] = 98264, - [SMALL_STATE(2104)] = 98308, - [SMALL_STATE(2105)] = 98352, - [SMALL_STATE(2106)] = 98404, - [SMALL_STATE(2107)] = 98456, - [SMALL_STATE(2108)] = 98504, - [SMALL_STATE(2109)] = 98548, - [SMALL_STATE(2110)] = 98600, - [SMALL_STATE(2111)] = 98644, - [SMALL_STATE(2112)] = 98688, - [SMALL_STATE(2113)] = 98740, - [SMALL_STATE(2114)] = 98784, - [SMALL_STATE(2115)] = 98828, - [SMALL_STATE(2116)] = 98872, - [SMALL_STATE(2117)] = 98922, - [SMALL_STATE(2118)] = 98966, - [SMALL_STATE(2119)] = 99014, - [SMALL_STATE(2120)] = 99058, - [SMALL_STATE(2121)] = 99110, - [SMALL_STATE(2122)] = 99162, - [SMALL_STATE(2123)] = 99210, - [SMALL_STATE(2124)] = 99254, - [SMALL_STATE(2125)] = 99298, - [SMALL_STATE(2126)] = 99346, - [SMALL_STATE(2127)] = 99390, - [SMALL_STATE(2128)] = 99434, - [SMALL_STATE(2129)] = 99486, - [SMALL_STATE(2130)] = 99538, - [SMALL_STATE(2131)] = 99586, - [SMALL_STATE(2132)] = 99630, - [SMALL_STATE(2133)] = 99674, - [SMALL_STATE(2134)] = 99722, - [SMALL_STATE(2135)] = 99770, - [SMALL_STATE(2136)] = 99822, - [SMALL_STATE(2137)] = 99866, - [SMALL_STATE(2138)] = 99916, - [SMALL_STATE(2139)] = 99960, - [SMALL_STATE(2140)] = 100012, - [SMALL_STATE(2141)] = 100060, - [SMALL_STATE(2142)] = 100104, - [SMALL_STATE(2143)] = 100152, - [SMALL_STATE(2144)] = 100204, - [SMALL_STATE(2145)] = 100256, - [SMALL_STATE(2146)] = 100300, - [SMALL_STATE(2147)] = 100344, - [SMALL_STATE(2148)] = 100388, - [SMALL_STATE(2149)] = 100473, - [SMALL_STATE(2150)] = 100520, - [SMALL_STATE(2151)] = 100563, - [SMALL_STATE(2152)] = 100614, - [SMALL_STATE(2153)] = 100699, - [SMALL_STATE(2154)] = 100784, - [SMALL_STATE(2155)] = 100831, - [SMALL_STATE(2156)] = 100878, - [SMALL_STATE(2157)] = 100925, - [SMALL_STATE(2158)] = 101010, - [SMALL_STATE(2159)] = 101095, - [SMALL_STATE(2160)] = 101146, - [SMALL_STATE(2161)] = 101193, - [SMALL_STATE(2162)] = 101244, - [SMALL_STATE(2163)] = 101295, - [SMALL_STATE(2164)] = 101342, - [SMALL_STATE(2165)] = 101393, - [SMALL_STATE(2166)] = 101478, - [SMALL_STATE(2167)] = 101529, - [SMALL_STATE(2168)] = 101580, - [SMALL_STATE(2169)] = 101665, - [SMALL_STATE(2170)] = 101708, - [SMALL_STATE(2171)] = 101751, - [SMALL_STATE(2172)] = 101836, - [SMALL_STATE(2173)] = 101879, - [SMALL_STATE(2174)] = 101926, - [SMALL_STATE(2175)] = 102011, - [SMALL_STATE(2176)] = 102062, - [SMALL_STATE(2177)] = 102105, - [SMALL_STATE(2178)] = 102148, - [SMALL_STATE(2179)] = 102195, - [SMALL_STATE(2180)] = 102244, - [SMALL_STATE(2181)] = 102293, - [SMALL_STATE(2182)] = 102340, - [SMALL_STATE(2183)] = 102425, - [SMALL_STATE(2184)] = 102510, - [SMALL_STATE(2185)] = 102595, - [SMALL_STATE(2186)] = 102642, - [SMALL_STATE(2187)] = 102693, - [SMALL_STATE(2188)] = 102742, - [SMALL_STATE(2189)] = 102784, - [SMALL_STATE(2190)] = 102826, - [SMALL_STATE(2191)] = 102908, - [SMALL_STATE(2192)] = 102990, - [SMALL_STATE(2193)] = 103064, - [SMALL_STATE(2194)] = 103146, - [SMALL_STATE(2195)] = 103188, - [SMALL_STATE(2196)] = 103270, - [SMALL_STATE(2197)] = 103344, - [SMALL_STATE(2198)] = 103386, - [SMALL_STATE(2199)] = 103436, - [SMALL_STATE(2200)] = 103486, - [SMALL_STATE(2201)] = 103528, - [SMALL_STATE(2202)] = 103572, - [SMALL_STATE(2203)] = 103654, - [SMALL_STATE(2204)] = 103696, - [SMALL_STATE(2205)] = 103778, - [SMALL_STATE(2206)] = 103820, - [SMALL_STATE(2207)] = 103862, - [SMALL_STATE(2208)] = 103944, - [SMALL_STATE(2209)] = 104026, - [SMALL_STATE(2210)] = 104068, - [SMALL_STATE(2211)] = 104150, - [SMALL_STATE(2212)] = 104200, - [SMALL_STATE(2213)] = 104250, - [SMALL_STATE(2214)] = 104292, - [SMALL_STATE(2215)] = 104374, - [SMALL_STATE(2216)] = 104456, - [SMALL_STATE(2217)] = 104506, - [SMALL_STATE(2218)] = 104548, - [SMALL_STATE(2219)] = 104598, - [SMALL_STATE(2220)] = 104648, - [SMALL_STATE(2221)] = 104730, - [SMALL_STATE(2222)] = 104780, - [SMALL_STATE(2223)] = 104854, - [SMALL_STATE(2224)] = 104936, - [SMALL_STATE(2225)] = 104978, - [SMALL_STATE(2226)] = 105020, - [SMALL_STATE(2227)] = 105070, - [SMALL_STATE(2228)] = 105152, - [SMALL_STATE(2229)] = 105194, - [SMALL_STATE(2230)] = 105236, - [SMALL_STATE(2231)] = 105318, - [SMALL_STATE(2232)] = 105360, - [SMALL_STATE(2233)] = 105442, - [SMALL_STATE(2234)] = 105516, - [SMALL_STATE(2235)] = 105558, - [SMALL_STATE(2236)] = 105600, - [SMALL_STATE(2237)] = 105682, - [SMALL_STATE(2238)] = 105764, - [SMALL_STATE(2239)] = 105806, - [SMALL_STATE(2240)] = 105848, - [SMALL_STATE(2241)] = 105890, - [SMALL_STATE(2242)] = 105931, - [SMALL_STATE(2243)] = 106008, - [SMALL_STATE(2244)] = 106087, - [SMALL_STATE(2245)] = 106128, - [SMALL_STATE(2246)] = 106169, - [SMALL_STATE(2247)] = 106210, - [SMALL_STATE(2248)] = 106251, - [SMALL_STATE(2249)] = 106300, - [SMALL_STATE(2250)] = 106341, - [SMALL_STATE(2251)] = 106390, - [SMALL_STATE(2252)] = 106469, - [SMALL_STATE(2253)] = 106548, - [SMALL_STATE(2254)] = 106627, - [SMALL_STATE(2255)] = 106668, - [SMALL_STATE(2256)] = 106709, - [SMALL_STATE(2257)] = 106750, - [SMALL_STATE(2258)] = 106791, - [SMALL_STATE(2259)] = 106832, - [SMALL_STATE(2260)] = 106873, - [SMALL_STATE(2261)] = 106918, - [SMALL_STATE(2262)] = 106997, - [SMALL_STATE(2263)] = 107042, - [SMALL_STATE(2264)] = 107121, - [SMALL_STATE(2265)] = 107200, - [SMALL_STATE(2266)] = 107277, - [SMALL_STATE(2267)] = 107356, - [SMALL_STATE(2268)] = 107435, - [SMALL_STATE(2269)] = 107512, - [SMALL_STATE(2270)] = 107557, - [SMALL_STATE(2271)] = 107598, - [SMALL_STATE(2272)] = 107677, - [SMALL_STATE(2273)] = 107756, - [SMALL_STATE(2274)] = 107835, - [SMALL_STATE(2275)] = 107876, - [SMALL_STATE(2276)] = 107917, - [SMALL_STATE(2277)] = 107996, - [SMALL_STATE(2278)] = 108073, - [SMALL_STATE(2279)] = 108114, - [SMALL_STATE(2280)] = 108193, - [SMALL_STATE(2281)] = 108242, - [SMALL_STATE(2282)] = 108291, - [SMALL_STATE(2283)] = 108370, - [SMALL_STATE(2284)] = 108449, - [SMALL_STATE(2285)] = 108528, - [SMALL_STATE(2286)] = 108607, - [SMALL_STATE(2287)] = 108686, - [SMALL_STATE(2288)] = 108765, - [SMALL_STATE(2289)] = 108844, - [SMALL_STATE(2290)] = 108921, - [SMALL_STATE(2291)] = 109000, - [SMALL_STATE(2292)] = 109045, - [SMALL_STATE(2293)] = 109086, - [SMALL_STATE(2294)] = 109165, - [SMALL_STATE(2295)] = 109244, - [SMALL_STATE(2296)] = 109296, - [SMALL_STATE(2297)] = 109338, - [SMALL_STATE(2298)] = 109378, - [SMALL_STATE(2299)] = 109418, - [SMALL_STATE(2300)] = 109458, - [SMALL_STATE(2301)] = 109500, - [SMALL_STATE(2302)] = 109543, - [SMALL_STATE(2303)] = 109616, - [SMALL_STATE(2304)] = 109659, - [SMALL_STATE(2305)] = 109698, - [SMALL_STATE(2306)] = 109737, - [SMALL_STATE(2307)] = 109810, - [SMALL_STATE(2308)] = 109883, - [SMALL_STATE(2309)] = 109956, - [SMALL_STATE(2310)] = 110003, - [SMALL_STATE(2311)] = 110074, - [SMALL_STATE(2312)] = 110113, - [SMALL_STATE(2313)] = 110186, - [SMALL_STATE(2314)] = 110259, - [SMALL_STATE(2315)] = 110306, - [SMALL_STATE(2316)] = 110345, - [SMALL_STATE(2317)] = 110384, - [SMALL_STATE(2318)] = 110457, - [SMALL_STATE(2319)] = 110504, - [SMALL_STATE(2320)] = 110543, - [SMALL_STATE(2321)] = 110582, - [SMALL_STATE(2322)] = 110655, - [SMALL_STATE(2323)] = 110694, - [SMALL_STATE(2324)] = 110767, - [SMALL_STATE(2325)] = 110840, - [SMALL_STATE(2326)] = 110913, - [SMALL_STATE(2327)] = 110960, - [SMALL_STATE(2328)] = 111033, - [SMALL_STATE(2329)] = 111106, - [SMALL_STATE(2330)] = 111179, - [SMALL_STATE(2331)] = 111252, - [SMALL_STATE(2332)] = 111291, - [SMALL_STATE(2333)] = 111330, - [SMALL_STATE(2334)] = 111369, - [SMALL_STATE(2335)] = 111442, - [SMALL_STATE(2336)] = 111515, - [SMALL_STATE(2337)] = 111558, - [SMALL_STATE(2338)] = 111597, - [SMALL_STATE(2339)] = 111636, - [SMALL_STATE(2340)] = 111675, - [SMALL_STATE(2341)] = 111714, - [SMALL_STATE(2342)] = 111787, - [SMALL_STATE(2343)] = 111826, - [SMALL_STATE(2344)] = 111865, - [SMALL_STATE(2345)] = 111904, - [SMALL_STATE(2346)] = 111947, - [SMALL_STATE(2347)] = 111986, - [SMALL_STATE(2348)] = 112059, - [SMALL_STATE(2349)] = 112132, - [SMALL_STATE(2350)] = 112205, - [SMALL_STATE(2351)] = 112278, - [SMALL_STATE(2352)] = 112317, - [SMALL_STATE(2353)] = 112356, - [SMALL_STATE(2354)] = 112395, - [SMALL_STATE(2355)] = 112434, - [SMALL_STATE(2356)] = 112473, - [SMALL_STATE(2357)] = 112546, - [SMALL_STATE(2358)] = 112619, - [SMALL_STATE(2359)] = 112658, - [SMALL_STATE(2360)] = 112697, - [SMALL_STATE(2361)] = 112736, - [SMALL_STATE(2362)] = 112775, - [SMALL_STATE(2363)] = 112814, - [SMALL_STATE(2364)] = 112857, - [SMALL_STATE(2365)] = 112930, - [SMALL_STATE(2366)] = 113003, - [SMALL_STATE(2367)] = 113042, - [SMALL_STATE(2368)] = 113081, - [SMALL_STATE(2369)] = 113124, - [SMALL_STATE(2370)] = 113163, - [SMALL_STATE(2371)] = 113236, - [SMALL_STATE(2372)] = 113279, - [SMALL_STATE(2373)] = 113352, - [SMALL_STATE(2374)] = 113391, - [SMALL_STATE(2375)] = 113464, - [SMALL_STATE(2376)] = 113537, - [SMALL_STATE(2377)] = 113582, - [SMALL_STATE(2378)] = 113627, - [SMALL_STATE(2379)] = 113698, - [SMALL_STATE(2380)] = 113771, - [SMALL_STATE(2381)] = 113842, - [SMALL_STATE(2382)] = 113881, - [SMALL_STATE(2383)] = 113924, - [SMALL_STATE(2384)] = 113997, - [SMALL_STATE(2385)] = 114040, - [SMALL_STATE(2386)] = 114083, - [SMALL_STATE(2387)] = 114153, - [SMALL_STATE(2388)] = 114199, - [SMALL_STATE(2389)] = 114245, - [SMALL_STATE(2390)] = 114283, - [SMALL_STATE(2391)] = 114329, - [SMALL_STATE(2392)] = 114401, - [SMALL_STATE(2393)] = 114473, - [SMALL_STATE(2394)] = 114543, - [SMALL_STATE(2395)] = 114613, - [SMALL_STATE(2396)] = 114651, - [SMALL_STATE(2397)] = 114721, - [SMALL_STATE(2398)] = 114791, - [SMALL_STATE(2399)] = 114863, - [SMALL_STATE(2400)] = 114901, - [SMALL_STATE(2401)] = 114971, - [SMALL_STATE(2402)] = 115017, - [SMALL_STATE(2403)] = 115089, - [SMALL_STATE(2404)] = 115159, - [SMALL_STATE(2405)] = 115229, - [SMALL_STATE(2406)] = 115299, - [SMALL_STATE(2407)] = 115337, - [SMALL_STATE(2408)] = 115407, - [SMALL_STATE(2409)] = 115479, - [SMALL_STATE(2410)] = 115517, - [SMALL_STATE(2411)] = 115589, - [SMALL_STATE(2412)] = 115659, - [SMALL_STATE(2413)] = 115697, - [SMALL_STATE(2414)] = 115735, - [SMALL_STATE(2415)] = 115773, - [SMALL_STATE(2416)] = 115843, - [SMALL_STATE(2417)] = 115913, - [SMALL_STATE(2418)] = 115983, - [SMALL_STATE(2419)] = 116053, - [SMALL_STATE(2420)] = 116123, - [SMALL_STATE(2421)] = 116161, - [SMALL_STATE(2422)] = 116231, - [SMALL_STATE(2423)] = 116301, - [SMALL_STATE(2424)] = 116371, - [SMALL_STATE(2425)] = 116441, - [SMALL_STATE(2426)] = 116479, - [SMALL_STATE(2427)] = 116551, - [SMALL_STATE(2428)] = 116621, - [SMALL_STATE(2429)] = 116659, - [SMALL_STATE(2430)] = 116731, - [SMALL_STATE(2431)] = 116801, - [SMALL_STATE(2432)] = 116871, - [SMALL_STATE(2433)] = 116941, - [SMALL_STATE(2434)] = 117011, - [SMALL_STATE(2435)] = 117081, - [SMALL_STATE(2436)] = 117151, - [SMALL_STATE(2437)] = 117221, - [SMALL_STATE(2438)] = 117291, - [SMALL_STATE(2439)] = 117329, - [SMALL_STATE(2440)] = 117401, - [SMALL_STATE(2441)] = 117439, - [SMALL_STATE(2442)] = 117509, - [SMALL_STATE(2443)] = 117579, - [SMALL_STATE(2444)] = 117617, - [SMALL_STATE(2445)] = 117655, - [SMALL_STATE(2446)] = 117701, - [SMALL_STATE(2447)] = 117739, - [SMALL_STATE(2448)] = 117811, - [SMALL_STATE(2449)] = 117849, - [SMALL_STATE(2450)] = 117919, - [SMALL_STATE(2451)] = 117965, - [SMALL_STATE(2452)] = 118035, - [SMALL_STATE(2453)] = 118105, - [SMALL_STATE(2454)] = 118175, - [SMALL_STATE(2455)] = 118213, - [SMALL_STATE(2456)] = 118251, - [SMALL_STATE(2457)] = 118297, - [SMALL_STATE(2458)] = 118343, - [SMALL_STATE(2459)] = 118389, - [SMALL_STATE(2460)] = 118427, - [SMALL_STATE(2461)] = 118473, - [SMALL_STATE(2462)] = 118543, - [SMALL_STATE(2463)] = 118615, - [SMALL_STATE(2464)] = 118685, - [SMALL_STATE(2465)] = 118757, - [SMALL_STATE(2466)] = 118827, - [SMALL_STATE(2467)] = 118897, - [SMALL_STATE(2468)] = 118967, - [SMALL_STATE(2469)] = 119037, - [SMALL_STATE(2470)] = 119106, - [SMALL_STATE(2471)] = 119175, - [SMALL_STATE(2472)] = 119244, - [SMALL_STATE(2473)] = 119313, - [SMALL_STATE(2474)] = 119380, - [SMALL_STATE(2475)] = 119449, - [SMALL_STATE(2476)] = 119518, - [SMALL_STATE(2477)] = 119587, - [SMALL_STATE(2478)] = 119656, - [SMALL_STATE(2479)] = 119723, - [SMALL_STATE(2480)] = 119790, - [SMALL_STATE(2481)] = 119835, - [SMALL_STATE(2482)] = 119880, - [SMALL_STATE(2483)] = 119949, - [SMALL_STATE(2484)] = 119990, - [SMALL_STATE(2485)] = 120059, - [SMALL_STATE(2486)] = 120128, - [SMALL_STATE(2487)] = 120197, - [SMALL_STATE(2488)] = 120266, - [SMALL_STATE(2489)] = 120333, - [SMALL_STATE(2490)] = 120402, - [SMALL_STATE(2491)] = 120471, - [SMALL_STATE(2492)] = 120540, - [SMALL_STATE(2493)] = 120607, - [SMALL_STATE(2494)] = 120674, - [SMALL_STATE(2495)] = 120743, - [SMALL_STATE(2496)] = 120784, - [SMALL_STATE(2497)] = 120853, - [SMALL_STATE(2498)] = 120920, - [SMALL_STATE(2499)] = 120989, - [SMALL_STATE(2500)] = 121056, - [SMALL_STATE(2501)] = 121123, - [SMALL_STATE(2502)] = 121190, - [SMALL_STATE(2503)] = 121231, - [SMALL_STATE(2504)] = 121300, - [SMALL_STATE(2505)] = 121367, - [SMALL_STATE(2506)] = 121436, - [SMALL_STATE(2507)] = 121500, - [SMALL_STATE(2508)] = 121564, - [SMALL_STATE(2509)] = 121628, - [SMALL_STATE(2510)] = 121692, - [SMALL_STATE(2511)] = 121728, - [SMALL_STATE(2512)] = 121792, - [SMALL_STATE(2513)] = 121856, - [SMALL_STATE(2514)] = 121920, - [SMALL_STATE(2515)] = 121984, - [SMALL_STATE(2516)] = 122048, - [SMALL_STATE(2517)] = 122112, - [SMALL_STATE(2518)] = 122176, - [SMALL_STATE(2519)] = 122240, - [SMALL_STATE(2520)] = 122304, - [SMALL_STATE(2521)] = 122368, - [SMALL_STATE(2522)] = 122432, - [SMALL_STATE(2523)] = 122496, - [SMALL_STATE(2524)] = 122560, - [SMALL_STATE(2525)] = 122624, - [SMALL_STATE(2526)] = 122688, - [SMALL_STATE(2527)] = 122752, - [SMALL_STATE(2528)] = 122816, - [SMALL_STATE(2529)] = 122880, - [SMALL_STATE(2530)] = 122944, - [SMALL_STATE(2531)] = 122980, - [SMALL_STATE(2532)] = 123044, - [SMALL_STATE(2533)] = 123108, - [SMALL_STATE(2534)] = 123172, - [SMALL_STATE(2535)] = 123236, - [SMALL_STATE(2536)] = 123300, - [SMALL_STATE(2537)] = 123364, - [SMALL_STATE(2538)] = 123428, - [SMALL_STATE(2539)] = 123492, - [SMALL_STATE(2540)] = 123556, - [SMALL_STATE(2541)] = 123620, - [SMALL_STATE(2542)] = 123684, - [SMALL_STATE(2543)] = 123748, - [SMALL_STATE(2544)] = 123812, - [SMALL_STATE(2545)] = 123876, - [SMALL_STATE(2546)] = 123940, - [SMALL_STATE(2547)] = 124004, - [SMALL_STATE(2548)] = 124068, - [SMALL_STATE(2549)] = 124132, - [SMALL_STATE(2550)] = 124196, - [SMALL_STATE(2551)] = 124260, - [SMALL_STATE(2552)] = 124324, - [SMALL_STATE(2553)] = 124388, - [SMALL_STATE(2554)] = 124452, - [SMALL_STATE(2555)] = 124516, - [SMALL_STATE(2556)] = 124580, - [SMALL_STATE(2557)] = 124644, - [SMALL_STATE(2558)] = 124708, - [SMALL_STATE(2559)] = 124772, - [SMALL_STATE(2560)] = 124836, - [SMALL_STATE(2561)] = 124900, - [SMALL_STATE(2562)] = 124964, - [SMALL_STATE(2563)] = 125028, - [SMALL_STATE(2564)] = 125092, - [SMALL_STATE(2565)] = 125156, - [SMALL_STATE(2566)] = 125220, - [SMALL_STATE(2567)] = 125284, - [SMALL_STATE(2568)] = 125348, - [SMALL_STATE(2569)] = 125412, - [SMALL_STATE(2570)] = 125476, - [SMALL_STATE(2571)] = 125540, - [SMALL_STATE(2572)] = 125604, - [SMALL_STATE(2573)] = 125668, - [SMALL_STATE(2574)] = 125732, - [SMALL_STATE(2575)] = 125796, - [SMALL_STATE(2576)] = 125860, - [SMALL_STATE(2577)] = 125924, - [SMALL_STATE(2578)] = 125988, - [SMALL_STATE(2579)] = 126052, - [SMALL_STATE(2580)] = 126116, - [SMALL_STATE(2581)] = 126180, - [SMALL_STATE(2582)] = 126244, - [SMALL_STATE(2583)] = 126308, - [SMALL_STATE(2584)] = 126372, - [SMALL_STATE(2585)] = 126436, - [SMALL_STATE(2586)] = 126500, - [SMALL_STATE(2587)] = 126564, - [SMALL_STATE(2588)] = 126628, - [SMALL_STATE(2589)] = 126692, - [SMALL_STATE(2590)] = 126756, - [SMALL_STATE(2591)] = 126820, - [SMALL_STATE(2592)] = 126884, - [SMALL_STATE(2593)] = 126948, - [SMALL_STATE(2594)] = 127012, - [SMALL_STATE(2595)] = 127076, - [SMALL_STATE(2596)] = 127140, - [SMALL_STATE(2597)] = 127204, - [SMALL_STATE(2598)] = 127268, - [SMALL_STATE(2599)] = 127332, - [SMALL_STATE(2600)] = 127396, - [SMALL_STATE(2601)] = 127460, - [SMALL_STATE(2602)] = 127524, - [SMALL_STATE(2603)] = 127588, - [SMALL_STATE(2604)] = 127630, - [SMALL_STATE(2605)] = 127694, - [SMALL_STATE(2606)] = 127730, - [SMALL_STATE(2607)] = 127794, - [SMALL_STATE(2608)] = 127858, - [SMALL_STATE(2609)] = 127922, - [SMALL_STATE(2610)] = 127986, - [SMALL_STATE(2611)] = 128050, - [SMALL_STATE(2612)] = 128114, - [SMALL_STATE(2613)] = 128150, - [SMALL_STATE(2614)] = 128214, - [SMALL_STATE(2615)] = 128278, - [SMALL_STATE(2616)] = 128342, - [SMALL_STATE(2617)] = 128406, - [SMALL_STATE(2618)] = 128470, - [SMALL_STATE(2619)] = 128534, - [SMALL_STATE(2620)] = 128598, - [SMALL_STATE(2621)] = 128662, - [SMALL_STATE(2622)] = 128726, - [SMALL_STATE(2623)] = 128790, - [SMALL_STATE(2624)] = 128854, - [SMALL_STATE(2625)] = 128918, - [SMALL_STATE(2626)] = 128982, - [SMALL_STATE(2627)] = 129046, - [SMALL_STATE(2628)] = 129110, - [SMALL_STATE(2629)] = 129174, - [SMALL_STATE(2630)] = 129238, - [SMALL_STATE(2631)] = 129302, - [SMALL_STATE(2632)] = 129366, - [SMALL_STATE(2633)] = 129430, - [SMALL_STATE(2634)] = 129494, - [SMALL_STATE(2635)] = 129558, - [SMALL_STATE(2636)] = 129622, - [SMALL_STATE(2637)] = 129686, - [SMALL_STATE(2638)] = 129750, - [SMALL_STATE(2639)] = 129814, - [SMALL_STATE(2640)] = 129878, - [SMALL_STATE(2641)] = 129942, - [SMALL_STATE(2642)] = 130006, - [SMALL_STATE(2643)] = 130070, - [SMALL_STATE(2644)] = 130134, - [SMALL_STATE(2645)] = 130198, - [SMALL_STATE(2646)] = 130262, - [SMALL_STATE(2647)] = 130326, - [SMALL_STATE(2648)] = 130390, - [SMALL_STATE(2649)] = 130454, - [SMALL_STATE(2650)] = 130518, - [SMALL_STATE(2651)] = 130582, - [SMALL_STATE(2652)] = 130646, - [SMALL_STATE(2653)] = 130710, - [SMALL_STATE(2654)] = 130774, - [SMALL_STATE(2655)] = 130838, - [SMALL_STATE(2656)] = 130902, - [SMALL_STATE(2657)] = 130966, - [SMALL_STATE(2658)] = 131030, - [SMALL_STATE(2659)] = 131094, - [SMALL_STATE(2660)] = 131158, - [SMALL_STATE(2661)] = 131222, - [SMALL_STATE(2662)] = 131286, - [SMALL_STATE(2663)] = 131350, - [SMALL_STATE(2664)] = 131414, - [SMALL_STATE(2665)] = 131478, - [SMALL_STATE(2666)] = 131542, - [SMALL_STATE(2667)] = 131606, - [SMALL_STATE(2668)] = 131670, - [SMALL_STATE(2669)] = 131734, - [SMALL_STATE(2670)] = 131798, - [SMALL_STATE(2671)] = 131862, - [SMALL_STATE(2672)] = 131926, - [SMALL_STATE(2673)] = 131990, - [SMALL_STATE(2674)] = 132054, - [SMALL_STATE(2675)] = 132118, - [SMALL_STATE(2676)] = 132182, - [SMALL_STATE(2677)] = 132246, - [SMALL_STATE(2678)] = 132310, - [SMALL_STATE(2679)] = 132374, - [SMALL_STATE(2680)] = 132438, - [SMALL_STATE(2681)] = 132502, - [SMALL_STATE(2682)] = 132566, - [SMALL_STATE(2683)] = 132630, - [SMALL_STATE(2684)] = 132694, - [SMALL_STATE(2685)] = 132758, - [SMALL_STATE(2686)] = 132822, - [SMALL_STATE(2687)] = 132886, - [SMALL_STATE(2688)] = 132950, - [SMALL_STATE(2689)] = 133014, - [SMALL_STATE(2690)] = 133078, - [SMALL_STATE(2691)] = 133142, - [SMALL_STATE(2692)] = 133206, - [SMALL_STATE(2693)] = 133270, - [SMALL_STATE(2694)] = 133334, - [SMALL_STATE(2695)] = 133398, - [SMALL_STATE(2696)] = 133462, - [SMALL_STATE(2697)] = 133526, - [SMALL_STATE(2698)] = 133590, - [SMALL_STATE(2699)] = 133654, - [SMALL_STATE(2700)] = 133718, - [SMALL_STATE(2701)] = 133782, - [SMALL_STATE(2702)] = 133846, - [SMALL_STATE(2703)] = 133910, - [SMALL_STATE(2704)] = 133974, - [SMALL_STATE(2705)] = 134038, - [SMALL_STATE(2706)] = 134102, - [SMALL_STATE(2707)] = 134166, - [SMALL_STATE(2708)] = 134230, - [SMALL_STATE(2709)] = 134294, - [SMALL_STATE(2710)] = 134358, - [SMALL_STATE(2711)] = 134397, - [SMALL_STATE(2712)] = 134448, - [SMALL_STATE(2713)] = 134489, - [SMALL_STATE(2714)] = 134530, - [SMALL_STATE(2715)] = 134571, - [SMALL_STATE(2716)] = 134616, - [SMALL_STATE(2717)] = 134667, - [SMALL_STATE(2718)] = 134708, - [SMALL_STATE(2719)] = 134749, - [SMALL_STATE(2720)] = 134786, - [SMALL_STATE(2721)] = 134831, - [SMALL_STATE(2722)] = 134872, - [SMALL_STATE(2723)] = 134913, - [SMALL_STATE(2724)] = 134954, - [SMALL_STATE(2725)] = 134995, - [SMALL_STATE(2726)] = 135036, - [SMALL_STATE(2727)] = 135076, - [SMALL_STATE(2728)] = 135126, - [SMALL_STATE(2729)] = 135160, - [SMALL_STATE(2730)] = 135194, - [SMALL_STATE(2731)] = 135228, - [SMALL_STATE(2732)] = 135262, - [SMALL_STATE(2733)] = 135296, - [SMALL_STATE(2734)] = 135336, - [SMALL_STATE(2735)] = 135370, - [SMALL_STATE(2736)] = 135404, - [SMALL_STATE(2737)] = 135438, - [SMALL_STATE(2738)] = 135472, - [SMALL_STATE(2739)] = 135510, - [SMALL_STATE(2740)] = 135544, - [SMALL_STATE(2741)] = 135578, - [SMALL_STATE(2742)] = 135612, - [SMALL_STATE(2743)] = 135652, - [SMALL_STATE(2744)] = 135686, - [SMALL_STATE(2745)] = 135726, - [SMALL_STATE(2746)] = 135760, - [SMALL_STATE(2747)] = 135794, - [SMALL_STATE(2748)] = 135828, - [SMALL_STATE(2749)] = 135878, - [SMALL_STATE(2750)] = 135918, - [SMALL_STATE(2751)] = 135954, - [SMALL_STATE(2752)] = 135988, - [SMALL_STATE(2753)] = 136028, - [SMALL_STATE(2754)] = 136062, - [SMALL_STATE(2755)] = 136096, - [SMALL_STATE(2756)] = 136130, - [SMALL_STATE(2757)] = 136168, - [SMALL_STATE(2758)] = 136202, - [SMALL_STATE(2759)] = 136240, - [SMALL_STATE(2760)] = 136278, - [SMALL_STATE(2761)] = 136312, - [SMALL_STATE(2762)] = 136346, - [SMALL_STATE(2763)] = 136386, - [SMALL_STATE(2764)] = 136420, - [SMALL_STATE(2765)] = 136454, - [SMALL_STATE(2766)] = 136494, - [SMALL_STATE(2767)] = 136534, - [SMALL_STATE(2768)] = 136568, - [SMALL_STATE(2769)] = 136602, - [SMALL_STATE(2770)] = 136636, - [SMALL_STATE(2771)] = 136670, - [SMALL_STATE(2772)] = 136704, - [SMALL_STATE(2773)] = 136738, - [SMALL_STATE(2774)] = 136778, - [SMALL_STATE(2775)] = 136812, - [SMALL_STATE(2776)] = 136846, - [SMALL_STATE(2777)] = 136886, - [SMALL_STATE(2778)] = 136926, - [SMALL_STATE(2779)] = 136960, - [SMALL_STATE(2780)] = 137000, - [SMALL_STATE(2781)] = 137044, - [SMALL_STATE(2782)] = 137078, - [SMALL_STATE(2783)] = 137112, - [SMALL_STATE(2784)] = 137156, - [SMALL_STATE(2785)] = 137190, - [SMALL_STATE(2786)] = 137224, - [SMALL_STATE(2787)] = 137264, - [SMALL_STATE(2788)] = 137304, - [SMALL_STATE(2789)] = 137342, - [SMALL_STATE(2790)] = 137376, - [SMALL_STATE(2791)] = 137416, - [SMALL_STATE(2792)] = 137456, - [SMALL_STATE(2793)] = 137496, - [SMALL_STATE(2794)] = 137530, - [SMALL_STATE(2795)] = 137569, - [SMALL_STATE(2796)] = 137608, - [SMALL_STATE(2797)] = 137643, - [SMALL_STATE(2798)] = 137686, - [SMALL_STATE(2799)] = 137735, - [SMALL_STATE(2800)] = 137774, - [SMALL_STATE(2801)] = 137817, - [SMALL_STATE(2802)] = 137874, - [SMALL_STATE(2803)] = 137931, - [SMALL_STATE(2804)] = 137988, - [SMALL_STATE(2805)] = 138027, - [SMALL_STATE(2806)] = 138066, - [SMALL_STATE(2807)] = 138099, - [SMALL_STATE(2808)] = 138148, - [SMALL_STATE(2809)] = 138181, - [SMALL_STATE(2810)] = 138224, - [SMALL_STATE(2811)] = 138257, - [SMALL_STATE(2812)] = 138296, - [SMALL_STATE(2813)] = 138335, - [SMALL_STATE(2814)] = 138372, - [SMALL_STATE(2815)] = 138407, - [SMALL_STATE(2816)] = 138440, - [SMALL_STATE(2817)] = 138479, - [SMALL_STATE(2818)] = 138512, - [SMALL_STATE(2819)] = 138545, - [SMALL_STATE(2820)] = 138584, - [SMALL_STATE(2821)] = 138623, - [SMALL_STATE(2822)] = 138672, - [SMALL_STATE(2823)] = 138705, - [SMALL_STATE(2824)] = 138738, - [SMALL_STATE(2825)] = 138771, - [SMALL_STATE(2826)] = 138808, - [SMALL_STATE(2827)] = 138847, - [SMALL_STATE(2828)] = 138880, - [SMALL_STATE(2829)] = 138913, - [SMALL_STATE(2830)] = 138970, - [SMALL_STATE(2831)] = 139009, - [SMALL_STATE(2832)] = 139048, - [SMALL_STATE(2833)] = 139087, - [SMALL_STATE(2834)] = 139136, - [SMALL_STATE(2835)] = 139193, - [SMALL_STATE(2836)] = 139232, - [SMALL_STATE(2837)] = 139271, - [SMALL_STATE(2838)] = 139304, - [SMALL_STATE(2839)] = 139337, - [SMALL_STATE(2840)] = 139370, - [SMALL_STATE(2841)] = 139403, - [SMALL_STATE(2842)] = 139440, - [SMALL_STATE(2843)] = 139473, - [SMALL_STATE(2844)] = 139506, - [SMALL_STATE(2845)] = 139539, - [SMALL_STATE(2846)] = 139576, - [SMALL_STATE(2847)] = 139609, - [SMALL_STATE(2848)] = 139646, - [SMALL_STATE(2849)] = 139685, - [SMALL_STATE(2850)] = 139718, - [SMALL_STATE(2851)] = 139751, - [SMALL_STATE(2852)] = 139800, - [SMALL_STATE(2853)] = 139833, - [SMALL_STATE(2854)] = 139866, - [SMALL_STATE(2855)] = 139909, - [SMALL_STATE(2856)] = 139958, - [SMALL_STATE(2857)] = 139997, - [SMALL_STATE(2858)] = 140036, - [SMALL_STATE(2859)] = 140069, - [SMALL_STATE(2860)] = 140126, - [SMALL_STATE(2861)] = 140165, - [SMALL_STATE(2862)] = 140204, - [SMALL_STATE(2863)] = 140237, - [SMALL_STATE(2864)] = 140270, - [SMALL_STATE(2865)] = 140307, - [SMALL_STATE(2866)] = 140364, - [SMALL_STATE(2867)] = 140403, - [SMALL_STATE(2868)] = 140436, - [SMALL_STATE(2869)] = 140475, - [SMALL_STATE(2870)] = 140514, - [SMALL_STATE(2871)] = 140553, - [SMALL_STATE(2872)] = 140590, - [SMALL_STATE(2873)] = 140647, - [SMALL_STATE(2874)] = 140690, - [SMALL_STATE(2875)] = 140725, - [SMALL_STATE(2876)] = 140758, - [SMALL_STATE(2877)] = 140795, - [SMALL_STATE(2878)] = 140828, - [SMALL_STATE(2879)] = 140861, - [SMALL_STATE(2880)] = 140894, - [SMALL_STATE(2881)] = 140927, - [SMALL_STATE(2882)] = 140960, - [SMALL_STATE(2883)] = 141017, - [SMALL_STATE(2884)] = 141056, - [SMALL_STATE(2885)] = 141095, - [SMALL_STATE(2886)] = 141134, - [SMALL_STATE(2887)] = 141173, - [SMALL_STATE(2888)] = 141206, - [SMALL_STATE(2889)] = 141239, - [SMALL_STATE(2890)] = 141272, - [SMALL_STATE(2891)] = 141311, - [SMALL_STATE(2892)] = 141350, - [SMALL_STATE(2893)] = 141389, - [SMALL_STATE(2894)] = 141422, - [SMALL_STATE(2895)] = 141461, - [SMALL_STATE(2896)] = 141498, - [SMALL_STATE(2897)] = 141531, - [SMALL_STATE(2898)] = 141570, - [SMALL_STATE(2899)] = 141603, - [SMALL_STATE(2900)] = 141642, - [SMALL_STATE(2901)] = 141681, - [SMALL_STATE(2902)] = 141714, - [SMALL_STATE(2903)] = 141757, - [SMALL_STATE(2904)] = 141790, - [SMALL_STATE(2905)] = 141823, - [SMALL_STATE(2906)] = 141857, - [SMALL_STATE(2907)] = 141895, - [SMALL_STATE(2908)] = 141927, - [SMALL_STATE(2909)] = 141959, - [SMALL_STATE(2910)] = 142005, - [SMALL_STATE(2911)] = 142037, - [SMALL_STATE(2912)] = 142069, - [SMALL_STATE(2913)] = 142115, - [SMALL_STATE(2914)] = 142153, - [SMALL_STATE(2915)] = 142199, - [SMALL_STATE(2916)] = 142237, - [SMALL_STATE(2917)] = 142275, - [SMALL_STATE(2918)] = 142313, - [SMALL_STATE(2919)] = 142351, - [SMALL_STATE(2920)] = 142389, - [SMALL_STATE(2921)] = 142427, - [SMALL_STATE(2922)] = 142465, - [SMALL_STATE(2923)] = 142497, - [SMALL_STATE(2924)] = 142529, - [SMALL_STATE(2925)] = 142567, - [SMALL_STATE(2926)] = 142605, - [SMALL_STATE(2927)] = 142637, - [SMALL_STATE(2928)] = 142675, - [SMALL_STATE(2929)] = 142707, - [SMALL_STATE(2930)] = 142739, - [SMALL_STATE(2931)] = 142777, - [SMALL_STATE(2932)] = 142809, - [SMALL_STATE(2933)] = 142847, - [SMALL_STATE(2934)] = 142879, - [SMALL_STATE(2935)] = 142925, - [SMALL_STATE(2936)] = 142963, - [SMALL_STATE(2937)] = 143009, - [SMALL_STATE(2938)] = 143063, - [SMALL_STATE(2939)] = 143095, - [SMALL_STATE(2940)] = 143127, - [SMALL_STATE(2941)] = 143165, - [SMALL_STATE(2942)] = 143207, - [SMALL_STATE(2943)] = 143245, - [SMALL_STATE(2944)] = 143299, - [SMALL_STATE(2945)] = 143353, - [SMALL_STATE(2946)] = 143389, - [SMALL_STATE(2947)] = 143421, - [SMALL_STATE(2948)] = 143459, - [SMALL_STATE(2949)] = 143513, - [SMALL_STATE(2950)] = 143545, - [SMALL_STATE(2951)] = 143583, - [SMALL_STATE(2952)] = 143615, - [SMALL_STATE(2953)] = 143647, - [SMALL_STATE(2954)] = 143689, - [SMALL_STATE(2955)] = 143735, - [SMALL_STATE(2956)] = 143773, - [SMALL_STATE(2957)] = 143819, - [SMALL_STATE(2958)] = 143873, - [SMALL_STATE(2959)] = 143905, - [SMALL_STATE(2960)] = 143951, - [SMALL_STATE(2961)] = 143989, - [SMALL_STATE(2962)] = 144021, - [SMALL_STATE(2963)] = 144053, - [SMALL_STATE(2964)] = 144107, - [SMALL_STATE(2965)] = 144139, - [SMALL_STATE(2966)] = 144177, - [SMALL_STATE(2967)] = 144215, - [SMALL_STATE(2968)] = 144269, - [SMALL_STATE(2969)] = 144301, - [SMALL_STATE(2970)] = 144333, - [SMALL_STATE(2971)] = 144371, - [SMALL_STATE(2972)] = 144409, - [SMALL_STATE(2973)] = 144447, - [SMALL_STATE(2974)] = 144485, - [SMALL_STATE(2975)] = 144523, - [SMALL_STATE(2976)] = 144555, - [SMALL_STATE(2977)] = 144609, - [SMALL_STATE(2978)] = 144647, - [SMALL_STATE(2979)] = 144701, - [SMALL_STATE(2980)] = 144733, - [SMALL_STATE(2981)] = 144765, - [SMALL_STATE(2982)] = 144797, - [SMALL_STATE(2983)] = 144829, - [SMALL_STATE(2984)] = 144867, - [SMALL_STATE(2985)] = 144898, - [SMALL_STATE(2986)] = 144929, - [SMALL_STATE(2987)] = 144960, - [SMALL_STATE(2988)] = 144995, - [SMALL_STATE(2989)] = 145026, - [SMALL_STATE(2990)] = 145063, - [SMALL_STATE(2991)] = 145094, - [SMALL_STATE(2992)] = 145125, - [SMALL_STATE(2993)] = 145156, - [SMALL_STATE(2994)] = 145187, - [SMALL_STATE(2995)] = 145218, - [SMALL_STATE(2996)] = 145249, - [SMALL_STATE(2997)] = 145280, - [SMALL_STATE(2998)] = 145311, - [SMALL_STATE(2999)] = 145348, - [SMALL_STATE(3000)] = 145383, - [SMALL_STATE(3001)] = 145414, - [SMALL_STATE(3002)] = 145445, - [SMALL_STATE(3003)] = 145476, - [SMALL_STATE(3004)] = 145507, - [SMALL_STATE(3005)] = 145538, - [SMALL_STATE(3006)] = 145573, - [SMALL_STATE(3007)] = 145610, - [SMALL_STATE(3008)] = 145647, - [SMALL_STATE(3009)] = 145678, - [SMALL_STATE(3010)] = 145709, - [SMALL_STATE(3011)] = 145746, - [SMALL_STATE(3012)] = 145777, - [SMALL_STATE(3013)] = 145808, - [SMALL_STATE(3014)] = 145839, - [SMALL_STATE(3015)] = 145870, - [SMALL_STATE(3016)] = 145901, - [SMALL_STATE(3017)] = 145938, - [SMALL_STATE(3018)] = 145975, - [SMALL_STATE(3019)] = 146006, - [SMALL_STATE(3020)] = 146037, - [SMALL_STATE(3021)] = 146074, - [SMALL_STATE(3022)] = 146105, - [SMALL_STATE(3023)] = 146136, - [SMALL_STATE(3024)] = 146167, - [SMALL_STATE(3025)] = 146204, - [SMALL_STATE(3026)] = 146235, - [SMALL_STATE(3027)] = 146266, - [SMALL_STATE(3028)] = 146297, - [SMALL_STATE(3029)] = 146328, - [SMALL_STATE(3030)] = 146359, - [SMALL_STATE(3031)] = 146396, - [SMALL_STATE(3032)] = 146427, - [SMALL_STATE(3033)] = 146464, - [SMALL_STATE(3034)] = 146495, - [SMALL_STATE(3035)] = 146532, - [SMALL_STATE(3036)] = 146563, - [SMALL_STATE(3037)] = 146594, - [SMALL_STATE(3038)] = 146625, - [SMALL_STATE(3039)] = 146656, - [SMALL_STATE(3040)] = 146687, - [SMALL_STATE(3041)] = 146718, - [SMALL_STATE(3042)] = 146749, - [SMALL_STATE(3043)] = 146780, - [SMALL_STATE(3044)] = 146811, - [SMALL_STATE(3045)] = 146842, - [SMALL_STATE(3046)] = 146873, - [SMALL_STATE(3047)] = 146904, - [SMALL_STATE(3048)] = 146951, - [SMALL_STATE(3049)] = 146982, - [SMALL_STATE(3050)] = 147019, - [SMALL_STATE(3051)] = 147050, - [SMALL_STATE(3052)] = 147081, - [SMALL_STATE(3053)] = 147112, - [SMALL_STATE(3054)] = 147143, - [SMALL_STATE(3055)] = 147174, - [SMALL_STATE(3056)] = 147205, - [SMALL_STATE(3057)] = 147236, - [SMALL_STATE(3058)] = 147267, - [SMALL_STATE(3059)] = 147298, - [SMALL_STATE(3060)] = 147335, - [SMALL_STATE(3061)] = 147372, - [SMALL_STATE(3062)] = 147403, - [SMALL_STATE(3063)] = 147434, - [SMALL_STATE(3064)] = 147465, - [SMALL_STATE(3065)] = 147496, - [SMALL_STATE(3066)] = 147527, - [SMALL_STATE(3067)] = 147558, - [SMALL_STATE(3068)] = 147589, - [SMALL_STATE(3069)] = 147620, - [SMALL_STATE(3070)] = 147651, - [SMALL_STATE(3071)] = 147682, - [SMALL_STATE(3072)] = 147713, - [SMALL_STATE(3073)] = 147744, - [SMALL_STATE(3074)] = 147775, - [SMALL_STATE(3075)] = 147806, - [SMALL_STATE(3076)] = 147837, - [SMALL_STATE(3077)] = 147868, - [SMALL_STATE(3078)] = 147903, - [SMALL_STATE(3079)] = 147934, - [SMALL_STATE(3080)] = 147965, - [SMALL_STATE(3081)] = 147996, - [SMALL_STATE(3082)] = 148027, - [SMALL_STATE(3083)] = 148058, - [SMALL_STATE(3084)] = 148095, - [SMALL_STATE(3085)] = 148126, - [SMALL_STATE(3086)] = 148157, - [SMALL_STATE(3087)] = 148188, - [SMALL_STATE(3088)] = 148219, - [SMALL_STATE(3089)] = 148250, - [SMALL_STATE(3090)] = 148281, - [SMALL_STATE(3091)] = 148316, - [SMALL_STATE(3092)] = 148353, - [SMALL_STATE(3093)] = 148384, - [SMALL_STATE(3094)] = 148419, - [SMALL_STATE(3095)] = 148455, - [SMALL_STATE(3096)] = 148485, - [SMALL_STATE(3097)] = 148521, - [SMALL_STATE(3098)] = 148555, - [SMALL_STATE(3099)] = 148589, - [SMALL_STATE(3100)] = 148625, - [SMALL_STATE(3101)] = 148655, - [SMALL_STATE(3102)] = 148691, - [SMALL_STATE(3103)] = 148725, - [SMALL_STATE(3104)] = 148761, - [SMALL_STATE(3105)] = 148791, - [SMALL_STATE(3106)] = 148821, - [SMALL_STATE(3107)] = 148871, - [SMALL_STATE(3108)] = 148901, - [SMALL_STATE(3109)] = 148951, - [SMALL_STATE(3110)] = 148981, - [SMALL_STATE(3111)] = 149017, - [SMALL_STATE(3112)] = 149053, - [SMALL_STATE(3113)] = 149083, - [SMALL_STATE(3114)] = 149113, - [SMALL_STATE(3115)] = 149147, - [SMALL_STATE(3116)] = 149177, - [SMALL_STATE(3117)] = 149213, - [SMALL_STATE(3118)] = 149243, - [SMALL_STATE(3119)] = 149273, - [SMALL_STATE(3120)] = 149309, - [SMALL_STATE(3121)] = 149345, - [SMALL_STATE(3122)] = 149375, - [SMALL_STATE(3123)] = 149405, - [SMALL_STATE(3124)] = 149441, - [SMALL_STATE(3125)] = 149477, - [SMALL_STATE(3126)] = 149507, - [SMALL_STATE(3127)] = 149557, - [SMALL_STATE(3128)] = 149607, - [SMALL_STATE(3129)] = 149657, - [SMALL_STATE(3130)] = 149693, - [SMALL_STATE(3131)] = 149723, - [SMALL_STATE(3132)] = 149773, - [SMALL_STATE(3133)] = 149803, - [SMALL_STATE(3134)] = 149833, - [SMALL_STATE(3135)] = 149869, - [SMALL_STATE(3136)] = 149905, - [SMALL_STATE(3137)] = 149941, - [SMALL_STATE(3138)] = 149971, - [SMALL_STATE(3139)] = 150007, - [SMALL_STATE(3140)] = 150043, - [SMALL_STATE(3141)] = 150073, - [SMALL_STATE(3142)] = 150103, - [SMALL_STATE(3143)] = 150133, - [SMALL_STATE(3144)] = 150169, - [SMALL_STATE(3145)] = 150220, - [SMALL_STATE(3146)] = 150271, - [SMALL_STATE(3147)] = 150322, - [SMALL_STATE(3148)] = 150373, - [SMALL_STATE(3149)] = 150416, - [SMALL_STATE(3150)] = 150447, - [SMALL_STATE(3151)] = 150476, - [SMALL_STATE(3152)] = 150511, - [SMALL_STATE(3153)] = 150562, - [SMALL_STATE(3154)] = 150591, - [SMALL_STATE(3155)] = 150642, - [SMALL_STATE(3156)] = 150673, - [SMALL_STATE(3157)] = 150724, - [SMALL_STATE(3158)] = 150759, - [SMALL_STATE(3159)] = 150790, - [SMALL_STATE(3160)] = 150841, - [SMALL_STATE(3161)] = 150872, - [SMALL_STATE(3162)] = 150901, - [SMALL_STATE(3163)] = 150936, - [SMALL_STATE(3164)] = 150987, - [SMALL_STATE(3165)] = 151038, - [SMALL_STATE(3166)] = 151089, - [SMALL_STATE(3167)] = 151140, - [SMALL_STATE(3168)] = 151169, - [SMALL_STATE(3169)] = 151200, - [SMALL_STATE(3170)] = 151235, - [SMALL_STATE(3171)] = 151264, - [SMALL_STATE(3172)] = 151293, - [SMALL_STATE(3173)] = 151344, - [SMALL_STATE(3174)] = 151395, - [SMALL_STATE(3175)] = 151424, - [SMALL_STATE(3176)] = 151455, - [SMALL_STATE(3177)] = 151506, - [SMALL_STATE(3178)] = 151537, - [SMALL_STATE(3179)] = 151566, - [SMALL_STATE(3180)] = 151601, - [SMALL_STATE(3181)] = 151630, - [SMALL_STATE(3182)] = 151681, - [SMALL_STATE(3183)] = 151732, - [SMALL_STATE(3184)] = 151761, - [SMALL_STATE(3185)] = 151812, - [SMALL_STATE(3186)] = 151863, - [SMALL_STATE(3187)] = 151898, - [SMALL_STATE(3188)] = 151949, - [SMALL_STATE(3189)] = 151980, - [SMALL_STATE(3190)] = 152011, - [SMALL_STATE(3191)] = 152042, - [SMALL_STATE(3192)] = 152093, - [SMALL_STATE(3193)] = 152144, - [SMALL_STATE(3194)] = 152195, - [SMALL_STATE(3195)] = 152246, - [SMALL_STATE(3196)] = 152277, - [SMALL_STATE(3197)] = 152328, - [SMALL_STATE(3198)] = 152379, - [SMALL_STATE(3199)] = 152430, - [SMALL_STATE(3200)] = 152461, - [SMALL_STATE(3201)] = 152512, - [SMALL_STATE(3202)] = 152563, - [SMALL_STATE(3203)] = 152594, - [SMALL_STATE(3204)] = 152641, - [SMALL_STATE(3205)] = 152672, - [SMALL_STATE(3206)] = 152723, - [SMALL_STATE(3207)] = 152752, - [SMALL_STATE(3208)] = 152803, - [SMALL_STATE(3209)] = 152854, - [SMALL_STATE(3210)] = 152883, - [SMALL_STATE(3211)] = 152930, - [SMALL_STATE(3212)] = 152961, - [SMALL_STATE(3213)] = 152990, - [SMALL_STATE(3214)] = 153041, - [SMALL_STATE(3215)] = 153074, - [SMALL_STATE(3216)] = 153117, - [SMALL_STATE(3217)] = 153168, - [SMALL_STATE(3218)] = 153201, - [SMALL_STATE(3219)] = 153232, - [SMALL_STATE(3220)] = 153283, - [SMALL_STATE(3221)] = 153334, - [SMALL_STATE(3222)] = 153373, - [SMALL_STATE(3223)] = 153402, - [SMALL_STATE(3224)] = 153453, - [SMALL_STATE(3225)] = 153494, - [SMALL_STATE(3226)] = 153525, - [SMALL_STATE(3227)] = 153564, - [SMALL_STATE(3228)] = 153593, - [SMALL_STATE(3229)] = 153644, - [SMALL_STATE(3230)] = 153673, - [SMALL_STATE(3231)] = 153702, - [SMALL_STATE(3232)] = 153731, - [SMALL_STATE(3233)] = 153782, - [SMALL_STATE(3234)] = 153817, - [SMALL_STATE(3235)] = 153852, - [SMALL_STATE(3236)] = 153881, - [SMALL_STATE(3237)] = 153916, - [SMALL_STATE(3238)] = 153967, - [SMALL_STATE(3239)] = 153998, - [SMALL_STATE(3240)] = 154031, - [SMALL_STATE(3241)] = 154082, - [SMALL_STATE(3242)] = 154113, - [SMALL_STATE(3243)] = 154164, - [SMALL_STATE(3244)] = 154215, - [SMALL_STATE(3245)] = 154266, - [SMALL_STATE(3246)] = 154295, - [SMALL_STATE(3247)] = 154346, - [SMALL_STATE(3248)] = 154397, - [SMALL_STATE(3249)] = 154448, - [SMALL_STATE(3250)] = 154499, - [SMALL_STATE(3251)] = 154530, - [SMALL_STATE(3252)] = 154561, - [SMALL_STATE(3253)] = 154612, - [SMALL_STATE(3254)] = 154643, - [SMALL_STATE(3255)] = 154674, - [SMALL_STATE(3256)] = 154725, - [SMALL_STATE(3257)] = 154756, - [SMALL_STATE(3258)] = 154807, - [SMALL_STATE(3259)] = 154858, - [SMALL_STATE(3260)] = 154909, - [SMALL_STATE(3261)] = 154942, - [SMALL_STATE(3262)] = 154993, - [SMALL_STATE(3263)] = 155028, - [SMALL_STATE(3264)] = 155079, - [SMALL_STATE(3265)] = 155130, - [SMALL_STATE(3266)] = 155177, - [SMALL_STATE(3267)] = 155228, - [SMALL_STATE(3268)] = 155259, - [SMALL_STATE(3269)] = 155310, - [SMALL_STATE(3270)] = 155343, - [SMALL_STATE(3271)] = 155394, - [SMALL_STATE(3272)] = 155445, - [SMALL_STATE(3273)] = 155496, - [SMALL_STATE(3274)] = 155547, - [SMALL_STATE(3275)] = 155598, - [SMALL_STATE(3276)] = 155646, - [SMALL_STATE(3277)] = 155674, - [SMALL_STATE(3278)] = 155722, - [SMALL_STATE(3279)] = 155770, - [SMALL_STATE(3280)] = 155818, - [SMALL_STATE(3281)] = 155866, - [SMALL_STATE(3282)] = 155914, - [SMALL_STATE(3283)] = 155942, - [SMALL_STATE(3284)] = 155990, - [SMALL_STATE(3285)] = 156038, - [SMALL_STATE(3286)] = 156066, - [SMALL_STATE(3287)] = 156098, - [SMALL_STATE(3288)] = 156126, - [SMALL_STATE(3289)] = 156174, - [SMALL_STATE(3290)] = 156208, - [SMALL_STATE(3291)] = 156236, - [SMALL_STATE(3292)] = 156284, - [SMALL_STATE(3293)] = 156312, - [SMALL_STATE(3294)] = 156360, - [SMALL_STATE(3295)] = 156394, - [SMALL_STATE(3296)] = 156442, - [SMALL_STATE(3297)] = 156490, - [SMALL_STATE(3298)] = 156538, - [SMALL_STATE(3299)] = 156586, - [SMALL_STATE(3300)] = 156614, - [SMALL_STATE(3301)] = 156642, - [SMALL_STATE(3302)] = 156690, - [SMALL_STATE(3303)] = 156734, - [SMALL_STATE(3304)] = 156762, - [SMALL_STATE(3305)] = 156790, - [SMALL_STATE(3306)] = 156838, - [SMALL_STATE(3307)] = 156866, - [SMALL_STATE(3308)] = 156914, - [SMALL_STATE(3309)] = 156962, - [SMALL_STATE(3310)] = 157010, - [SMALL_STATE(3311)] = 157038, - [SMALL_STATE(3312)] = 157086, - [SMALL_STATE(3313)] = 157134, - [SMALL_STATE(3314)] = 157162, - [SMALL_STATE(3315)] = 157190, - [SMALL_STATE(3316)] = 157238, - [SMALL_STATE(3317)] = 157266, - [SMALL_STATE(3318)] = 157314, - [SMALL_STATE(3319)] = 157342, - [SMALL_STATE(3320)] = 157370, - [SMALL_STATE(3321)] = 157398, - [SMALL_STATE(3322)] = 157446, - [SMALL_STATE(3323)] = 157494, - [SMALL_STATE(3324)] = 157542, - [SMALL_STATE(3325)] = 157590, - [SMALL_STATE(3326)] = 157638, - [SMALL_STATE(3327)] = 157686, - [SMALL_STATE(3328)] = 157734, - [SMALL_STATE(3329)] = 157762, - [SMALL_STATE(3330)] = 157810, - [SMALL_STATE(3331)] = 157844, - [SMALL_STATE(3332)] = 157892, - [SMALL_STATE(3333)] = 157926, - [SMALL_STATE(3334)] = 157974, - [SMALL_STATE(3335)] = 158008, - [SMALL_STATE(3336)] = 158056, - [SMALL_STATE(3337)] = 158084, - [SMALL_STATE(3338)] = 158112, - [SMALL_STATE(3339)] = 158160, - [SMALL_STATE(3340)] = 158208, - [SMALL_STATE(3341)] = 158256, - [SMALL_STATE(3342)] = 158304, - [SMALL_STATE(3343)] = 158352, - [SMALL_STATE(3344)] = 158400, - [SMALL_STATE(3345)] = 158428, - [SMALL_STATE(3346)] = 158470, - [SMALL_STATE(3347)] = 158498, - [SMALL_STATE(3348)] = 158546, - [SMALL_STATE(3349)] = 158594, - [SMALL_STATE(3350)] = 158642, - [SMALL_STATE(3351)] = 158690, - [SMALL_STATE(3352)] = 158738, - [SMALL_STATE(3353)] = 158786, - [SMALL_STATE(3354)] = 158834, - [SMALL_STATE(3355)] = 158882, - [SMALL_STATE(3356)] = 158914, - [SMALL_STATE(3357)] = 158962, - [SMALL_STATE(3358)] = 159010, - [SMALL_STATE(3359)] = 159058, - [SMALL_STATE(3360)] = 159106, - [SMALL_STATE(3361)] = 159136, - [SMALL_STATE(3362)] = 159184, - [SMALL_STATE(3363)] = 159212, - [SMALL_STATE(3364)] = 159240, - [SMALL_STATE(3365)] = 159272, - [SMALL_STATE(3366)] = 159300, - [SMALL_STATE(3367)] = 159348, - [SMALL_STATE(3368)] = 159396, - [SMALL_STATE(3369)] = 159430, - [SMALL_STATE(3370)] = 159478, - [SMALL_STATE(3371)] = 159522, - [SMALL_STATE(3372)] = 159556, - [SMALL_STATE(3373)] = 159604, - [SMALL_STATE(3374)] = 159632, - [SMALL_STATE(3375)] = 159660, - [SMALL_STATE(3376)] = 159708, - [SMALL_STATE(3377)] = 159756, - [SMALL_STATE(3378)] = 159804, - [SMALL_STATE(3379)] = 159852, - [SMALL_STATE(3380)] = 159880, - [SMALL_STATE(3381)] = 159928, - [SMALL_STATE(3382)] = 159976, - [SMALL_STATE(3383)] = 160008, - [SMALL_STATE(3384)] = 160040, - [SMALL_STATE(3385)] = 160088, - [SMALL_STATE(3386)] = 160116, - [SMALL_STATE(3387)] = 160150, - [SMALL_STATE(3388)] = 160178, - [SMALL_STATE(3389)] = 160206, - [SMALL_STATE(3390)] = 160254, - [SMALL_STATE(3391)] = 160302, - [SMALL_STATE(3392)] = 160330, - [SMALL_STATE(3393)] = 160378, - [SMALL_STATE(3394)] = 160426, - [SMALL_STATE(3395)] = 160474, - [SMALL_STATE(3396)] = 160522, - [SMALL_STATE(3397)] = 160550, - [SMALL_STATE(3398)] = 160578, - [SMALL_STATE(3399)] = 160606, - [SMALL_STATE(3400)] = 160634, - [SMALL_STATE(3401)] = 160662, - [SMALL_STATE(3402)] = 160710, - [SMALL_STATE(3403)] = 160758, - [SMALL_STATE(3404)] = 160806, - [SMALL_STATE(3405)] = 160834, - [SMALL_STATE(3406)] = 160882, - [SMALL_STATE(3407)] = 160916, - [SMALL_STATE(3408)] = 160944, - [SMALL_STATE(3409)] = 160972, - [SMALL_STATE(3410)] = 161020, - [SMALL_STATE(3411)] = 161048, - [SMALL_STATE(3412)] = 161096, - [SMALL_STATE(3413)] = 161128, - [SMALL_STATE(3414)] = 161176, - [SMALL_STATE(3415)] = 161224, - [SMALL_STATE(3416)] = 161252, - [SMALL_STATE(3417)] = 161284, - [SMALL_STATE(3418)] = 161312, - [SMALL_STATE(3419)] = 161344, - [SMALL_STATE(3420)] = 161392, - [SMALL_STATE(3421)] = 161420, - [SMALL_STATE(3422)] = 161468, - [SMALL_STATE(3423)] = 161516, - [SMALL_STATE(3424)] = 161548, - [SMALL_STATE(3425)] = 161596, - [SMALL_STATE(3426)] = 161644, - [SMALL_STATE(3427)] = 161672, - [SMALL_STATE(3428)] = 161720, - [SMALL_STATE(3429)] = 161768, - [SMALL_STATE(3430)] = 161796, - [SMALL_STATE(3431)] = 161828, - [SMALL_STATE(3432)] = 161876, - [SMALL_STATE(3433)] = 161908, - [SMALL_STATE(3434)] = 161942, - [SMALL_STATE(3435)] = 161990, - [SMALL_STATE(3436)] = 162038, - [SMALL_STATE(3437)] = 162072, - [SMALL_STATE(3438)] = 162100, - [SMALL_STATE(3439)] = 162148, - [SMALL_STATE(3440)] = 162196, - [SMALL_STATE(3441)] = 162244, - [SMALL_STATE(3442)] = 162272, - [SMALL_STATE(3443)] = 162300, - [SMALL_STATE(3444)] = 162334, - [SMALL_STATE(3445)] = 162382, - [SMALL_STATE(3446)] = 162430, - [SMALL_STATE(3447)] = 162478, - [SMALL_STATE(3448)] = 162506, - [SMALL_STATE(3449)] = 162534, - [SMALL_STATE(3450)] = 162562, - [SMALL_STATE(3451)] = 162610, - [SMALL_STATE(3452)] = 162652, - [SMALL_STATE(3453)] = 162700, - [SMALL_STATE(3454)] = 162748, - [SMALL_STATE(3455)] = 162796, - [SMALL_STATE(3456)] = 162824, - [SMALL_STATE(3457)] = 162872, - [SMALL_STATE(3458)] = 162900, - [SMALL_STATE(3459)] = 162928, - [SMALL_STATE(3460)] = 162976, - [SMALL_STATE(3461)] = 163004, - [SMALL_STATE(3462)] = 163032, - [SMALL_STATE(3463)] = 163080, - [SMALL_STATE(3464)] = 163108, - [SMALL_STATE(3465)] = 163136, - [SMALL_STATE(3466)] = 163170, - [SMALL_STATE(3467)] = 163218, - [SMALL_STATE(3468)] = 163266, - [SMALL_STATE(3469)] = 163294, - [SMALL_STATE(3470)] = 163342, - [SMALL_STATE(3471)] = 163390, - [SMALL_STATE(3472)] = 163418, - [SMALL_STATE(3473)] = 163466, - [SMALL_STATE(3474)] = 163494, - [SMALL_STATE(3475)] = 163542, - [SMALL_STATE(3476)] = 163570, - [SMALL_STATE(3477)] = 163618, - [SMALL_STATE(3478)] = 163666, - [SMALL_STATE(3479)] = 163694, - [SMALL_STATE(3480)] = 163742, - [SMALL_STATE(3481)] = 163770, - [SMALL_STATE(3482)] = 163818, - [SMALL_STATE(3483)] = 163846, - [SMALL_STATE(3484)] = 163873, - [SMALL_STATE(3485)] = 163900, - [SMALL_STATE(3486)] = 163931, - [SMALL_STATE(3487)] = 163958, - [SMALL_STATE(3488)] = 163991, - [SMALL_STATE(3489)] = 164024, - [SMALL_STATE(3490)] = 164051, - [SMALL_STATE(3491)] = 164084, - [SMALL_STATE(3492)] = 164111, - [SMALL_STATE(3493)] = 164142, - [SMALL_STATE(3494)] = 164169, - [SMALL_STATE(3495)] = 164200, - [SMALL_STATE(3496)] = 164233, - [SMALL_STATE(3497)] = 164260, - [SMALL_STATE(3498)] = 164291, - [SMALL_STATE(3499)] = 164318, - [SMALL_STATE(3500)] = 164349, - [SMALL_STATE(3501)] = 164376, - [SMALL_STATE(3502)] = 164407, - [SMALL_STATE(3503)] = 164438, - [SMALL_STATE(3504)] = 164465, - [SMALL_STATE(3505)] = 164492, - [SMALL_STATE(3506)] = 164519, - [SMALL_STATE(3507)] = 164546, - [SMALL_STATE(3508)] = 164581, - [SMALL_STATE(3509)] = 164608, - [SMALL_STATE(3510)] = 164635, - [SMALL_STATE(3511)] = 164666, - [SMALL_STATE(3512)] = 164697, - [SMALL_STATE(3513)] = 164724, - [SMALL_STATE(3514)] = 164751, - [SMALL_STATE(3515)] = 164778, - [SMALL_STATE(3516)] = 164805, - [SMALL_STATE(3517)] = 164836, - [SMALL_STATE(3518)] = 164863, - [SMALL_STATE(3519)] = 164890, - [SMALL_STATE(3520)] = 164917, - [SMALL_STATE(3521)] = 164944, - [SMALL_STATE(3522)] = 164971, - [SMALL_STATE(3523)] = 164998, - [SMALL_STATE(3524)] = 165025, - [SMALL_STATE(3525)] = 165052, - [SMALL_STATE(3526)] = 165079, - [SMALL_STATE(3527)] = 165106, - [SMALL_STATE(3528)] = 165133, - [SMALL_STATE(3529)] = 165160, - [SMALL_STATE(3530)] = 165187, - [SMALL_STATE(3531)] = 165214, - [SMALL_STATE(3532)] = 165241, - [SMALL_STATE(3533)] = 165268, - [SMALL_STATE(3534)] = 165303, - [SMALL_STATE(3535)] = 165330, - [SMALL_STATE(3536)] = 165357, - [SMALL_STATE(3537)] = 165384, - [SMALL_STATE(3538)] = 165411, - [SMALL_STATE(3539)] = 165438, - [SMALL_STATE(3540)] = 165465, - [SMALL_STATE(3541)] = 165491, - [SMALL_STATE(3542)] = 165517, - [SMALL_STATE(3543)] = 165543, - [SMALL_STATE(3544)] = 165569, - [SMALL_STATE(3545)] = 165595, - [SMALL_STATE(3546)] = 165621, - [SMALL_STATE(3547)] = 165651, - [SMALL_STATE(3548)] = 165683, - [SMALL_STATE(3549)] = 165709, - [SMALL_STATE(3550)] = 165735, - [SMALL_STATE(3551)] = 165761, - [SMALL_STATE(3552)] = 165791, - [SMALL_STATE(3553)] = 165817, - [SMALL_STATE(3554)] = 165843, - [SMALL_STATE(3555)] = 165875, - [SMALL_STATE(3556)] = 165901, - [SMALL_STATE(3557)] = 165927, - [SMALL_STATE(3558)] = 165953, - [SMALL_STATE(3559)] = 165987, - [SMALL_STATE(3560)] = 166013, - [SMALL_STATE(3561)] = 166043, - [SMALL_STATE(3562)] = 166075, - [SMALL_STATE(3563)] = 166101, - [SMALL_STATE(3564)] = 166127, - [SMALL_STATE(3565)] = 166153, - [SMALL_STATE(3566)] = 166179, - [SMALL_STATE(3567)] = 166211, - [SMALL_STATE(3568)] = 166243, - [SMALL_STATE(3569)] = 166277, - [SMALL_STATE(3570)] = 166303, - [SMALL_STATE(3571)] = 166329, - [SMALL_STATE(3572)] = 166355, - [SMALL_STATE(3573)] = 166380, - [SMALL_STATE(3574)] = 166409, - [SMALL_STATE(3575)] = 166434, - [SMALL_STATE(3576)] = 166459, - [SMALL_STATE(3577)] = 166492, - [SMALL_STATE(3578)] = 166517, - [SMALL_STATE(3579)] = 166542, - [SMALL_STATE(3580)] = 166567, - [SMALL_STATE(3581)] = 166592, - [SMALL_STATE(3582)] = 166617, - [SMALL_STATE(3583)] = 166650, - [SMALL_STATE(3584)] = 166675, - [SMALL_STATE(3585)] = 166700, - [SMALL_STATE(3586)] = 166725, - [SMALL_STATE(3587)] = 166758, - [SMALL_STATE(3588)] = 166783, - [SMALL_STATE(3589)] = 166807, - [SMALL_STATE(3590)] = 166831, - [SMALL_STATE(3591)] = 166855, - [SMALL_STATE(3592)] = 166879, - [SMALL_STATE(3593)] = 166903, - [SMALL_STATE(3594)] = 166927, - [SMALL_STATE(3595)] = 166951, - [SMALL_STATE(3596)] = 166975, - [SMALL_STATE(3597)] = 166999, - [SMALL_STATE(3598)] = 167023, - [SMALL_STATE(3599)] = 167047, - [SMALL_STATE(3600)] = 167071, - [SMALL_STATE(3601)] = 167095, - [SMALL_STATE(3602)] = 167119, - [SMALL_STATE(3603)] = 167143, - [SMALL_STATE(3604)] = 167167, - [SMALL_STATE(3605)] = 167191, - [SMALL_STATE(3606)] = 167215, - [SMALL_STATE(3607)] = 167239, - [SMALL_STATE(3608)] = 167263, - [SMALL_STATE(3609)] = 167287, - [SMALL_STATE(3610)] = 167311, - [SMALL_STATE(3611)] = 167335, - [SMALL_STATE(3612)] = 167359, - [SMALL_STATE(3613)] = 167383, - [SMALL_STATE(3614)] = 167407, - [SMALL_STATE(3615)] = 167431, - [SMALL_STATE(3616)] = 167455, - [SMALL_STATE(3617)] = 167479, - [SMALL_STATE(3618)] = 167503, - [SMALL_STATE(3619)] = 167527, - [SMALL_STATE(3620)] = 167551, - [SMALL_STATE(3621)] = 167575, - [SMALL_STATE(3622)] = 167599, - [SMALL_STATE(3623)] = 167623, - [SMALL_STATE(3624)] = 167647, - [SMALL_STATE(3625)] = 167671, - [SMALL_STATE(3626)] = 167695, - [SMALL_STATE(3627)] = 167719, - [SMALL_STATE(3628)] = 167743, - [SMALL_STATE(3629)] = 167767, - [SMALL_STATE(3630)] = 167791, - [SMALL_STATE(3631)] = 167815, - [SMALL_STATE(3632)] = 167844, - [SMALL_STATE(3633)] = 167873, - [SMALL_STATE(3634)] = 167902, - [SMALL_STATE(3635)] = 167931, - [SMALL_STATE(3636)] = 167969, - [SMALL_STATE(3637)] = 168007, - [SMALL_STATE(3638)] = 168045, - [SMALL_STATE(3639)] = 168083, - [SMALL_STATE(3640)] = 168121, - [SMALL_STATE(3641)] = 168159, - [SMALL_STATE(3642)] = 168197, - [SMALL_STATE(3643)] = 168235, - [SMALL_STATE(3644)] = 168273, - [SMALL_STATE(3645)] = 168311, - [SMALL_STATE(3646)] = 168349, - [SMALL_STATE(3647)] = 168387, - [SMALL_STATE(3648)] = 168425, - [SMALL_STATE(3649)] = 168463, - [SMALL_STATE(3650)] = 168501, - [SMALL_STATE(3651)] = 168539, - [SMALL_STATE(3652)] = 168577, - [SMALL_STATE(3653)] = 168615, - [SMALL_STATE(3654)] = 168653, - [SMALL_STATE(3655)] = 168691, - [SMALL_STATE(3656)] = 168729, - [SMALL_STATE(3657)] = 168767, - [SMALL_STATE(3658)] = 168805, - [SMALL_STATE(3659)] = 168843, - [SMALL_STATE(3660)] = 168881, - [SMALL_STATE(3661)] = 168919, - [SMALL_STATE(3662)] = 168957, - [SMALL_STATE(3663)] = 168995, - [SMALL_STATE(3664)] = 169033, - [SMALL_STATE(3665)] = 169071, - [SMALL_STATE(3666)] = 169109, - [SMALL_STATE(3667)] = 169147, - [SMALL_STATE(3668)] = 169185, - [SMALL_STATE(3669)] = 169223, - [SMALL_STATE(3670)] = 169261, - [SMALL_STATE(3671)] = 169299, - [SMALL_STATE(3672)] = 169337, - [SMALL_STATE(3673)] = 169375, - [SMALL_STATE(3674)] = 169413, - [SMALL_STATE(3675)] = 169451, - [SMALL_STATE(3676)] = 169489, - [SMALL_STATE(3677)] = 169527, - [SMALL_STATE(3678)] = 169565, - [SMALL_STATE(3679)] = 169603, - [SMALL_STATE(3680)] = 169641, - [SMALL_STATE(3681)] = 169679, - [SMALL_STATE(3682)] = 169717, - [SMALL_STATE(3683)] = 169755, - [SMALL_STATE(3684)] = 169793, - [SMALL_STATE(3685)] = 169831, - [SMALL_STATE(3686)] = 169869, - [SMALL_STATE(3687)] = 169907, - [SMALL_STATE(3688)] = 169945, - [SMALL_STATE(3689)] = 169983, - [SMALL_STATE(3690)] = 170021, - [SMALL_STATE(3691)] = 170049, - [SMALL_STATE(3692)] = 170077, - [SMALL_STATE(3693)] = 170115, - [SMALL_STATE(3694)] = 170153, - [SMALL_STATE(3695)] = 170191, - [SMALL_STATE(3696)] = 170229, - [SMALL_STATE(3697)] = 170267, - [SMALL_STATE(3698)] = 170295, - [SMALL_STATE(3699)] = 170333, - [SMALL_STATE(3700)] = 170371, - [SMALL_STATE(3701)] = 170409, - [SMALL_STATE(3702)] = 170447, - [SMALL_STATE(3703)] = 170485, - [SMALL_STATE(3704)] = 170523, - [SMALL_STATE(3705)] = 170561, - [SMALL_STATE(3706)] = 170599, - [SMALL_STATE(3707)] = 170637, - [SMALL_STATE(3708)] = 170675, - [SMALL_STATE(3709)] = 170713, - [SMALL_STATE(3710)] = 170741, - [SMALL_STATE(3711)] = 170779, - [SMALL_STATE(3712)] = 170817, - [SMALL_STATE(3713)] = 170855, - [SMALL_STATE(3714)] = 170893, - [SMALL_STATE(3715)] = 170931, - [SMALL_STATE(3716)] = 170969, - [SMALL_STATE(3717)] = 170997, - [SMALL_STATE(3718)] = 171035, - [SMALL_STATE(3719)] = 171073, - [SMALL_STATE(3720)] = 171111, - [SMALL_STATE(3721)] = 171139, - [SMALL_STATE(3722)] = 171177, - [SMALL_STATE(3723)] = 171215, - [SMALL_STATE(3724)] = 171253, - [SMALL_STATE(3725)] = 171291, - [SMALL_STATE(3726)] = 171329, - [SMALL_STATE(3727)] = 171367, - [SMALL_STATE(3728)] = 171405, - [SMALL_STATE(3729)] = 171443, - [SMALL_STATE(3730)] = 171481, - [SMALL_STATE(3731)] = 171519, - [SMALL_STATE(3732)] = 171557, - [SMALL_STATE(3733)] = 171595, - [SMALL_STATE(3734)] = 171633, - [SMALL_STATE(3735)] = 171671, - [SMALL_STATE(3736)] = 171709, - [SMALL_STATE(3737)] = 171747, - [SMALL_STATE(3738)] = 171785, - [SMALL_STATE(3739)] = 171823, - [SMALL_STATE(3740)] = 171861, - [SMALL_STATE(3741)] = 171899, - [SMALL_STATE(3742)] = 171937, - [SMALL_STATE(3743)] = 171965, - [SMALL_STATE(3744)] = 172003, - [SMALL_STATE(3745)] = 172041, - [SMALL_STATE(3746)] = 172079, - [SMALL_STATE(3747)] = 172117, - [SMALL_STATE(3748)] = 172145, - [SMALL_STATE(3749)] = 172170, - [SMALL_STATE(3750)] = 172195, - [SMALL_STATE(3751)] = 172220, - [SMALL_STATE(3752)] = 172245, - [SMALL_STATE(3753)] = 172270, - [SMALL_STATE(3754)] = 172295, - [SMALL_STATE(3755)] = 172320, - [SMALL_STATE(3756)] = 172345, - [SMALL_STATE(3757)] = 172370, - [SMALL_STATE(3758)] = 172395, - [SMALL_STATE(3759)] = 172420, - [SMALL_STATE(3760)] = 172445, - [SMALL_STATE(3761)] = 172470, - [SMALL_STATE(3762)] = 172495, - [SMALL_STATE(3763)] = 172520, - [SMALL_STATE(3764)] = 172545, - [SMALL_STATE(3765)] = 172570, - [SMALL_STATE(3766)] = 172595, - [SMALL_STATE(3767)] = 172620, - [SMALL_STATE(3768)] = 172645, - [SMALL_STATE(3769)] = 172670, - [SMALL_STATE(3770)] = 172695, - [SMALL_STATE(3771)] = 172720, - [SMALL_STATE(3772)] = 172745, - [SMALL_STATE(3773)] = 172770, - [SMALL_STATE(3774)] = 172795, - [SMALL_STATE(3775)] = 172820, - [SMALL_STATE(3776)] = 172845, - [SMALL_STATE(3777)] = 172870, - [SMALL_STATE(3778)] = 172895, - [SMALL_STATE(3779)] = 172920, - [SMALL_STATE(3780)] = 172945, - [SMALL_STATE(3781)] = 172970, - [SMALL_STATE(3782)] = 172995, - [SMALL_STATE(3783)] = 173020, - [SMALL_STATE(3784)] = 173045, - [SMALL_STATE(3785)] = 173070, - [SMALL_STATE(3786)] = 173095, - [SMALL_STATE(3787)] = 173120, - [SMALL_STATE(3788)] = 173145, - [SMALL_STATE(3789)] = 173170, - [SMALL_STATE(3790)] = 173195, - [SMALL_STATE(3791)] = 173220, - [SMALL_STATE(3792)] = 173245, - [SMALL_STATE(3793)] = 173270, - [SMALL_STATE(3794)] = 173295, - [SMALL_STATE(3795)] = 173320, - [SMALL_STATE(3796)] = 173345, - [SMALL_STATE(3797)] = 173370, - [SMALL_STATE(3798)] = 173395, - [SMALL_STATE(3799)] = 173420, - [SMALL_STATE(3800)] = 173445, - [SMALL_STATE(3801)] = 173470, - [SMALL_STATE(3802)] = 173495, - [SMALL_STATE(3803)] = 173520, - [SMALL_STATE(3804)] = 173545, - [SMALL_STATE(3805)] = 173570, - [SMALL_STATE(3806)] = 173595, - [SMALL_STATE(3807)] = 173620, - [SMALL_STATE(3808)] = 173645, - [SMALL_STATE(3809)] = 173670, - [SMALL_STATE(3810)] = 173695, - [SMALL_STATE(3811)] = 173720, - [SMALL_STATE(3812)] = 173745, - [SMALL_STATE(3813)] = 173770, - [SMALL_STATE(3814)] = 173795, - [SMALL_STATE(3815)] = 173820, - [SMALL_STATE(3816)] = 173845, - [SMALL_STATE(3817)] = 173870, - [SMALL_STATE(3818)] = 173895, - [SMALL_STATE(3819)] = 173920, - [SMALL_STATE(3820)] = 173945, - [SMALL_STATE(3821)] = 173970, - [SMALL_STATE(3822)] = 173995, - [SMALL_STATE(3823)] = 174020, - [SMALL_STATE(3824)] = 174045, - [SMALL_STATE(3825)] = 174070, - [SMALL_STATE(3826)] = 174095, - [SMALL_STATE(3827)] = 174120, - [SMALL_STATE(3828)] = 174145, - [SMALL_STATE(3829)] = 174170, - [SMALL_STATE(3830)] = 174195, - [SMALL_STATE(3831)] = 174220, - [SMALL_STATE(3832)] = 174245, - [SMALL_STATE(3833)] = 174270, - [SMALL_STATE(3834)] = 174295, - [SMALL_STATE(3835)] = 174320, - [SMALL_STATE(3836)] = 174345, - [SMALL_STATE(3837)] = 174370, - [SMALL_STATE(3838)] = 174395, - [SMALL_STATE(3839)] = 174420, - [SMALL_STATE(3840)] = 174445, - [SMALL_STATE(3841)] = 174470, - [SMALL_STATE(3842)] = 174495, - [SMALL_STATE(3843)] = 174520, - [SMALL_STATE(3844)] = 174545, - [SMALL_STATE(3845)] = 174570, - [SMALL_STATE(3846)] = 174595, - [SMALL_STATE(3847)] = 174620, - [SMALL_STATE(3848)] = 174645, - [SMALL_STATE(3849)] = 174670, - [SMALL_STATE(3850)] = 174695, - [SMALL_STATE(3851)] = 174720, - [SMALL_STATE(3852)] = 174745, - [SMALL_STATE(3853)] = 174770, - [SMALL_STATE(3854)] = 174795, - [SMALL_STATE(3855)] = 174820, - [SMALL_STATE(3856)] = 174845, - [SMALL_STATE(3857)] = 174870, - [SMALL_STATE(3858)] = 174895, - [SMALL_STATE(3859)] = 174920, - [SMALL_STATE(3860)] = 174945, - [SMALL_STATE(3861)] = 174970, - [SMALL_STATE(3862)] = 174995, - [SMALL_STATE(3863)] = 175020, - [SMALL_STATE(3864)] = 175045, - [SMALL_STATE(3865)] = 175070, - [SMALL_STATE(3866)] = 175095, - [SMALL_STATE(3867)] = 175120, - [SMALL_STATE(3868)] = 175145, - [SMALL_STATE(3869)] = 175170, - [SMALL_STATE(3870)] = 175195, - [SMALL_STATE(3871)] = 175220, - [SMALL_STATE(3872)] = 175245, - [SMALL_STATE(3873)] = 175270, - [SMALL_STATE(3874)] = 175295, - [SMALL_STATE(3875)] = 175320, - [SMALL_STATE(3876)] = 175345, - [SMALL_STATE(3877)] = 175370, - [SMALL_STATE(3878)] = 175395, - [SMALL_STATE(3879)] = 175420, - [SMALL_STATE(3880)] = 175445, - [SMALL_STATE(3881)] = 175470, - [SMALL_STATE(3882)] = 175495, - [SMALL_STATE(3883)] = 175520, - [SMALL_STATE(3884)] = 175545, - [SMALL_STATE(3885)] = 175570, - [SMALL_STATE(3886)] = 175595, - [SMALL_STATE(3887)] = 175620, - [SMALL_STATE(3888)] = 175645, - [SMALL_STATE(3889)] = 175670, - [SMALL_STATE(3890)] = 175695, - [SMALL_STATE(3891)] = 175720, - [SMALL_STATE(3892)] = 175745, - [SMALL_STATE(3893)] = 175770, - [SMALL_STATE(3894)] = 175795, - [SMALL_STATE(3895)] = 175820, - [SMALL_STATE(3896)] = 175845, - [SMALL_STATE(3897)] = 175870, - [SMALL_STATE(3898)] = 175895, - [SMALL_STATE(3899)] = 175920, - [SMALL_STATE(3900)] = 175945, - [SMALL_STATE(3901)] = 175967, - [SMALL_STATE(3902)] = 175992, - [SMALL_STATE(3903)] = 176023, - [SMALL_STATE(3904)] = 176042, - [SMALL_STATE(3905)] = 176067, - [SMALL_STATE(3906)] = 176092, - [SMALL_STATE(3907)] = 176111, - [SMALL_STATE(3908)] = 176142, - [SMALL_STATE(3909)] = 176173, - [SMALL_STATE(3910)] = 176198, - [SMALL_STATE(3911)] = 176223, - [SMALL_STATE(3912)] = 176242, - [SMALL_STATE(3913)] = 176267, - [SMALL_STATE(3914)] = 176292, - [SMALL_STATE(3915)] = 176311, - [SMALL_STATE(3916)] = 176330, - [SMALL_STATE(3917)] = 176355, - [SMALL_STATE(3918)] = 176374, - [SMALL_STATE(3919)] = 176399, - [SMALL_STATE(3920)] = 176415, - [SMALL_STATE(3921)] = 176433, - [SMALL_STATE(3922)] = 176451, - [SMALL_STATE(3923)] = 176469, - [SMALL_STATE(3924)] = 176485, - [SMALL_STATE(3925)] = 176503, - [SMALL_STATE(3926)] = 176521, - [SMALL_STATE(3927)] = 176549, - [SMALL_STATE(3928)] = 176567, - [SMALL_STATE(3929)] = 176585, - [SMALL_STATE(3930)] = 176603, - [SMALL_STATE(3931)] = 176621, - [SMALL_STATE(3932)] = 176639, - [SMALL_STATE(3933)] = 176657, - [SMALL_STATE(3934)] = 176675, - [SMALL_STATE(3935)] = 176690, - [SMALL_STATE(3936)] = 176705, - [SMALL_STATE(3937)] = 176732, - [SMALL_STATE(3938)] = 176755, - [SMALL_STATE(3939)] = 176782, - [SMALL_STATE(3940)] = 176798, - [SMALL_STATE(3941)] = 176814, - [SMALL_STATE(3942)] = 176830, - [SMALL_STATE(3943)] = 176854, - [SMALL_STATE(3944)] = 176878, - [SMALL_STATE(3945)] = 176894, - [SMALL_STATE(3946)] = 176910, - [SMALL_STATE(3947)] = 176932, - [SMALL_STATE(3948)] = 176948, - [SMALL_STATE(3949)] = 176964, - [SMALL_STATE(3950)] = 176980, - [SMALL_STATE(3951)] = 176996, - [SMALL_STATE(3952)] = 177018, - [SMALL_STATE(3953)] = 177042, - [SMALL_STATE(3954)] = 177058, - [SMALL_STATE(3955)] = 177082, - [SMALL_STATE(3956)] = 177098, - [SMALL_STATE(3957)] = 177122, - [SMALL_STATE(3958)] = 177138, - [SMALL_STATE(3959)] = 177162, - [SMALL_STATE(3960)] = 177184, - [SMALL_STATE(3961)] = 177200, - [SMALL_STATE(3962)] = 177216, - [SMALL_STATE(3963)] = 177232, - [SMALL_STATE(3964)] = 177248, - [SMALL_STATE(3965)] = 177264, - [SMALL_STATE(3966)] = 177280, - [SMALL_STATE(3967)] = 177296, - [SMALL_STATE(3968)] = 177311, - [SMALL_STATE(3969)] = 177332, - [SMALL_STATE(3970)] = 177353, - [SMALL_STATE(3971)] = 177368, - [SMALL_STATE(3972)] = 177389, - [SMALL_STATE(3973)] = 177410, - [SMALL_STATE(3974)] = 177425, - [SMALL_STATE(3975)] = 177440, - [SMALL_STATE(3976)] = 177455, - [SMALL_STATE(3977)] = 177476, - [SMALL_STATE(3978)] = 177497, - [SMALL_STATE(3979)] = 177512, - [SMALL_STATE(3980)] = 177527, - [SMALL_STATE(3981)] = 177542, - [SMALL_STATE(3982)] = 177563, - [SMALL_STATE(3983)] = 177578, - [SMALL_STATE(3984)] = 177593, - [SMALL_STATE(3985)] = 177614, - [SMALL_STATE(3986)] = 177629, - [SMALL_STATE(3987)] = 177644, - [SMALL_STATE(3988)] = 177665, - [SMALL_STATE(3989)] = 177686, - [SMALL_STATE(3990)] = 177701, - [SMALL_STATE(3991)] = 177716, - [SMALL_STATE(3992)] = 177731, - [SMALL_STATE(3993)] = 177752, - [SMALL_STATE(3994)] = 177767, - [SMALL_STATE(3995)] = 177782, - [SMALL_STATE(3996)] = 177803, - [SMALL_STATE(3997)] = 177818, - [SMALL_STATE(3998)] = 177839, - [SMALL_STATE(3999)] = 177854, - [SMALL_STATE(4000)] = 177869, - [SMALL_STATE(4001)] = 177890, - [SMALL_STATE(4002)] = 177905, - [SMALL_STATE(4003)] = 177926, - [SMALL_STATE(4004)] = 177941, - [SMALL_STATE(4005)] = 177962, - [SMALL_STATE(4006)] = 177977, - [SMALL_STATE(4007)] = 177992, - [SMALL_STATE(4008)] = 178013, - [SMALL_STATE(4009)] = 178034, - [SMALL_STATE(4010)] = 178053, - [SMALL_STATE(4011)] = 178068, - [SMALL_STATE(4012)] = 178089, - [SMALL_STATE(4013)] = 178110, - [SMALL_STATE(4014)] = 178131, - [SMALL_STATE(4015)] = 178152, - [SMALL_STATE(4016)] = 178173, - [SMALL_STATE(4017)] = 178194, - [SMALL_STATE(4018)] = 178209, - [SMALL_STATE(4019)] = 178230, - [SMALL_STATE(4020)] = 178245, - [SMALL_STATE(4021)] = 178266, - [SMALL_STATE(4022)] = 178281, - [SMALL_STATE(4023)] = 178302, - [SMALL_STATE(4024)] = 178322, - [SMALL_STATE(4025)] = 178342, - [SMALL_STATE(4026)] = 178362, - [SMALL_STATE(4027)] = 178382, - [SMALL_STATE(4028)] = 178402, - [SMALL_STATE(4029)] = 178422, - [SMALL_STATE(4030)] = 178442, - [SMALL_STATE(4031)] = 178462, - [SMALL_STATE(4032)] = 178478, - [SMALL_STATE(4033)] = 178498, - [SMALL_STATE(4034)] = 178518, - [SMALL_STATE(4035)] = 178532, - [SMALL_STATE(4036)] = 178552, - [SMALL_STATE(4037)] = 178570, - [SMALL_STATE(4038)] = 178590, - [SMALL_STATE(4039)] = 178610, - [SMALL_STATE(4040)] = 178630, - [SMALL_STATE(4041)] = 178650, - [SMALL_STATE(4042)] = 178670, - [SMALL_STATE(4043)] = 178690, - [SMALL_STATE(4044)] = 178710, - [SMALL_STATE(4045)] = 178730, - [SMALL_STATE(4046)] = 178750, - [SMALL_STATE(4047)] = 178770, - [SMALL_STATE(4048)] = 178790, - [SMALL_STATE(4049)] = 178807, - [SMALL_STATE(4050)] = 178824, - [SMALL_STATE(4051)] = 178841, - [SMALL_STATE(4052)] = 178860, - [SMALL_STATE(4053)] = 178877, - [SMALL_STATE(4054)] = 178894, - [SMALL_STATE(4055)] = 178911, - [SMALL_STATE(4056)] = 178926, - [SMALL_STATE(4057)] = 178943, - [SMALL_STATE(4058)] = 178962, - [SMALL_STATE(4059)] = 178979, - [SMALL_STATE(4060)] = 178994, - [SMALL_STATE(4061)] = 179011, - [SMALL_STATE(4062)] = 179028, - [SMALL_STATE(4063)] = 179043, - [SMALL_STATE(4064)] = 179060, - [SMALL_STATE(4065)] = 179075, - [SMALL_STATE(4066)] = 179090, - [SMALL_STATE(4067)] = 179107, - [SMALL_STATE(4068)] = 179124, - [SMALL_STATE(4069)] = 179141, - [SMALL_STATE(4070)] = 179158, - [SMALL_STATE(4071)] = 179175, - [SMALL_STATE(4072)] = 179194, - [SMALL_STATE(4073)] = 179209, - [SMALL_STATE(4074)] = 179226, - [SMALL_STATE(4075)] = 179241, - [SMALL_STATE(4076)] = 179260, - [SMALL_STATE(4077)] = 179279, - [SMALL_STATE(4078)] = 179296, - [SMALL_STATE(4079)] = 179313, - [SMALL_STATE(4080)] = 179328, - [SMALL_STATE(4081)] = 179345, - [SMALL_STATE(4082)] = 179360, - [SMALL_STATE(4083)] = 179377, - [SMALL_STATE(4084)] = 179396, - [SMALL_STATE(4085)] = 179413, - [SMALL_STATE(4086)] = 179430, - [SMALL_STATE(4087)] = 179445, - [SMALL_STATE(4088)] = 179460, - [SMALL_STATE(4089)] = 179477, - [SMALL_STATE(4090)] = 179494, - [SMALL_STATE(4091)] = 179513, - [SMALL_STATE(4092)] = 179530, - [SMALL_STATE(4093)] = 179547, - [SMALL_STATE(4094)] = 179557, - [SMALL_STATE(4095)] = 179567, - [SMALL_STATE(4096)] = 179583, - [SMALL_STATE(4097)] = 179599, - [SMALL_STATE(4098)] = 179609, - [SMALL_STATE(4099)] = 179619, - [SMALL_STATE(4100)] = 179635, - [SMALL_STATE(4101)] = 179651, - [SMALL_STATE(4102)] = 179667, - [SMALL_STATE(4103)] = 179677, - [SMALL_STATE(4104)] = 179687, - [SMALL_STATE(4105)] = 179703, - [SMALL_STATE(4106)] = 179713, - [SMALL_STATE(4107)] = 179729, - [SMALL_STATE(4108)] = 179745, - [SMALL_STATE(4109)] = 179755, - [SMALL_STATE(4110)] = 179771, - [SMALL_STATE(4111)] = 179781, - [SMALL_STATE(4112)] = 179791, - [SMALL_STATE(4113)] = 179801, - [SMALL_STATE(4114)] = 179815, - [SMALL_STATE(4115)] = 179825, - [SMALL_STATE(4116)] = 179835, - [SMALL_STATE(4117)] = 179845, - [SMALL_STATE(4118)] = 179855, - [SMALL_STATE(4119)] = 179865, - [SMALL_STATE(4120)] = 179881, - [SMALL_STATE(4121)] = 179891, - [SMALL_STATE(4122)] = 179901, - [SMALL_STATE(4123)] = 179911, - [SMALL_STATE(4124)] = 179921, - [SMALL_STATE(4125)] = 179931, - [SMALL_STATE(4126)] = 179941, - [SMALL_STATE(4127)] = 179953, - [SMALL_STATE(4128)] = 179963, - [SMALL_STATE(4129)] = 179973, - [SMALL_STATE(4130)] = 179989, - [SMALL_STATE(4131)] = 180003, - [SMALL_STATE(4132)] = 180013, - [SMALL_STATE(4133)] = 180023, - [SMALL_STATE(4134)] = 180033, - [SMALL_STATE(4135)] = 180045, - [SMALL_STATE(4136)] = 180059, - [SMALL_STATE(4137)] = 180069, - [SMALL_STATE(4138)] = 180079, - [SMALL_STATE(4139)] = 180089, - [SMALL_STATE(4140)] = 180099, - [SMALL_STATE(4141)] = 180113, - [SMALL_STATE(4142)] = 180123, - [SMALL_STATE(4143)] = 180137, - [SMALL_STATE(4144)] = 180147, - [SMALL_STATE(4145)] = 180157, - [SMALL_STATE(4146)] = 180167, - [SMALL_STATE(4147)] = 180183, - [SMALL_STATE(4148)] = 180197, - [SMALL_STATE(4149)] = 180207, - [SMALL_STATE(4150)] = 180217, - [SMALL_STATE(4151)] = 180233, - [SMALL_STATE(4152)] = 180243, - [SMALL_STATE(4153)] = 180253, - [SMALL_STATE(4154)] = 180263, - [SMALL_STATE(4155)] = 180277, - [SMALL_STATE(4156)] = 180290, - [SMALL_STATE(4157)] = 180303, - [SMALL_STATE(4158)] = 180316, - [SMALL_STATE(4159)] = 180329, - [SMALL_STATE(4160)] = 180342, - [SMALL_STATE(4161)] = 180355, - [SMALL_STATE(4162)] = 180366, - [SMALL_STATE(4163)] = 180377, - [SMALL_STATE(4164)] = 180388, - [SMALL_STATE(4165)] = 180399, - [SMALL_STATE(4166)] = 180412, - [SMALL_STATE(4167)] = 180425, - [SMALL_STATE(4168)] = 180438, - [SMALL_STATE(4169)] = 180449, - [SMALL_STATE(4170)] = 180462, - [SMALL_STATE(4171)] = 180475, - [SMALL_STATE(4172)] = 180486, - [SMALL_STATE(4173)] = 180499, - [SMALL_STATE(4174)] = 180512, - [SMALL_STATE(4175)] = 180525, - [SMALL_STATE(4176)] = 180536, - [SMALL_STATE(4177)] = 180549, - [SMALL_STATE(4178)] = 180560, - [SMALL_STATE(4179)] = 180573, - [SMALL_STATE(4180)] = 180586, - [SMALL_STATE(4181)] = 180597, - [SMALL_STATE(4182)] = 180610, - [SMALL_STATE(4183)] = 180621, - [SMALL_STATE(4184)] = 180634, - [SMALL_STATE(4185)] = 180645, - [SMALL_STATE(4186)] = 180658, - [SMALL_STATE(4187)] = 180669, - [SMALL_STATE(4188)] = 180682, - [SMALL_STATE(4189)] = 180695, - [SMALL_STATE(4190)] = 180708, - [SMALL_STATE(4191)] = 180721, - [SMALL_STATE(4192)] = 180734, - [SMALL_STATE(4193)] = 180747, - [SMALL_STATE(4194)] = 180760, - [SMALL_STATE(4195)] = 180771, - [SMALL_STATE(4196)] = 180784, - [SMALL_STATE(4197)] = 180795, - [SMALL_STATE(4198)] = 180806, - [SMALL_STATE(4199)] = 180819, - [SMALL_STATE(4200)] = 180828, - [SMALL_STATE(4201)] = 180839, - [SMALL_STATE(4202)] = 180850, - [SMALL_STATE(4203)] = 180863, - [SMALL_STATE(4204)] = 180874, - [SMALL_STATE(4205)] = 180887, - [SMALL_STATE(4206)] = 180900, - [SMALL_STATE(4207)] = 180913, - [SMALL_STATE(4208)] = 180926, - [SMALL_STATE(4209)] = 180939, - [SMALL_STATE(4210)] = 180952, - [SMALL_STATE(4211)] = 180965, - [SMALL_STATE(4212)] = 180978, - [SMALL_STATE(4213)] = 180991, - [SMALL_STATE(4214)] = 181002, - [SMALL_STATE(4215)] = 181015, - [SMALL_STATE(4216)] = 181028, - [SMALL_STATE(4217)] = 181039, - [SMALL_STATE(4218)] = 181052, - [SMALL_STATE(4219)] = 181065, - [SMALL_STATE(4220)] = 181078, - [SMALL_STATE(4221)] = 181091, - [SMALL_STATE(4222)] = 181104, - [SMALL_STATE(4223)] = 181117, - [SMALL_STATE(4224)] = 181128, - [SMALL_STATE(4225)] = 181141, - [SMALL_STATE(4226)] = 181154, - [SMALL_STATE(4227)] = 181167, - [SMALL_STATE(4228)] = 181178, - [SMALL_STATE(4229)] = 181191, - [SMALL_STATE(4230)] = 181204, - [SMALL_STATE(4231)] = 181217, - [SMALL_STATE(4232)] = 181230, - [SMALL_STATE(4233)] = 181243, - [SMALL_STATE(4234)] = 181256, - [SMALL_STATE(4235)] = 181269, - [SMALL_STATE(4236)] = 181282, - [SMALL_STATE(4237)] = 181295, - [SMALL_STATE(4238)] = 181306, - [SMALL_STATE(4239)] = 181319, - [SMALL_STATE(4240)] = 181332, - [SMALL_STATE(4241)] = 181343, - [SMALL_STATE(4242)] = 181356, - [SMALL_STATE(4243)] = 181369, - [SMALL_STATE(4244)] = 181382, - [SMALL_STATE(4245)] = 181395, - [SMALL_STATE(4246)] = 181406, - [SMALL_STATE(4247)] = 181419, - [SMALL_STATE(4248)] = 181432, - [SMALL_STATE(4249)] = 181443, - [SMALL_STATE(4250)] = 181456, - [SMALL_STATE(4251)] = 181469, - [SMALL_STATE(4252)] = 181482, - [SMALL_STATE(4253)] = 181495, - [SMALL_STATE(4254)] = 181508, - [SMALL_STATE(4255)] = 181521, - [SMALL_STATE(4256)] = 181534, - [SMALL_STATE(4257)] = 181547, - [SMALL_STATE(4258)] = 181560, - [SMALL_STATE(4259)] = 181571, - [SMALL_STATE(4260)] = 181584, - [SMALL_STATE(4261)] = 181597, - [SMALL_STATE(4262)] = 181608, - [SMALL_STATE(4263)] = 181621, - [SMALL_STATE(4264)] = 181634, - [SMALL_STATE(4265)] = 181647, - [SMALL_STATE(4266)] = 181660, - [SMALL_STATE(4267)] = 181673, - [SMALL_STATE(4268)] = 181686, - [SMALL_STATE(4269)] = 181699, - [SMALL_STATE(4270)] = 181712, - [SMALL_STATE(4271)] = 181725, - [SMALL_STATE(4272)] = 181736, - [SMALL_STATE(4273)] = 181749, - [SMALL_STATE(4274)] = 181762, - [SMALL_STATE(4275)] = 181775, - [SMALL_STATE(4276)] = 181786, - [SMALL_STATE(4277)] = 181799, - [SMALL_STATE(4278)] = 181812, - [SMALL_STATE(4279)] = 181825, - [SMALL_STATE(4280)] = 181838, - [SMALL_STATE(4281)] = 181851, - [SMALL_STATE(4282)] = 181864, - [SMALL_STATE(4283)] = 181877, - [SMALL_STATE(4284)] = 181890, - [SMALL_STATE(4285)] = 181903, - [SMALL_STATE(4286)] = 181916, - [SMALL_STATE(4287)] = 181929, - [SMALL_STATE(4288)] = 181942, - [SMALL_STATE(4289)] = 181953, - [SMALL_STATE(4290)] = 181966, - [SMALL_STATE(4291)] = 181979, - [SMALL_STATE(4292)] = 181992, - [SMALL_STATE(4293)] = 182003, - [SMALL_STATE(4294)] = 182016, - [SMALL_STATE(4295)] = 182026, - [SMALL_STATE(4296)] = 182034, - [SMALL_STATE(4297)] = 182044, - [SMALL_STATE(4298)] = 182054, - [SMALL_STATE(4299)] = 182062, - [SMALL_STATE(4300)] = 182070, - [SMALL_STATE(4301)] = 182078, - [SMALL_STATE(4302)] = 182088, - [SMALL_STATE(4303)] = 182096, - [SMALL_STATE(4304)] = 182106, - [SMALL_STATE(4305)] = 182114, - [SMALL_STATE(4306)] = 182122, - [SMALL_STATE(4307)] = 182130, - [SMALL_STATE(4308)] = 182138, - [SMALL_STATE(4309)] = 182146, - [SMALL_STATE(4310)] = 182156, - [SMALL_STATE(4311)] = 182166, - [SMALL_STATE(4312)] = 182174, - [SMALL_STATE(4313)] = 182184, - [SMALL_STATE(4314)] = 182194, - [SMALL_STATE(4315)] = 182204, - [SMALL_STATE(4316)] = 182214, - [SMALL_STATE(4317)] = 182224, - [SMALL_STATE(4318)] = 182232, - [SMALL_STATE(4319)] = 182242, - [SMALL_STATE(4320)] = 182252, - [SMALL_STATE(4321)] = 182262, - [SMALL_STATE(4322)] = 182270, - [SMALL_STATE(4323)] = 182280, - [SMALL_STATE(4324)] = 182290, - [SMALL_STATE(4325)] = 182300, - [SMALL_STATE(4326)] = 182310, - [SMALL_STATE(4327)] = 182320, - [SMALL_STATE(4328)] = 182330, - [SMALL_STATE(4329)] = 182340, - [SMALL_STATE(4330)] = 182350, - [SMALL_STATE(4331)] = 182360, - [SMALL_STATE(4332)] = 182370, - [SMALL_STATE(4333)] = 182380, - [SMALL_STATE(4334)] = 182388, - [SMALL_STATE(4335)] = 182398, - [SMALL_STATE(4336)] = 182408, - [SMALL_STATE(4337)] = 182418, - [SMALL_STATE(4338)] = 182428, - [SMALL_STATE(4339)] = 182436, - [SMALL_STATE(4340)] = 182446, - [SMALL_STATE(4341)] = 182454, - [SMALL_STATE(4342)] = 182464, - [SMALL_STATE(4343)] = 182472, - [SMALL_STATE(4344)] = 182480, - [SMALL_STATE(4345)] = 182490, - [SMALL_STATE(4346)] = 182500, - [SMALL_STATE(4347)] = 182510, - [SMALL_STATE(4348)] = 182520, - [SMALL_STATE(4349)] = 182528, - [SMALL_STATE(4350)] = 182536, - [SMALL_STATE(4351)] = 182546, - [SMALL_STATE(4352)] = 182556, - [SMALL_STATE(4353)] = 182566, - [SMALL_STATE(4354)] = 182576, - [SMALL_STATE(4355)] = 182586, - [SMALL_STATE(4356)] = 182596, - [SMALL_STATE(4357)] = 182606, - [SMALL_STATE(4358)] = 182616, - [SMALL_STATE(4359)] = 182624, - [SMALL_STATE(4360)] = 182632, - [SMALL_STATE(4361)] = 182640, - [SMALL_STATE(4362)] = 182650, - [SMALL_STATE(4363)] = 182660, - [SMALL_STATE(4364)] = 182668, - [SMALL_STATE(4365)] = 182676, - [SMALL_STATE(4366)] = 182686, - [SMALL_STATE(4367)] = 182694, - [SMALL_STATE(4368)] = 182702, - [SMALL_STATE(4369)] = 182712, - [SMALL_STATE(4370)] = 182720, - [SMALL_STATE(4371)] = 182728, - [SMALL_STATE(4372)] = 182738, - [SMALL_STATE(4373)] = 182746, - [SMALL_STATE(4374)] = 182754, - [SMALL_STATE(4375)] = 182764, - [SMALL_STATE(4376)] = 182774, - [SMALL_STATE(4377)] = 182782, - [SMALL_STATE(4378)] = 182792, - [SMALL_STATE(4379)] = 182802, - [SMALL_STATE(4380)] = 182810, - [SMALL_STATE(4381)] = 182820, - [SMALL_STATE(4382)] = 182830, - [SMALL_STATE(4383)] = 182838, - [SMALL_STATE(4384)] = 182846, - [SMALL_STATE(4385)] = 182856, - [SMALL_STATE(4386)] = 182866, - [SMALL_STATE(4387)] = 182874, - [SMALL_STATE(4388)] = 182882, - [SMALL_STATE(4389)] = 182892, - [SMALL_STATE(4390)] = 182902, - [SMALL_STATE(4391)] = 182912, - [SMALL_STATE(4392)] = 182920, - [SMALL_STATE(4393)] = 182930, - [SMALL_STATE(4394)] = 182940, - [SMALL_STATE(4395)] = 182948, - [SMALL_STATE(4396)] = 182958, - [SMALL_STATE(4397)] = 182966, - [SMALL_STATE(4398)] = 182976, - [SMALL_STATE(4399)] = 182986, - [SMALL_STATE(4400)] = 182996, - [SMALL_STATE(4401)] = 183006, - [SMALL_STATE(4402)] = 183016, - [SMALL_STATE(4403)] = 183026, - [SMALL_STATE(4404)] = 183033, - [SMALL_STATE(4405)] = 183040, - [SMALL_STATE(4406)] = 183047, - [SMALL_STATE(4407)] = 183054, - [SMALL_STATE(4408)] = 183061, - [SMALL_STATE(4409)] = 183068, - [SMALL_STATE(4410)] = 183075, - [SMALL_STATE(4411)] = 183082, - [SMALL_STATE(4412)] = 183089, - [SMALL_STATE(4413)] = 183096, - [SMALL_STATE(4414)] = 183103, - [SMALL_STATE(4415)] = 183110, - [SMALL_STATE(4416)] = 183117, - [SMALL_STATE(4417)] = 183124, - [SMALL_STATE(4418)] = 183131, - [SMALL_STATE(4419)] = 183138, - [SMALL_STATE(4420)] = 183145, - [SMALL_STATE(4421)] = 183152, - [SMALL_STATE(4422)] = 183159, - [SMALL_STATE(4423)] = 183166, - [SMALL_STATE(4424)] = 183173, - [SMALL_STATE(4425)] = 183180, - [SMALL_STATE(4426)] = 183187, - [SMALL_STATE(4427)] = 183194, - [SMALL_STATE(4428)] = 183201, - [SMALL_STATE(4429)] = 183208, - [SMALL_STATE(4430)] = 183215, - [SMALL_STATE(4431)] = 183222, - [SMALL_STATE(4432)] = 183229, - [SMALL_STATE(4433)] = 183236, - [SMALL_STATE(4434)] = 183243, - [SMALL_STATE(4435)] = 183250, - [SMALL_STATE(4436)] = 183257, - [SMALL_STATE(4437)] = 183264, - [SMALL_STATE(4438)] = 183271, - [SMALL_STATE(4439)] = 183278, - [SMALL_STATE(4440)] = 183285, - [SMALL_STATE(4441)] = 183292, - [SMALL_STATE(4442)] = 183299, - [SMALL_STATE(4443)] = 183306, - [SMALL_STATE(4444)] = 183313, - [SMALL_STATE(4445)] = 183320, - [SMALL_STATE(4446)] = 183327, - [SMALL_STATE(4447)] = 183334, - [SMALL_STATE(4448)] = 183341, - [SMALL_STATE(4449)] = 183348, - [SMALL_STATE(4450)] = 183355, - [SMALL_STATE(4451)] = 183362, - [SMALL_STATE(4452)] = 183369, - [SMALL_STATE(4453)] = 183376, - [SMALL_STATE(4454)] = 183383, - [SMALL_STATE(4455)] = 183390, - [SMALL_STATE(4456)] = 183397, - [SMALL_STATE(4457)] = 183404, - [SMALL_STATE(4458)] = 183411, - [SMALL_STATE(4459)] = 183418, - [SMALL_STATE(4460)] = 183425, - [SMALL_STATE(4461)] = 183432, - [SMALL_STATE(4462)] = 183439, - [SMALL_STATE(4463)] = 183446, - [SMALL_STATE(4464)] = 183453, - [SMALL_STATE(4465)] = 183460, - [SMALL_STATE(4466)] = 183467, - [SMALL_STATE(4467)] = 183474, - [SMALL_STATE(4468)] = 183481, - [SMALL_STATE(4469)] = 183488, - [SMALL_STATE(4470)] = 183495, - [SMALL_STATE(4471)] = 183502, - [SMALL_STATE(4472)] = 183509, - [SMALL_STATE(4473)] = 183516, - [SMALL_STATE(4474)] = 183523, - [SMALL_STATE(4475)] = 183530, - [SMALL_STATE(4476)] = 183537, - [SMALL_STATE(4477)] = 183544, - [SMALL_STATE(4478)] = 183551, - [SMALL_STATE(4479)] = 183558, - [SMALL_STATE(4480)] = 183565, - [SMALL_STATE(4481)] = 183572, - [SMALL_STATE(4482)] = 183579, - [SMALL_STATE(4483)] = 183586, - [SMALL_STATE(4484)] = 183593, - [SMALL_STATE(4485)] = 183600, - [SMALL_STATE(4486)] = 183607, - [SMALL_STATE(4487)] = 183614, - [SMALL_STATE(4488)] = 183621, - [SMALL_STATE(4489)] = 183628, - [SMALL_STATE(4490)] = 183635, - [SMALL_STATE(4491)] = 183642, - [SMALL_STATE(4492)] = 183649, - [SMALL_STATE(4493)] = 183656, - [SMALL_STATE(4494)] = 183663, - [SMALL_STATE(4495)] = 183670, - [SMALL_STATE(4496)] = 183677, - [SMALL_STATE(4497)] = 183684, - [SMALL_STATE(4498)] = 183691, - [SMALL_STATE(4499)] = 183698, - [SMALL_STATE(4500)] = 183705, - [SMALL_STATE(4501)] = 183712, - [SMALL_STATE(4502)] = 183719, - [SMALL_STATE(4503)] = 183726, - [SMALL_STATE(4504)] = 183733, - [SMALL_STATE(4505)] = 183740, - [SMALL_STATE(4506)] = 183747, - [SMALL_STATE(4507)] = 183754, - [SMALL_STATE(4508)] = 183761, - [SMALL_STATE(4509)] = 183768, - [SMALL_STATE(4510)] = 183775, - [SMALL_STATE(4511)] = 183782, - [SMALL_STATE(4512)] = 183789, - [SMALL_STATE(4513)] = 183796, - [SMALL_STATE(4514)] = 183803, - [SMALL_STATE(4515)] = 183810, - [SMALL_STATE(4516)] = 183817, - [SMALL_STATE(4517)] = 183824, - [SMALL_STATE(4518)] = 183831, - [SMALL_STATE(4519)] = 183838, - [SMALL_STATE(4520)] = 183845, - [SMALL_STATE(4521)] = 183852, - [SMALL_STATE(4522)] = 183859, - [SMALL_STATE(4523)] = 183866, - [SMALL_STATE(4524)] = 183873, - [SMALL_STATE(4525)] = 183880, - [SMALL_STATE(4526)] = 183887, - [SMALL_STATE(4527)] = 183894, - [SMALL_STATE(4528)] = 183901, - [SMALL_STATE(4529)] = 183908, - [SMALL_STATE(4530)] = 183915, - [SMALL_STATE(4531)] = 183922, - [SMALL_STATE(4532)] = 183929, - [SMALL_STATE(4533)] = 183936, - [SMALL_STATE(4534)] = 183943, - [SMALL_STATE(4535)] = 183950, - [SMALL_STATE(4536)] = 183957, - [SMALL_STATE(4537)] = 183964, - [SMALL_STATE(4538)] = 183971, - [SMALL_STATE(4539)] = 183978, - [SMALL_STATE(4540)] = 183985, - [SMALL_STATE(4541)] = 183992, - [SMALL_STATE(4542)] = 183999, - [SMALL_STATE(4543)] = 184006, - [SMALL_STATE(4544)] = 184013, - [SMALL_STATE(4545)] = 184020, - [SMALL_STATE(4546)] = 184027, - [SMALL_STATE(4547)] = 184034, - [SMALL_STATE(4548)] = 184041, - [SMALL_STATE(4549)] = 184048, - [SMALL_STATE(4550)] = 184055, - [SMALL_STATE(4551)] = 184062, - [SMALL_STATE(4552)] = 184069, - [SMALL_STATE(4553)] = 184076, - [SMALL_STATE(4554)] = 184083, - [SMALL_STATE(4555)] = 184090, - [SMALL_STATE(4556)] = 184097, - [SMALL_STATE(4557)] = 184104, - [SMALL_STATE(4558)] = 184111, - [SMALL_STATE(4559)] = 184118, - [SMALL_STATE(4560)] = 184125, - [SMALL_STATE(4561)] = 184132, - [SMALL_STATE(4562)] = 184139, - [SMALL_STATE(4563)] = 184146, - [SMALL_STATE(4564)] = 184153, - [SMALL_STATE(4565)] = 184160, - [SMALL_STATE(4566)] = 184167, - [SMALL_STATE(4567)] = 184174, - [SMALL_STATE(4568)] = 184181, - [SMALL_STATE(4569)] = 184188, - [SMALL_STATE(4570)] = 184195, - [SMALL_STATE(4571)] = 184202, - [SMALL_STATE(4572)] = 184209, - [SMALL_STATE(4573)] = 184216, - [SMALL_STATE(4574)] = 184223, - [SMALL_STATE(4575)] = 184230, - [SMALL_STATE(4576)] = 184237, - [SMALL_STATE(4577)] = 184244, - [SMALL_STATE(4578)] = 184251, - [SMALL_STATE(4579)] = 184258, - [SMALL_STATE(4580)] = 184265, - [SMALL_STATE(4581)] = 184272, - [SMALL_STATE(4582)] = 184279, - [SMALL_STATE(4583)] = 184286, - [SMALL_STATE(4584)] = 184293, - [SMALL_STATE(4585)] = 184300, - [SMALL_STATE(4586)] = 184307, - [SMALL_STATE(4587)] = 184314, - [SMALL_STATE(4588)] = 184321, - [SMALL_STATE(4589)] = 184328, - [SMALL_STATE(4590)] = 184335, - [SMALL_STATE(4591)] = 184342, - [SMALL_STATE(4592)] = 184349, - [SMALL_STATE(4593)] = 184356, - [SMALL_STATE(4594)] = 184363, - [SMALL_STATE(4595)] = 184370, - [SMALL_STATE(4596)] = 184377, - [SMALL_STATE(4597)] = 184384, - [SMALL_STATE(4598)] = 184391, - [SMALL_STATE(4599)] = 184398, - [SMALL_STATE(4600)] = 184405, - [SMALL_STATE(4601)] = 184412, - [SMALL_STATE(4602)] = 184419, - [SMALL_STATE(4603)] = 184426, - [SMALL_STATE(4604)] = 184433, - [SMALL_STATE(4605)] = 184440, - [SMALL_STATE(4606)] = 184447, - [SMALL_STATE(4607)] = 184454, - [SMALL_STATE(4608)] = 184461, - [SMALL_STATE(4609)] = 184468, - [SMALL_STATE(4610)] = 184475, - [SMALL_STATE(4611)] = 184482, - [SMALL_STATE(4612)] = 184489, - [SMALL_STATE(4613)] = 184496, - [SMALL_STATE(4614)] = 184503, - [SMALL_STATE(4615)] = 184510, - [SMALL_STATE(4616)] = 184517, - [SMALL_STATE(4617)] = 184524, - [SMALL_STATE(4618)] = 184531, - [SMALL_STATE(4619)] = 184538, - [SMALL_STATE(4620)] = 184545, - [SMALL_STATE(4621)] = 184552, - [SMALL_STATE(4622)] = 184559, - [SMALL_STATE(4623)] = 184566, - [SMALL_STATE(4624)] = 184573, - [SMALL_STATE(4625)] = 184580, - [SMALL_STATE(4626)] = 184587, - [SMALL_STATE(4627)] = 184594, - [SMALL_STATE(4628)] = 184601, - [SMALL_STATE(4629)] = 184608, - [SMALL_STATE(4630)] = 184615, - [SMALL_STATE(4631)] = 184622, - [SMALL_STATE(4632)] = 184629, - [SMALL_STATE(4633)] = 184636, - [SMALL_STATE(4634)] = 184643, - [SMALL_STATE(4635)] = 184650, - [SMALL_STATE(4636)] = 184657, - [SMALL_STATE(4637)] = 184664, - [SMALL_STATE(4638)] = 184671, - [SMALL_STATE(4639)] = 184678, - [SMALL_STATE(4640)] = 184685, - [SMALL_STATE(4641)] = 184692, - [SMALL_STATE(4642)] = 184699, - [SMALL_STATE(4643)] = 184706, - [SMALL_STATE(4644)] = 184713, - [SMALL_STATE(4645)] = 184720, - [SMALL_STATE(4646)] = 184727, - [SMALL_STATE(4647)] = 184734, - [SMALL_STATE(4648)] = 184741, - [SMALL_STATE(4649)] = 184748, - [SMALL_STATE(4650)] = 184755, - [SMALL_STATE(4651)] = 184762, - [SMALL_STATE(4652)] = 184769, - [SMALL_STATE(4653)] = 184776, - [SMALL_STATE(4654)] = 184783, - [SMALL_STATE(4655)] = 184790, - [SMALL_STATE(4656)] = 184797, - [SMALL_STATE(4657)] = 184804, - [SMALL_STATE(4658)] = 184811, - [SMALL_STATE(4659)] = 184818, - [SMALL_STATE(4660)] = 184825, - [SMALL_STATE(4661)] = 184832, - [SMALL_STATE(4662)] = 184839, - [SMALL_STATE(4663)] = 184846, - [SMALL_STATE(4664)] = 184853, - [SMALL_STATE(4665)] = 184860, - [SMALL_STATE(4666)] = 184867, - [SMALL_STATE(4667)] = 184874, - [SMALL_STATE(4668)] = 184881, - [SMALL_STATE(4669)] = 184888, - [SMALL_STATE(4670)] = 184895, - [SMALL_STATE(4671)] = 184902, - [SMALL_STATE(4672)] = 184909, - [SMALL_STATE(4673)] = 184916, - [SMALL_STATE(4674)] = 184923, - [SMALL_STATE(4675)] = 184930, - [SMALL_STATE(4676)] = 184937, - [SMALL_STATE(4677)] = 184944, - [SMALL_STATE(4678)] = 184951, - [SMALL_STATE(4679)] = 184958, - [SMALL_STATE(4680)] = 184965, - [SMALL_STATE(4681)] = 184972, - [SMALL_STATE(4682)] = 184979, - [SMALL_STATE(4683)] = 184986, - [SMALL_STATE(4684)] = 184993, - [SMALL_STATE(4685)] = 185000, - [SMALL_STATE(4686)] = 185007, - [SMALL_STATE(4687)] = 185014, - [SMALL_STATE(4688)] = 185021, - [SMALL_STATE(4689)] = 185028, - [SMALL_STATE(4690)] = 185035, - [SMALL_STATE(4691)] = 185042, - [SMALL_STATE(4692)] = 185049, - [SMALL_STATE(4693)] = 185056, - [SMALL_STATE(4694)] = 185063, - [SMALL_STATE(4695)] = 185070, - [SMALL_STATE(4696)] = 185077, - [SMALL_STATE(4697)] = 185084, - [SMALL_STATE(4698)] = 185091, - [SMALL_STATE(4699)] = 185098, - [SMALL_STATE(4700)] = 185105, - [SMALL_STATE(4701)] = 185112, - [SMALL_STATE(4702)] = 185119, - [SMALL_STATE(4703)] = 185126, - [SMALL_STATE(4704)] = 185133, - [SMALL_STATE(4705)] = 185140, - [SMALL_STATE(4706)] = 185147, - [SMALL_STATE(4707)] = 185154, - [SMALL_STATE(4708)] = 185161, - [SMALL_STATE(4709)] = 185168, - [SMALL_STATE(4710)] = 185175, - [SMALL_STATE(4711)] = 185182, - [SMALL_STATE(4712)] = 185189, - [SMALL_STATE(4713)] = 185196, - [SMALL_STATE(4714)] = 185203, - [SMALL_STATE(4715)] = 185210, - [SMALL_STATE(4716)] = 185217, - [SMALL_STATE(4717)] = 185224, - [SMALL_STATE(4718)] = 185231, - [SMALL_STATE(4719)] = 185238, - [SMALL_STATE(4720)] = 185245, - [SMALL_STATE(4721)] = 185252, - [SMALL_STATE(4722)] = 185259, - [SMALL_STATE(4723)] = 185266, - [SMALL_STATE(4724)] = 185273, - [SMALL_STATE(4725)] = 185280, - [SMALL_STATE(4726)] = 185287, - [SMALL_STATE(4727)] = 185294, - [SMALL_STATE(4728)] = 185301, - [SMALL_STATE(4729)] = 185308, - [SMALL_STATE(4730)] = 185315, - [SMALL_STATE(4731)] = 185322, - [SMALL_STATE(4732)] = 185329, - [SMALL_STATE(4733)] = 185336, - [SMALL_STATE(4734)] = 185343, - [SMALL_STATE(4735)] = 185350, - [SMALL_STATE(4736)] = 185357, - [SMALL_STATE(4737)] = 185364, - [SMALL_STATE(4738)] = 185371, - [SMALL_STATE(4739)] = 185378, - [SMALL_STATE(4740)] = 185385, - [SMALL_STATE(4741)] = 185392, - [SMALL_STATE(4742)] = 185399, - [SMALL_STATE(4743)] = 185406, - [SMALL_STATE(4744)] = 185413, - [SMALL_STATE(4745)] = 185420, - [SMALL_STATE(4746)] = 185427, - [SMALL_STATE(4747)] = 185434, - [SMALL_STATE(4748)] = 185441, - [SMALL_STATE(4749)] = 185448, - [SMALL_STATE(4750)] = 185455, - [SMALL_STATE(4751)] = 185462, - [SMALL_STATE(4752)] = 185469, - [SMALL_STATE(4753)] = 185476, - [SMALL_STATE(4754)] = 185483, - [SMALL_STATE(4755)] = 185490, - [SMALL_STATE(4756)] = 185497, - [SMALL_STATE(4757)] = 185504, - [SMALL_STATE(4758)] = 185511, - [SMALL_STATE(4759)] = 185518, - [SMALL_STATE(4760)] = 185525, - [SMALL_STATE(4761)] = 185532, - [SMALL_STATE(4762)] = 185539, - [SMALL_STATE(4763)] = 185546, - [SMALL_STATE(4764)] = 185553, - [SMALL_STATE(4765)] = 185560, - [SMALL_STATE(4766)] = 185567, - [SMALL_STATE(4767)] = 185574, - [SMALL_STATE(4768)] = 185581, - [SMALL_STATE(4769)] = 185588, - [SMALL_STATE(4770)] = 185595, - [SMALL_STATE(4771)] = 185602, - [SMALL_STATE(4772)] = 185609, - [SMALL_STATE(4773)] = 185616, - [SMALL_STATE(4774)] = 185623, - [SMALL_STATE(4775)] = 185630, - [SMALL_STATE(4776)] = 185637, - [SMALL_STATE(4777)] = 185644, - [SMALL_STATE(4778)] = 185651, - [SMALL_STATE(4779)] = 185658, - [SMALL_STATE(4780)] = 185665, - [SMALL_STATE(4781)] = 185672, - [SMALL_STATE(4782)] = 185679, - [SMALL_STATE(4783)] = 185686, - [SMALL_STATE(4784)] = 185693, - [SMALL_STATE(4785)] = 185700, - [SMALL_STATE(4786)] = 185707, - [SMALL_STATE(4787)] = 185714, - [SMALL_STATE(4788)] = 185721, - [SMALL_STATE(4789)] = 185728, - [SMALL_STATE(4790)] = 185735, - [SMALL_STATE(4791)] = 185742, - [SMALL_STATE(4792)] = 185749, - [SMALL_STATE(4793)] = 185756, - [SMALL_STATE(4794)] = 185763, - [SMALL_STATE(4795)] = 185770, - [SMALL_STATE(4796)] = 185777, - [SMALL_STATE(4797)] = 185784, - [SMALL_STATE(4798)] = 185791, - [SMALL_STATE(4799)] = 185798, - [SMALL_STATE(4800)] = 185805, - [SMALL_STATE(4801)] = 185812, - [SMALL_STATE(4802)] = 185819, - [SMALL_STATE(4803)] = 185826, - [SMALL_STATE(4804)] = 185833, - [SMALL_STATE(4805)] = 185840, - [SMALL_STATE(4806)] = 185847, - [SMALL_STATE(4807)] = 185854, - [SMALL_STATE(4808)] = 185861, - [SMALL_STATE(4809)] = 185868, - [SMALL_STATE(4810)] = 185875, - [SMALL_STATE(4811)] = 185882, - [SMALL_STATE(4812)] = 185889, - [SMALL_STATE(4813)] = 185896, - [SMALL_STATE(4814)] = 185903, - [SMALL_STATE(4815)] = 185910, - [SMALL_STATE(4816)] = 185917, - [SMALL_STATE(4817)] = 185924, - [SMALL_STATE(4818)] = 185931, - [SMALL_STATE(4819)] = 185938, - [SMALL_STATE(4820)] = 185945, - [SMALL_STATE(4821)] = 185952, - [SMALL_STATE(4822)] = 185959, - [SMALL_STATE(4823)] = 185966, - [SMALL_STATE(4824)] = 185973, - [SMALL_STATE(4825)] = 185980, - [SMALL_STATE(4826)] = 185987, - [SMALL_STATE(4827)] = 185994, - [SMALL_STATE(4828)] = 186001, - [SMALL_STATE(4829)] = 186008, - [SMALL_STATE(4830)] = 186015, - [SMALL_STATE(4831)] = 186022, - [SMALL_STATE(4832)] = 186029, - [SMALL_STATE(4833)] = 186036, - [SMALL_STATE(4834)] = 186043, - [SMALL_STATE(4835)] = 186050, - [SMALL_STATE(4836)] = 186057, - [SMALL_STATE(4837)] = 186064, - [SMALL_STATE(4838)] = 186071, - [SMALL_STATE(4839)] = 186078, - [SMALL_STATE(4840)] = 186085, - [SMALL_STATE(4841)] = 186092, - [SMALL_STATE(4842)] = 186099, - [SMALL_STATE(4843)] = 186106, - [SMALL_STATE(4844)] = 186113, - [SMALL_STATE(4845)] = 186120, - [SMALL_STATE(4846)] = 186127, - [SMALL_STATE(4847)] = 186134, - [SMALL_STATE(4848)] = 186141, - [SMALL_STATE(4849)] = 186148, - [SMALL_STATE(4850)] = 186155, - [SMALL_STATE(4851)] = 186162, - [SMALL_STATE(4852)] = 186169, - [SMALL_STATE(4853)] = 186176, - [SMALL_STATE(4854)] = 186183, - [SMALL_STATE(4855)] = 186190, - [SMALL_STATE(4856)] = 186197, - [SMALL_STATE(4857)] = 186204, - [SMALL_STATE(4858)] = 186211, - [SMALL_STATE(4859)] = 186218, - [SMALL_STATE(4860)] = 186225, - [SMALL_STATE(4861)] = 186232, - [SMALL_STATE(4862)] = 186239, - [SMALL_STATE(4863)] = 186246, - [SMALL_STATE(4864)] = 186253, - [SMALL_STATE(4865)] = 186260, - [SMALL_STATE(4866)] = 186267, - [SMALL_STATE(4867)] = 186274, - [SMALL_STATE(4868)] = 186281, - [SMALL_STATE(4869)] = 186288, - [SMALL_STATE(4870)] = 186295, - [SMALL_STATE(4871)] = 186302, - [SMALL_STATE(4872)] = 186309, - [SMALL_STATE(4873)] = 186316, - [SMALL_STATE(4874)] = 186323, - [SMALL_STATE(4875)] = 186330, - [SMALL_STATE(4876)] = 186337, - [SMALL_STATE(4877)] = 186344, - [SMALL_STATE(4878)] = 186351, - [SMALL_STATE(4879)] = 186358, - [SMALL_STATE(4880)] = 186365, - [SMALL_STATE(4881)] = 186372, - [SMALL_STATE(4882)] = 186379, - [SMALL_STATE(4883)] = 186386, - [SMALL_STATE(4884)] = 186393, - [SMALL_STATE(4885)] = 186400, - [SMALL_STATE(4886)] = 186407, - [SMALL_STATE(4887)] = 186414, - [SMALL_STATE(4888)] = 186421, - [SMALL_STATE(4889)] = 186428, - [SMALL_STATE(4890)] = 186435, - [SMALL_STATE(4891)] = 186442, - [SMALL_STATE(4892)] = 186449, - [SMALL_STATE(4893)] = 186456, - [SMALL_STATE(4894)] = 186463, - [SMALL_STATE(4895)] = 186470, - [SMALL_STATE(4896)] = 186477, - [SMALL_STATE(4897)] = 186484, - [SMALL_STATE(4898)] = 186491, - [SMALL_STATE(4899)] = 186498, - [SMALL_STATE(4900)] = 186505, - [SMALL_STATE(4901)] = 186512, - [SMALL_STATE(4902)] = 186519, - [SMALL_STATE(4903)] = 186526, - [SMALL_STATE(4904)] = 186533, - [SMALL_STATE(4905)] = 186540, - [SMALL_STATE(4906)] = 186547, - [SMALL_STATE(4907)] = 186554, - [SMALL_STATE(4908)] = 186561, - [SMALL_STATE(4909)] = 186568, - [SMALL_STATE(4910)] = 186575, - [SMALL_STATE(4911)] = 186582, - [SMALL_STATE(4912)] = 186589, - [SMALL_STATE(4913)] = 186596, - [SMALL_STATE(4914)] = 186603, - [SMALL_STATE(4915)] = 186610, - [SMALL_STATE(4916)] = 186617, - [SMALL_STATE(4917)] = 186624, - [SMALL_STATE(4918)] = 186631, - [SMALL_STATE(4919)] = 186638, - [SMALL_STATE(4920)] = 186645, - [SMALL_STATE(4921)] = 186652, - [SMALL_STATE(4922)] = 186659, - [SMALL_STATE(4923)] = 186666, - [SMALL_STATE(4924)] = 186673, - [SMALL_STATE(4925)] = 186680, - [SMALL_STATE(4926)] = 186687, - [SMALL_STATE(4927)] = 186694, - [SMALL_STATE(4928)] = 186701, - [SMALL_STATE(4929)] = 186708, - [SMALL_STATE(4930)] = 186715, - [SMALL_STATE(4931)] = 186722, - [SMALL_STATE(4932)] = 186729, - [SMALL_STATE(4933)] = 186736, - [SMALL_STATE(4934)] = 186743, - [SMALL_STATE(4935)] = 186750, - [SMALL_STATE(4936)] = 186757, - [SMALL_STATE(4937)] = 186764, - [SMALL_STATE(4938)] = 186771, - [SMALL_STATE(4939)] = 186778, - [SMALL_STATE(4940)] = 186785, - [SMALL_STATE(4941)] = 186792, - [SMALL_STATE(4942)] = 186799, - [SMALL_STATE(4943)] = 186806, - [SMALL_STATE(4944)] = 186813, - [SMALL_STATE(4945)] = 186820, - [SMALL_STATE(4946)] = 186827, - [SMALL_STATE(4947)] = 186834, - [SMALL_STATE(4948)] = 186841, - [SMALL_STATE(4949)] = 186848, - [SMALL_STATE(4950)] = 186855, - [SMALL_STATE(4951)] = 186862, - [SMALL_STATE(4952)] = 186869, - [SMALL_STATE(4953)] = 186876, - [SMALL_STATE(4954)] = 186883, - [SMALL_STATE(4955)] = 186890, - [SMALL_STATE(4956)] = 186897, - [SMALL_STATE(4957)] = 186904, - [SMALL_STATE(4958)] = 186911, - [SMALL_STATE(4959)] = 186918, - [SMALL_STATE(4960)] = 186925, - [SMALL_STATE(4961)] = 186932, - [SMALL_STATE(4962)] = 186939, - [SMALL_STATE(4963)] = 186946, - [SMALL_STATE(4964)] = 186953, - [SMALL_STATE(4965)] = 186960, - [SMALL_STATE(4966)] = 186967, - [SMALL_STATE(4967)] = 186974, - [SMALL_STATE(4968)] = 186981, - [SMALL_STATE(4969)] = 186988, - [SMALL_STATE(4970)] = 186995, - [SMALL_STATE(4971)] = 187002, - [SMALL_STATE(4972)] = 187009, - [SMALL_STATE(4973)] = 187016, - [SMALL_STATE(4974)] = 187023, - [SMALL_STATE(4975)] = 187030, - [SMALL_STATE(4976)] = 187037, - [SMALL_STATE(4977)] = 187044, - [SMALL_STATE(4978)] = 187051, - [SMALL_STATE(4979)] = 187058, - [SMALL_STATE(4980)] = 187065, - [SMALL_STATE(4981)] = 187072, - [SMALL_STATE(4982)] = 187079, - [SMALL_STATE(4983)] = 187086, - [SMALL_STATE(4984)] = 187093, - [SMALL_STATE(4985)] = 187100, - [SMALL_STATE(4986)] = 187107, - [SMALL_STATE(4987)] = 187114, - [SMALL_STATE(4988)] = 187121, - [SMALL_STATE(4989)] = 187128, - [SMALL_STATE(4990)] = 187135, - [SMALL_STATE(4991)] = 187142, - [SMALL_STATE(4992)] = 187149, - [SMALL_STATE(4993)] = 187156, - [SMALL_STATE(4994)] = 187163, - [SMALL_STATE(4995)] = 187170, - [SMALL_STATE(4996)] = 187177, - [SMALL_STATE(4997)] = 187184, - [SMALL_STATE(4998)] = 187191, - [SMALL_STATE(4999)] = 187198, - [SMALL_STATE(5000)] = 187205, - [SMALL_STATE(5001)] = 187212, - [SMALL_STATE(5002)] = 187219, - [SMALL_STATE(5003)] = 187226, - [SMALL_STATE(5004)] = 187233, - [SMALL_STATE(5005)] = 187240, - [SMALL_STATE(5006)] = 187247, - [SMALL_STATE(5007)] = 187254, - [SMALL_STATE(5008)] = 187261, - [SMALL_STATE(5009)] = 187268, - [SMALL_STATE(5010)] = 187275, - [SMALL_STATE(5011)] = 187282, - [SMALL_STATE(5012)] = 187289, - [SMALL_STATE(5013)] = 187296, - [SMALL_STATE(5014)] = 187303, - [SMALL_STATE(5015)] = 187310, - [SMALL_STATE(5016)] = 187317, - [SMALL_STATE(5017)] = 187324, - [SMALL_STATE(5018)] = 187331, - [SMALL_STATE(5019)] = 187338, - [SMALL_STATE(5020)] = 187345, - [SMALL_STATE(5021)] = 187352, - [SMALL_STATE(5022)] = 187359, - [SMALL_STATE(5023)] = 187366, - [SMALL_STATE(5024)] = 187373, - [SMALL_STATE(5025)] = 187380, - [SMALL_STATE(5026)] = 187387, - [SMALL_STATE(5027)] = 187394, - [SMALL_STATE(5028)] = 187401, - [SMALL_STATE(5029)] = 187408, - [SMALL_STATE(5030)] = 187415, - [SMALL_STATE(5031)] = 187422, - [SMALL_STATE(5032)] = 187429, - [SMALL_STATE(5033)] = 187436, - [SMALL_STATE(5034)] = 187443, - [SMALL_STATE(5035)] = 187450, - [SMALL_STATE(5036)] = 187457, - [SMALL_STATE(5037)] = 187464, - [SMALL_STATE(5038)] = 187471, - [SMALL_STATE(5039)] = 187478, - [SMALL_STATE(5040)] = 187485, + [SMALL_STATE(422)] = 0, + [SMALL_STATE(423)] = 79, + [SMALL_STATE(424)] = 150, + [SMALL_STATE(425)] = 288, + [SMALL_STATE(426)] = 426, + [SMALL_STATE(427)] = 564, + [SMALL_STATE(428)] = 702, + [SMALL_STATE(429)] = 807, + [SMALL_STATE(430)] = 912, + [SMALL_STATE(431)] = 1017, + [SMALL_STATE(432)] = 1121, + [SMALL_STATE(433)] = 1225, + [SMALL_STATE(434)] = 1329, + [SMALL_STATE(435)] = 1433, + [SMALL_STATE(436)] = 1537, + [SMALL_STATE(437)] = 1641, + [SMALL_STATE(438)] = 1745, + [SMALL_STATE(439)] = 1849, + [SMALL_STATE(440)] = 1952, + [SMALL_STATE(441)] = 2023, + [SMALL_STATE(442)] = 2126, + [SMALL_STATE(443)] = 2229, + [SMALL_STATE(444)] = 2332, + [SMALL_STATE(445)] = 2435, + [SMALL_STATE(446)] = 2506, + [SMALL_STATE(447)] = 2609, + [SMALL_STATE(448)] = 2712, + [SMALL_STATE(449)] = 2815, + [SMALL_STATE(450)] = 2918, + [SMALL_STATE(451)] = 3021, + [SMALL_STATE(452)] = 3124, + [SMALL_STATE(453)] = 3192, + [SMALL_STATE(454)] = 3262, + [SMALL_STATE(455)] = 3364, + [SMALL_STATE(456)] = 3466, + [SMALL_STATE(457)] = 3568, + [SMALL_STATE(458)] = 3670, + [SMALL_STATE(459)] = 3770, + [SMALL_STATE(460)] = 3868, + [SMALL_STATE(461)] = 3936, + [SMALL_STATE(462)] = 4034, + [SMALL_STATE(463)] = 4136, + [SMALL_STATE(464)] = 4238, + [SMALL_STATE(465)] = 4338, + [SMALL_STATE(466)] = 4440, + [SMALL_STATE(467)] = 4510, + [SMALL_STATE(468)] = 4612, + [SMALL_STATE(469)] = 4714, + [SMALL_STATE(470)] = 4816, + [SMALL_STATE(471)] = 4918, + [SMALL_STATE(472)] = 5020, + [SMALL_STATE(473)] = 5116, + [SMALL_STATE(474)] = 5214, + [SMALL_STATE(475)] = 5316, + [SMALL_STATE(476)] = 5417, + [SMALL_STATE(477)] = 5512, + [SMALL_STATE(478)] = 5609, + [SMALL_STATE(479)] = 5704, + [SMALL_STATE(480)] = 5799, + [SMALL_STATE(481)] = 5898, + [SMALL_STATE(482)] = 5967, + [SMALL_STATE(483)] = 6036, + [SMALL_STATE(484)] = 6133, + [SMALL_STATE(485)] = 6202, + [SMALL_STATE(486)] = 6271, + [SMALL_STATE(487)] = 6340, + [SMALL_STATE(488)] = 6407, + [SMALL_STATE(489)] = 6508, + [SMALL_STATE(490)] = 6605, + [SMALL_STATE(491)] = 6704, + [SMALL_STATE(492)] = 6771, + [SMALL_STATE(493)] = 6866, + [SMALL_STATE(494)] = 6935, + [SMALL_STATE(495)] = 7004, + [SMALL_STATE(496)] = 7105, + [SMALL_STATE(497)] = 7204, + [SMALL_STATE(498)] = 7305, + [SMALL_STATE(499)] = 7374, + [SMALL_STATE(500)] = 7473, + [SMALL_STATE(501)] = 7574, + [SMALL_STATE(502)] = 7670, + [SMALL_STATE(503)] = 7738, + [SMALL_STATE(504)] = 7806, + [SMALL_STATE(505)] = 7874, + [SMALL_STATE(506)] = 7942, + [SMALL_STATE(507)] = 8008, + [SMALL_STATE(508)] = 8104, + [SMALL_STATE(509)] = 8200, + [SMALL_STATE(510)] = 8296, + [SMALL_STATE(511)] = 8364, + [SMALL_STATE(512)] = 8460, + [SMALL_STATE(513)] = 8526, + [SMALL_STATE(514)] = 8592, + [SMALL_STATE(515)] = 8686, + [SMALL_STATE(516)] = 8782, + [SMALL_STATE(517)] = 8876, + [SMALL_STATE(518)] = 8970, + [SMALL_STATE(519)] = 9064, + [SMALL_STATE(520)] = 9132, + [SMALL_STATE(521)] = 9200, + [SMALL_STATE(522)] = 9268, + [SMALL_STATE(523)] = 9336, + [SMALL_STATE(524)] = 9404, + [SMALL_STATE(525)] = 9498, + [SMALL_STATE(526)] = 9564, + [SMALL_STATE(527)] = 9627, + [SMALL_STATE(528)] = 9690, + [SMALL_STATE(529)] = 9757, + [SMALL_STATE(530)] = 9850, + [SMALL_STATE(531)] = 9949, + [SMALL_STATE(532)] = 10044, + [SMALL_STATE(533)] = 10137, + [SMALL_STATE(534)] = 10204, + [SMALL_STATE(535)] = 10271, + [SMALL_STATE(536)] = 10366, + [SMALL_STATE(537)] = 10431, + [SMALL_STATE(538)] = 10494, + [SMALL_STATE(539)] = 10587, + [SMALL_STATE(540)] = 10654, + [SMALL_STATE(541)] = 10713, + [SMALL_STATE(542)] = 10806, + [SMALL_STATE(543)] = 10905, + [SMALL_STATE(544)] = 10968, + [SMALL_STATE(545)] = 11035, + [SMALL_STATE(546)] = 11128, + [SMALL_STATE(547)] = 11221, + [SMALL_STATE(548)] = 11288, + [SMALL_STATE(549)] = 11355, + [SMALL_STATE(550)] = 11448, + [SMALL_STATE(551)] = 11515, + [SMALL_STATE(552)] = 11582, + [SMALL_STATE(553)] = 11649, + [SMALL_STATE(554)] = 11716, + [SMALL_STATE(555)] = 11811, + [SMALL_STATE(556)] = 11904, + [SMALL_STATE(557)] = 11969, + [SMALL_STATE(558)] = 12062, + [SMALL_STATE(559)] = 12161, + [SMALL_STATE(560)] = 12228, + [SMALL_STATE(561)] = 12294, + [SMALL_STATE(562)] = 12392, + [SMALL_STATE(563)] = 12492, + [SMALL_STATE(564)] = 12590, + [SMALL_STATE(565)] = 12682, + [SMALL_STATE(566)] = 12798, + [SMALL_STATE(567)] = 12890, + [SMALL_STATE(568)] = 13006, + [SMALL_STATE(569)] = 13122, + [SMALL_STATE(570)] = 13214, + [SMALL_STATE(571)] = 13280, + [SMALL_STATE(572)] = 13346, + [SMALL_STATE(573)] = 13462, + [SMALL_STATE(574)] = 13528, + [SMALL_STATE(575)] = 13594, + [SMALL_STATE(576)] = 13660, + [SMALL_STATE(577)] = 13760, + [SMALL_STATE(578)] = 13860, + [SMALL_STATE(579)] = 13926, + [SMALL_STATE(580)] = 14016, + [SMALL_STATE(581)] = 14082, + [SMALL_STATE(582)] = 14198, + [SMALL_STATE(583)] = 14264, + [SMALL_STATE(584)] = 14354, + [SMALL_STATE(585)] = 14420, + [SMALL_STATE(586)] = 14518, + [SMALL_STATE(587)] = 14634, + [SMALL_STATE(588)] = 14750, + [SMALL_STATE(589)] = 14816, + [SMALL_STATE(590)] = 14914, + [SMALL_STATE(591)] = 15030, + [SMALL_STATE(592)] = 15128, + [SMALL_STATE(593)] = 15194, + [SMALL_STATE(594)] = 15263, + [SMALL_STATE(595)] = 15328, + [SMALL_STATE(596)] = 15393, + [SMALL_STATE(597)] = 15470, + [SMALL_STATE(598)] = 15569, + [SMALL_STATE(599)] = 15634, + [SMALL_STATE(600)] = 15733, + [SMALL_STATE(601)] = 15798, + [SMALL_STATE(602)] = 15897, + [SMALL_STATE(603)] = 15974, + [SMALL_STATE(604)] = 16073, + [SMALL_STATE(605)] = 16138, + [SMALL_STATE(606)] = 16237, + [SMALL_STATE(607)] = 16302, + [SMALL_STATE(608)] = 16371, + [SMALL_STATE(609)] = 16427, + [SMALL_STATE(610)] = 16483, + [SMALL_STATE(611)] = 16573, + [SMALL_STATE(612)] = 16631, + [SMALL_STATE(613)] = 16723, + [SMALL_STATE(614)] = 16815, + [SMALL_STATE(615)] = 16891, + [SMALL_STATE(616)] = 16953, + [SMALL_STATE(617)] = 17015, + [SMALL_STATE(618)] = 17073, + [SMALL_STATE(619)] = 17141, + [SMALL_STATE(620)] = 17199, + [SMALL_STATE(621)] = 17291, + [SMALL_STATE(622)] = 17355, + [SMALL_STATE(623)] = 17413, + [SMALL_STATE(624)] = 17475, + [SMALL_STATE(625)] = 17537, + [SMALL_STATE(626)] = 17613, + [SMALL_STATE(627)] = 17677, + [SMALL_STATE(628)] = 17769, + [SMALL_STATE(629)] = 17827, + [SMALL_STATE(630)] = 17895, + [SMALL_STATE(631)] = 17959, + [SMALL_STATE(632)] = 18020, + [SMALL_STATE(633)] = 18081, + [SMALL_STATE(634)] = 18172, + [SMALL_STATE(635)] = 18239, + [SMALL_STATE(636)] = 18308, + [SMALL_STATE(637)] = 18399, + [SMALL_STATE(638)] = 18488, + [SMALL_STATE(639)] = 18549, + [SMALL_STATE(640)] = 18610, + [SMALL_STATE(641)] = 18703, + [SMALL_STATE(642)] = 18770, + [SMALL_STATE(643)] = 18833, + [SMALL_STATE(644)] = 18894, + [SMALL_STATE(645)] = 18969, + [SMALL_STATE(646)] = 19044, + [SMALL_STATE(647)] = 19105, + [SMALL_STATE(648)] = 19160, + [SMALL_STATE(649)] = 19251, + [SMALL_STATE(650)] = 19314, + [SMALL_STATE(651)] = 19377, + [SMALL_STATE(652)] = 19440, + [SMALL_STATE(653)] = 19503, + [SMALL_STATE(654)] = 19592, + [SMALL_STATE(655)] = 19685, + [SMALL_STATE(656)] = 19774, + [SMALL_STATE(657)] = 19831, + [SMALL_STATE(658)] = 19894, + [SMALL_STATE(659)] = 19957, + [SMALL_STATE(660)] = 20018, + [SMALL_STATE(661)] = 20079, + [SMALL_STATE(662)] = 20172, + [SMALL_STATE(663)] = 20263, + [SMALL_STATE(664)] = 20326, + [SMALL_STATE(665)] = 20383, + [SMALL_STATE(666)] = 20444, + [SMALL_STATE(667)] = 20507, + [SMALL_STATE(668)] = 20568, + [SMALL_STATE(669)] = 20635, + [SMALL_STATE(670)] = 20710, + [SMALL_STATE(671)] = 20771, + [SMALL_STATE(672)] = 20832, + [SMALL_STATE(673)] = 20893, + [SMALL_STATE(674)] = 20968, + [SMALL_STATE(675)] = 21029, + [SMALL_STATE(676)] = 21103, + [SMALL_STATE(677)] = 21165, + [SMALL_STATE(678)] = 21227, + [SMALL_STATE(679)] = 21289, + [SMALL_STATE(680)] = 21351, + [SMALL_STATE(681)] = 21413, + [SMALL_STATE(682)] = 21473, + [SMALL_STATE(683)] = 21533, + [SMALL_STATE(684)] = 21587, + [SMALL_STATE(685)] = 21647, + [SMALL_STATE(686)] = 21707, + [SMALL_STATE(687)] = 21761, + [SMALL_STATE(688)] = 21851, + [SMALL_STATE(689)] = 21911, + [SMALL_STATE(690)] = 21965, + [SMALL_STATE(691)] = 22019, + [SMALL_STATE(692)] = 22079, + [SMALL_STATE(693)] = 22169, + [SMALL_STATE(694)] = 22229, + [SMALL_STATE(695)] = 22291, + [SMALL_STATE(696)] = 22345, + [SMALL_STATE(697)] = 22399, + [SMALL_STATE(698)] = 22471, + [SMALL_STATE(699)] = 22561, + [SMALL_STATE(700)] = 22627, + [SMALL_STATE(701)] = 22687, + [SMALL_STATE(702)] = 22741, + [SMALL_STATE(703)] = 22795, + [SMALL_STATE(704)] = 22861, + [SMALL_STATE(705)] = 22921, + [SMALL_STATE(706)] = 22983, + [SMALL_STATE(707)] = 23055, + [SMALL_STATE(708)] = 23127, + [SMALL_STATE(709)] = 23187, + [SMALL_STATE(710)] = 23259, + [SMALL_STATE(711)] = 23313, + [SMALL_STATE(712)] = 23385, + [SMALL_STATE(713)] = 23447, + [SMALL_STATE(714)] = 23509, + [SMALL_STATE(715)] = 23569, + [SMALL_STATE(716)] = 23643, + [SMALL_STATE(717)] = 23697, + [SMALL_STATE(718)] = 23751, + [SMALL_STATE(719)] = 23811, + [SMALL_STATE(720)] = 23871, + [SMALL_STATE(721)] = 23931, + [SMALL_STATE(722)] = 23993, + [SMALL_STATE(723)] = 24047, + [SMALL_STATE(724)] = 24101, + [SMALL_STATE(725)] = 24161, + [SMALL_STATE(726)] = 24215, + [SMALL_STATE(727)] = 24287, + [SMALL_STATE(728)] = 24347, + [SMALL_STATE(729)] = 24407, + [SMALL_STATE(730)] = 24467, + [SMALL_STATE(731)] = 24527, + [SMALL_STATE(732)] = 24593, + [SMALL_STATE(733)] = 24665, + [SMALL_STATE(734)] = 24719, + [SMALL_STATE(735)] = 24785, + [SMALL_STATE(736)] = 24847, + [SMALL_STATE(737)] = 24907, + [SMALL_STATE(738)] = 24967, + [SMALL_STATE(739)] = 25027, + [SMALL_STATE(740)] = 25081, + [SMALL_STATE(741)] = 25141, + [SMALL_STATE(742)] = 25203, + [SMALL_STATE(743)] = 25263, + [SMALL_STATE(744)] = 25323, + [SMALL_STATE(745)] = 25395, + [SMALL_STATE(746)] = 25449, + [SMALL_STATE(747)] = 25509, + [SMALL_STATE(748)] = 25569, + [SMALL_STATE(749)] = 25629, + [SMALL_STATE(750)] = 25683, + [SMALL_STATE(751)] = 25736, + [SMALL_STATE(752)] = 25789, + [SMALL_STATE(753)] = 25842, + [SMALL_STATE(754)] = 25895, + [SMALL_STATE(755)] = 25948, + [SMALL_STATE(756)] = 26001, + [SMALL_STATE(757)] = 26054, + [SMALL_STATE(758)] = 26111, + [SMALL_STATE(759)] = 26164, + [SMALL_STATE(760)] = 26223, + [SMALL_STATE(761)] = 26282, + [SMALL_STATE(762)] = 26341, + [SMALL_STATE(763)] = 26400, + [SMALL_STATE(764)] = 26453, + [SMALL_STATE(765)] = 26512, + [SMALL_STATE(766)] = 26565, + [SMALL_STATE(767)] = 26626, + [SMALL_STATE(768)] = 26685, + [SMALL_STATE(769)] = 26742, + [SMALL_STATE(770)] = 26801, + [SMALL_STATE(771)] = 26860, + [SMALL_STATE(772)] = 26919, + [SMALL_STATE(773)] = 26972, + [SMALL_STATE(774)] = 27031, + [SMALL_STATE(775)] = 27090, + [SMALL_STATE(776)] = 27143, + [SMALL_STATE(777)] = 27202, + [SMALL_STATE(778)] = 27261, + [SMALL_STATE(779)] = 27320, + [SMALL_STATE(780)] = 27379, + [SMALL_STATE(781)] = 27438, + [SMALL_STATE(782)] = 27497, + [SMALL_STATE(783)] = 27556, + [SMALL_STATE(784)] = 27615, + [SMALL_STATE(785)] = 27674, + [SMALL_STATE(786)] = 27727, + [SMALL_STATE(787)] = 27786, + [SMALL_STATE(788)] = 27843, + [SMALL_STATE(789)] = 27902, + [SMALL_STATE(790)] = 27955, + [SMALL_STATE(791)] = 28008, + [SMALL_STATE(792)] = 28067, + [SMALL_STATE(793)] = 28126, + [SMALL_STATE(794)] = 28179, + [SMALL_STATE(795)] = 28236, + [SMALL_STATE(796)] = 28289, + [SMALL_STATE(797)] = 28348, + [SMALL_STATE(798)] = 28407, + [SMALL_STATE(799)] = 28466, + [SMALL_STATE(800)] = 28525, + [SMALL_STATE(801)] = 28578, + [SMALL_STATE(802)] = 28637, + [SMALL_STATE(803)] = 28696, + [SMALL_STATE(804)] = 28755, + [SMALL_STATE(805)] = 28808, + [SMALL_STATE(806)] = 28867, + [SMALL_STATE(807)] = 28926, + [SMALL_STATE(808)] = 28979, + [SMALL_STATE(809)] = 29038, + [SMALL_STATE(810)] = 29091, + [SMALL_STATE(811)] = 29150, + [SMALL_STATE(812)] = 29203, + [SMALL_STATE(813)] = 29256, + [SMALL_STATE(814)] = 29309, + [SMALL_STATE(815)] = 29368, + [SMALL_STATE(816)] = 29421, + [SMALL_STATE(817)] = 29480, + [SMALL_STATE(818)] = 29539, + [SMALL_STATE(819)] = 29592, + [SMALL_STATE(820)] = 29653, + [SMALL_STATE(821)] = 29714, + [SMALL_STATE(822)] = 29767, + [SMALL_STATE(823)] = 29820, + [SMALL_STATE(824)] = 29873, + [SMALL_STATE(825)] = 29934, + [SMALL_STATE(826)] = 29993, + [SMALL_STATE(827)] = 30046, + [SMALL_STATE(828)] = 30099, + [SMALL_STATE(829)] = 30152, + [SMALL_STATE(830)] = 30205, + [SMALL_STATE(831)] = 30264, + [SMALL_STATE(832)] = 30317, + [SMALL_STATE(833)] = 30376, + [SMALL_STATE(834)] = 30435, + [SMALL_STATE(835)] = 30494, + [SMALL_STATE(836)] = 30547, + [SMALL_STATE(837)] = 30606, + [SMALL_STATE(838)] = 30667, + [SMALL_STATE(839)] = 30728, + [SMALL_STATE(840)] = 30781, + [SMALL_STATE(841)] = 30839, + [SMALL_STATE(842)] = 30897, + [SMALL_STATE(843)] = 30955, + [SMALL_STATE(844)] = 31013, + [SMALL_STATE(845)] = 31071, + [SMALL_STATE(846)] = 31123, + [SMALL_STATE(847)] = 31181, + [SMALL_STATE(848)] = 31233, + [SMALL_STATE(849)] = 31285, + [SMALL_STATE(850)] = 31337, + [SMALL_STATE(851)] = 31395, + [SMALL_STATE(852)] = 31447, + [SMALL_STATE(853)] = 31499, + [SMALL_STATE(854)] = 31551, + [SMALL_STATE(855)] = 31603, + [SMALL_STATE(856)] = 31655, + [SMALL_STATE(857)] = 31707, + [SMALL_STATE(858)] = 31759, + [SMALL_STATE(859)] = 31811, + [SMALL_STATE(860)] = 31867, + [SMALL_STATE(861)] = 31919, + [SMALL_STATE(862)] = 31971, + [SMALL_STATE(863)] = 32023, + [SMALL_STATE(864)] = 32081, + [SMALL_STATE(865)] = 32133, + [SMALL_STATE(866)] = 32189, + [SMALL_STATE(867)] = 32241, + [SMALL_STATE(868)] = 32299, + [SMALL_STATE(869)] = 32351, + [SMALL_STATE(870)] = 32407, + [SMALL_STATE(871)] = 32459, + [SMALL_STATE(872)] = 32511, + [SMALL_STATE(873)] = 32563, + [SMALL_STATE(874)] = 32621, + [SMALL_STATE(875)] = 32673, + [SMALL_STATE(876)] = 32731, + [SMALL_STATE(877)] = 32783, + [SMALL_STATE(878)] = 32881, + [SMALL_STATE(879)] = 32933, + [SMALL_STATE(880)] = 32985, + [SMALL_STATE(881)] = 33037, + [SMALL_STATE(882)] = 33089, + [SMALL_STATE(883)] = 33187, + [SMALL_STATE(884)] = 33239, + [SMALL_STATE(885)] = 33291, + [SMALL_STATE(886)] = 33349, + [SMALL_STATE(887)] = 33401, + [SMALL_STATE(888)] = 33459, + [SMALL_STATE(889)] = 33511, + [SMALL_STATE(890)] = 33567, + [SMALL_STATE(891)] = 33625, + [SMALL_STATE(892)] = 33683, + [SMALL_STATE(893)] = 33741, + [SMALL_STATE(894)] = 33793, + [SMALL_STATE(895)] = 33845, + [SMALL_STATE(896)] = 33897, + [SMALL_STATE(897)] = 33955, + [SMALL_STATE(898)] = 34013, + [SMALL_STATE(899)] = 34071, + [SMALL_STATE(900)] = 34129, + [SMALL_STATE(901)] = 34187, + [SMALL_STATE(902)] = 34239, + [SMALL_STATE(903)] = 34297, + [SMALL_STATE(904)] = 34355, + [SMALL_STATE(905)] = 34407, + [SMALL_STATE(906)] = 34459, + [SMALL_STATE(907)] = 34511, + [SMALL_STATE(908)] = 34563, + [SMALL_STATE(909)] = 34615, + [SMALL_STATE(910)] = 34673, + [SMALL_STATE(911)] = 34725, + [SMALL_STATE(912)] = 34783, + [SMALL_STATE(913)] = 34841, + [SMALL_STATE(914)] = 34939, + [SMALL_STATE(915)] = 34991, + [SMALL_STATE(916)] = 35049, + [SMALL_STATE(917)] = 35107, + [SMALL_STATE(918)] = 35159, + [SMALL_STATE(919)] = 35211, + [SMALL_STATE(920)] = 35263, + [SMALL_STATE(921)] = 35315, + [SMALL_STATE(922)] = 35367, + [SMALL_STATE(923)] = 35465, + [SMALL_STATE(924)] = 35517, + [SMALL_STATE(925)] = 35569, + [SMALL_STATE(926)] = 35625, + [SMALL_STATE(927)] = 35677, + [SMALL_STATE(928)] = 35775, + [SMALL_STATE(929)] = 35827, + [SMALL_STATE(930)] = 35879, + [SMALL_STATE(931)] = 35931, + [SMALL_STATE(932)] = 35989, + [SMALL_STATE(933)] = 36087, + [SMALL_STATE(934)] = 36139, + [SMALL_STATE(935)] = 36197, + [SMALL_STATE(936)] = 36255, + [SMALL_STATE(937)] = 36307, + [SMALL_STATE(938)] = 36363, + [SMALL_STATE(939)] = 36415, + [SMALL_STATE(940)] = 36467, + [SMALL_STATE(941)] = 36519, + [SMALL_STATE(942)] = 36577, + [SMALL_STATE(943)] = 36635, + [SMALL_STATE(944)] = 36687, + [SMALL_STATE(945)] = 36739, + [SMALL_STATE(946)] = 36791, + [SMALL_STATE(947)] = 36843, + [SMALL_STATE(948)] = 36895, + [SMALL_STATE(949)] = 36947, + [SMALL_STATE(950)] = 36999, + [SMALL_STATE(951)] = 37051, + [SMALL_STATE(952)] = 37103, + [SMALL_STATE(953)] = 37155, + [SMALL_STATE(954)] = 37253, + [SMALL_STATE(955)] = 37305, + [SMALL_STATE(956)] = 37357, + [SMALL_STATE(957)] = 37415, + [SMALL_STATE(958)] = 37467, + [SMALL_STATE(959)] = 37525, + [SMALL_STATE(960)] = 37577, + [SMALL_STATE(961)] = 37629, + [SMALL_STATE(962)] = 37687, + [SMALL_STATE(963)] = 37739, + [SMALL_STATE(964)] = 37791, + [SMALL_STATE(965)] = 37843, + [SMALL_STATE(966)] = 37895, + [SMALL_STATE(967)] = 37947, + [SMALL_STATE(968)] = 37999, + [SMALL_STATE(969)] = 38057, + [SMALL_STATE(970)] = 38115, + [SMALL_STATE(971)] = 38167, + [SMALL_STATE(972)] = 38219, + [SMALL_STATE(973)] = 38271, + [SMALL_STATE(974)] = 38323, + [SMALL_STATE(975)] = 38381, + [SMALL_STATE(976)] = 38439, + [SMALL_STATE(977)] = 38497, + [SMALL_STATE(978)] = 38555, + [SMALL_STATE(979)] = 38613, + [SMALL_STATE(980)] = 38665, + [SMALL_STATE(981)] = 38717, + [SMALL_STATE(982)] = 38769, + [SMALL_STATE(983)] = 38821, + [SMALL_STATE(984)] = 38873, + [SMALL_STATE(985)] = 38925, + [SMALL_STATE(986)] = 38977, + [SMALL_STATE(987)] = 39035, + [SMALL_STATE(988)] = 39093, + [SMALL_STATE(989)] = 39145, + [SMALL_STATE(990)] = 39197, + [SMALL_STATE(991)] = 39249, + [SMALL_STATE(992)] = 39301, + [SMALL_STATE(993)] = 39399, + [SMALL_STATE(994)] = 39455, + [SMALL_STATE(995)] = 39512, + [SMALL_STATE(996)] = 39563, + [SMALL_STATE(997)] = 39614, + [SMALL_STATE(998)] = 39671, + [SMALL_STATE(999)] = 39722, + [SMALL_STATE(1000)] = 39817, + [SMALL_STATE(1001)] = 39872, + [SMALL_STATE(1002)] = 39923, + [SMALL_STATE(1003)] = 39974, + [SMALL_STATE(1004)] = 40025, + [SMALL_STATE(1005)] = 40076, + [SMALL_STATE(1006)] = 40127, + [SMALL_STATE(1007)] = 40184, + [SMALL_STATE(1008)] = 40235, + [SMALL_STATE(1009)] = 40286, + [SMALL_STATE(1010)] = 40337, + [SMALL_STATE(1011)] = 40394, + [SMALL_STATE(1012)] = 40449, + [SMALL_STATE(1013)] = 40504, + [SMALL_STATE(1014)] = 40561, + [SMALL_STATE(1015)] = 40616, + [SMALL_STATE(1016)] = 40667, + [SMALL_STATE(1017)] = 40718, + [SMALL_STATE(1018)] = 40769, + [SMALL_STATE(1019)] = 40826, + [SMALL_STATE(1020)] = 40877, + [SMALL_STATE(1021)] = 40932, + [SMALL_STATE(1022)] = 40995, + [SMALL_STATE(1023)] = 41046, + [SMALL_STATE(1024)] = 41103, + [SMALL_STATE(1025)] = 41154, + [SMALL_STATE(1026)] = 41205, + [SMALL_STATE(1027)] = 41256, + [SMALL_STATE(1028)] = 41307, + [SMALL_STATE(1029)] = 41358, + [SMALL_STATE(1030)] = 41409, + [SMALL_STATE(1031)] = 41460, + [SMALL_STATE(1032)] = 41511, + [SMALL_STATE(1033)] = 41562, + [SMALL_STATE(1034)] = 41613, + [SMALL_STATE(1035)] = 41664, + [SMALL_STATE(1036)] = 41759, + [SMALL_STATE(1037)] = 41810, + [SMALL_STATE(1038)] = 41867, + [SMALL_STATE(1039)] = 41922, + [SMALL_STATE(1040)] = 41973, + [SMALL_STATE(1041)] = 42024, + [SMALL_STATE(1042)] = 42075, + [SMALL_STATE(1043)] = 42132, + [SMALL_STATE(1044)] = 42183, + [SMALL_STATE(1045)] = 42240, + [SMALL_STATE(1046)] = 42297, + [SMALL_STATE(1047)] = 42354, + [SMALL_STATE(1048)] = 42405, + [SMALL_STATE(1049)] = 42462, + [SMALL_STATE(1050)] = 42519, + [SMALL_STATE(1051)] = 42570, + [SMALL_STATE(1052)] = 42627, + [SMALL_STATE(1053)] = 42678, + [SMALL_STATE(1054)] = 42773, + [SMALL_STATE(1055)] = 42830, + [SMALL_STATE(1056)] = 42881, + [SMALL_STATE(1057)] = 42932, + [SMALL_STATE(1058)] = 42983, + [SMALL_STATE(1059)] = 43040, + [SMALL_STATE(1060)] = 43091, + [SMALL_STATE(1061)] = 43142, + [SMALL_STATE(1062)] = 43199, + [SMALL_STATE(1063)] = 43250, + [SMALL_STATE(1064)] = 43301, + [SMALL_STATE(1065)] = 43358, + [SMALL_STATE(1066)] = 43453, + [SMALL_STATE(1067)] = 43548, + [SMALL_STATE(1068)] = 43605, + [SMALL_STATE(1069)] = 43662, + [SMALL_STATE(1070)] = 43713, + [SMALL_STATE(1071)] = 43768, + [SMALL_STATE(1072)] = 43825, + [SMALL_STATE(1073)] = 43876, + [SMALL_STATE(1074)] = 43927, + [SMALL_STATE(1075)] = 43982, + [SMALL_STATE(1076)] = 44039, + [SMALL_STATE(1077)] = 44090, + [SMALL_STATE(1078)] = 44141, + [SMALL_STATE(1079)] = 44198, + [SMALL_STATE(1080)] = 44249, + [SMALL_STATE(1081)] = 44300, + [SMALL_STATE(1082)] = 44351, + [SMALL_STATE(1083)] = 44408, + [SMALL_STATE(1084)] = 44459, + [SMALL_STATE(1085)] = 44510, + [SMALL_STATE(1086)] = 44567, + [SMALL_STATE(1087)] = 44630, + [SMALL_STATE(1088)] = 44681, + [SMALL_STATE(1089)] = 44738, + [SMALL_STATE(1090)] = 44795, + [SMALL_STATE(1091)] = 44846, + [SMALL_STATE(1092)] = 44903, + [SMALL_STATE(1093)] = 44954, + [SMALL_STATE(1094)] = 45009, + [SMALL_STATE(1095)] = 45066, + [SMALL_STATE(1096)] = 45121, + [SMALL_STATE(1097)] = 45216, + [SMALL_STATE(1098)] = 45267, + [SMALL_STATE(1099)] = 45318, + [SMALL_STATE(1100)] = 45369, + [SMALL_STATE(1101)] = 45426, + [SMALL_STATE(1102)] = 45477, + [SMALL_STATE(1103)] = 45528, + [SMALL_STATE(1104)] = 45579, + [SMALL_STATE(1105)] = 45630, + [SMALL_STATE(1106)] = 45681, + [SMALL_STATE(1107)] = 45732, + [SMALL_STATE(1108)] = 45783, + [SMALL_STATE(1109)] = 45840, + [SMALL_STATE(1110)] = 45891, + [SMALL_STATE(1111)] = 45942, + [SMALL_STATE(1112)] = 45997, + [SMALL_STATE(1113)] = 46048, + [SMALL_STATE(1114)] = 46103, + [SMALL_STATE(1115)] = 46154, + [SMALL_STATE(1116)] = 46205, + [SMALL_STATE(1117)] = 46262, + [SMALL_STATE(1118)] = 46313, + [SMALL_STATE(1119)] = 46364, + [SMALL_STATE(1120)] = 46415, + [SMALL_STATE(1121)] = 46466, + [SMALL_STATE(1122)] = 46561, + [SMALL_STATE(1123)] = 46612, + [SMALL_STATE(1124)] = 46669, + [SMALL_STATE(1125)] = 46726, + [SMALL_STATE(1126)] = 46783, + [SMALL_STATE(1127)] = 46852, + [SMALL_STATE(1128)] = 46903, + [SMALL_STATE(1129)] = 46998, + [SMALL_STATE(1130)] = 47055, + [SMALL_STATE(1131)] = 47112, + [SMALL_STATE(1132)] = 47163, + [SMALL_STATE(1133)] = 47220, + [SMALL_STATE(1134)] = 47271, + [SMALL_STATE(1135)] = 47326, + [SMALL_STATE(1136)] = 47381, + [SMALL_STATE(1137)] = 47432, + [SMALL_STATE(1138)] = 47483, + [SMALL_STATE(1139)] = 47534, + [SMALL_STATE(1140)] = 47585, + [SMALL_STATE(1141)] = 47636, + [SMALL_STATE(1142)] = 47687, + [SMALL_STATE(1143)] = 47738, + [SMALL_STATE(1144)] = 47789, + [SMALL_STATE(1145)] = 47840, + [SMALL_STATE(1146)] = 47891, + [SMALL_STATE(1147)] = 47948, + [SMALL_STATE(1148)] = 47999, + [SMALL_STATE(1149)] = 48050, + [SMALL_STATE(1150)] = 48105, + [SMALL_STATE(1151)] = 48156, + [SMALL_STATE(1152)] = 48207, + [SMALL_STATE(1153)] = 48258, + [SMALL_STATE(1154)] = 48309, + [SMALL_STATE(1155)] = 48366, + [SMALL_STATE(1156)] = 48417, + [SMALL_STATE(1157)] = 48468, + [SMALL_STATE(1158)] = 48519, + [SMALL_STATE(1159)] = 48574, + [SMALL_STATE(1160)] = 48625, + [SMALL_STATE(1161)] = 48681, + [SMALL_STATE(1162)] = 48731, + [SMALL_STATE(1163)] = 48785, + [SMALL_STATE(1164)] = 48839, + [SMALL_STATE(1165)] = 48889, + [SMALL_STATE(1166)] = 48939, + [SMALL_STATE(1167)] = 48989, + [SMALL_STATE(1168)] = 49051, + [SMALL_STATE(1169)] = 49143, + [SMALL_STATE(1170)] = 49193, + [SMALL_STATE(1171)] = 49285, + [SMALL_STATE(1172)] = 49335, + [SMALL_STATE(1173)] = 49385, + [SMALL_STATE(1174)] = 49435, + [SMALL_STATE(1175)] = 49485, + [SMALL_STATE(1176)] = 49535, + [SMALL_STATE(1177)] = 49585, + [SMALL_STATE(1178)] = 49635, + [SMALL_STATE(1179)] = 49685, + [SMALL_STATE(1180)] = 49743, + [SMALL_STATE(1181)] = 49793, + [SMALL_STATE(1182)] = 49843, + [SMALL_STATE(1183)] = 49893, + [SMALL_STATE(1184)] = 49943, + [SMALL_STATE(1185)] = 49993, + [SMALL_STATE(1186)] = 50047, + [SMALL_STATE(1187)] = 50097, + [SMALL_STATE(1188)] = 50189, + [SMALL_STATE(1189)] = 50239, + [SMALL_STATE(1190)] = 50293, + [SMALL_STATE(1191)] = 50343, + [SMALL_STATE(1192)] = 50393, + [SMALL_STATE(1193)] = 50443, + [SMALL_STATE(1194)] = 50497, + [SMALL_STATE(1195)] = 50591, + [SMALL_STATE(1196)] = 50641, + [SMALL_STATE(1197)] = 50697, + [SMALL_STATE(1198)] = 50747, + [SMALL_STATE(1199)] = 50797, + [SMALL_STATE(1200)] = 50847, + [SMALL_STATE(1201)] = 50897, + [SMALL_STATE(1202)] = 50947, + [SMALL_STATE(1203)] = 50997, + [SMALL_STATE(1204)] = 51051, + [SMALL_STATE(1205)] = 51101, + [SMALL_STATE(1206)] = 51151, + [SMALL_STATE(1207)] = 51205, + [SMALL_STATE(1208)] = 51255, + [SMALL_STATE(1209)] = 51305, + [SMALL_STATE(1210)] = 51355, + [SMALL_STATE(1211)] = 51405, + [SMALL_STATE(1212)] = 51455, + [SMALL_STATE(1213)] = 51505, + [SMALL_STATE(1214)] = 51555, + [SMALL_STATE(1215)] = 51605, + [SMALL_STATE(1216)] = 51655, + [SMALL_STATE(1217)] = 51705, + [SMALL_STATE(1218)] = 51755, + [SMALL_STATE(1219)] = 51847, + [SMALL_STATE(1220)] = 51897, + [SMALL_STATE(1221)] = 51989, + [SMALL_STATE(1222)] = 52039, + [SMALL_STATE(1223)] = 52089, + [SMALL_STATE(1224)] = 52139, + [SMALL_STATE(1225)] = 52189, + [SMALL_STATE(1226)] = 52239, + [SMALL_STATE(1227)] = 52289, + [SMALL_STATE(1228)] = 52339, + [SMALL_STATE(1229)] = 52431, + [SMALL_STATE(1230)] = 52481, + [SMALL_STATE(1231)] = 52531, + [SMALL_STATE(1232)] = 52581, + [SMALL_STATE(1233)] = 52631, + [SMALL_STATE(1234)] = 52681, + [SMALL_STATE(1235)] = 52747, + [SMALL_STATE(1236)] = 52801, + [SMALL_STATE(1237)] = 52895, + [SMALL_STATE(1238)] = 52945, + [SMALL_STATE(1239)] = 53001, + [SMALL_STATE(1240)] = 53051, + [SMALL_STATE(1241)] = 53101, + [SMALL_STATE(1242)] = 53193, + [SMALL_STATE(1243)] = 53249, + [SMALL_STATE(1244)] = 53305, + [SMALL_STATE(1245)] = 53355, + [SMALL_STATE(1246)] = 53447, + [SMALL_STATE(1247)] = 53501, + [SMALL_STATE(1248)] = 53593, + [SMALL_STATE(1249)] = 53643, + [SMALL_STATE(1250)] = 53737, + [SMALL_STATE(1251)] = 53787, + [SMALL_STATE(1252)] = 53879, + [SMALL_STATE(1253)] = 53929, + [SMALL_STATE(1254)] = 53979, + [SMALL_STATE(1255)] = 54029, + [SMALL_STATE(1256)] = 54121, + [SMALL_STATE(1257)] = 54175, + [SMALL_STATE(1258)] = 54225, + [SMALL_STATE(1259)] = 54275, + [SMALL_STATE(1260)] = 54367, + [SMALL_STATE(1261)] = 54417, + [SMALL_STATE(1262)] = 54467, + [SMALL_STATE(1263)] = 54559, + [SMALL_STATE(1264)] = 54609, + [SMALL_STATE(1265)] = 54659, + [SMALL_STATE(1266)] = 54709, + [SMALL_STATE(1267)] = 54763, + [SMALL_STATE(1268)] = 54813, + [SMALL_STATE(1269)] = 54863, + [SMALL_STATE(1270)] = 54913, + [SMALL_STATE(1271)] = 55005, + [SMALL_STATE(1272)] = 55097, + [SMALL_STATE(1273)] = 55147, + [SMALL_STATE(1274)] = 55203, + [SMALL_STATE(1275)] = 55259, + [SMALL_STATE(1276)] = 55353, + [SMALL_STATE(1277)] = 55403, + [SMALL_STATE(1278)] = 55453, + [SMALL_STATE(1279)] = 55503, + [SMALL_STATE(1280)] = 55553, + [SMALL_STATE(1281)] = 55623, + [SMALL_STATE(1282)] = 55673, + [SMALL_STATE(1283)] = 55765, + [SMALL_STATE(1284)] = 55815, + [SMALL_STATE(1285)] = 55907, + [SMALL_STATE(1286)] = 55999, + [SMALL_STATE(1287)] = 56091, + [SMALL_STATE(1288)] = 56147, + [SMALL_STATE(1289)] = 56203, + [SMALL_STATE(1290)] = 56295, + [SMALL_STATE(1291)] = 56345, + [SMALL_STATE(1292)] = 56395, + [SMALL_STATE(1293)] = 56451, + [SMALL_STATE(1294)] = 56507, + [SMALL_STATE(1295)] = 56563, + [SMALL_STATE(1296)] = 56619, + [SMALL_STATE(1297)] = 56675, + [SMALL_STATE(1298)] = 56731, + [SMALL_STATE(1299)] = 56787, + [SMALL_STATE(1300)] = 56879, + [SMALL_STATE(1301)] = 56971, + [SMALL_STATE(1302)] = 57063, + [SMALL_STATE(1303)] = 57119, + [SMALL_STATE(1304)] = 57169, + [SMALL_STATE(1305)] = 57261, + [SMALL_STATE(1306)] = 57353, + [SMALL_STATE(1307)] = 57445, + [SMALL_STATE(1308)] = 57537, + [SMALL_STATE(1309)] = 57629, + [SMALL_STATE(1310)] = 57679, + [SMALL_STATE(1311)] = 57735, + [SMALL_STATE(1312)] = 57791, + [SMALL_STATE(1313)] = 57847, + [SMALL_STATE(1314)] = 57939, + [SMALL_STATE(1315)] = 58031, + [SMALL_STATE(1316)] = 58123, + [SMALL_STATE(1317)] = 58173, + [SMALL_STATE(1318)] = 58229, + [SMALL_STATE(1319)] = 58285, + [SMALL_STATE(1320)] = 58335, + [SMALL_STATE(1321)] = 58427, + [SMALL_STATE(1322)] = 58519, + [SMALL_STATE(1323)] = 58611, + [SMALL_STATE(1324)] = 58661, + [SMALL_STATE(1325)] = 58753, + [SMALL_STATE(1326)] = 58803, + [SMALL_STATE(1327)] = 58853, + [SMALL_STATE(1328)] = 58945, + [SMALL_STATE(1329)] = 59001, + [SMALL_STATE(1330)] = 59095, + [SMALL_STATE(1331)] = 59149, + [SMALL_STATE(1332)] = 59241, + [SMALL_STATE(1333)] = 59291, + [SMALL_STATE(1334)] = 59341, + [SMALL_STATE(1335)] = 59391, + [SMALL_STATE(1336)] = 59447, + [SMALL_STATE(1337)] = 59539, + [SMALL_STATE(1338)] = 59589, + [SMALL_STATE(1339)] = 59645, + [SMALL_STATE(1340)] = 59695, + [SMALL_STATE(1341)] = 59787, + [SMALL_STATE(1342)] = 59841, + [SMALL_STATE(1343)] = 59891, + [SMALL_STATE(1344)] = 59941, + [SMALL_STATE(1345)] = 59991, + [SMALL_STATE(1346)] = 60041, + [SMALL_STATE(1347)] = 60091, + [SMALL_STATE(1348)] = 60141, + [SMALL_STATE(1349)] = 60233, + [SMALL_STATE(1350)] = 60325, + [SMALL_STATE(1351)] = 60417, + [SMALL_STATE(1352)] = 60467, + [SMALL_STATE(1353)] = 60517, + [SMALL_STATE(1354)] = 60567, + [SMALL_STATE(1355)] = 60659, + [SMALL_STATE(1356)] = 60751, + [SMALL_STATE(1357)] = 60843, + [SMALL_STATE(1358)] = 60935, + [SMALL_STATE(1359)] = 61027, + [SMALL_STATE(1360)] = 61081, + [SMALL_STATE(1361)] = 61131, + [SMALL_STATE(1362)] = 61181, + [SMALL_STATE(1363)] = 61234, + [SMALL_STATE(1364)] = 61287, + [SMALL_STATE(1365)] = 61336, + [SMALL_STATE(1366)] = 61385, + [SMALL_STATE(1367)] = 61438, + [SMALL_STATE(1368)] = 61487, + [SMALL_STATE(1369)] = 61542, + [SMALL_STATE(1370)] = 61597, + [SMALL_STATE(1371)] = 61650, + [SMALL_STATE(1372)] = 61699, + [SMALL_STATE(1373)] = 61748, + [SMALL_STATE(1374)] = 61797, + [SMALL_STATE(1375)] = 61850, + [SMALL_STATE(1376)] = 61903, + [SMALL_STATE(1377)] = 61958, + [SMALL_STATE(1378)] = 62013, + [SMALL_STATE(1379)] = 62062, + [SMALL_STATE(1380)] = 62115, + [SMALL_STATE(1381)] = 62170, + [SMALL_STATE(1382)] = 62219, + [SMALL_STATE(1383)] = 62268, + [SMALL_STATE(1384)] = 62323, + [SMALL_STATE(1385)] = 62372, + [SMALL_STATE(1386)] = 62425, + [SMALL_STATE(1387)] = 62480, + [SMALL_STATE(1388)] = 62529, + [SMALL_STATE(1389)] = 62578, + [SMALL_STATE(1390)] = 62633, + [SMALL_STATE(1391)] = 62688, + [SMALL_STATE(1392)] = 62737, + [SMALL_STATE(1393)] = 62786, + [SMALL_STATE(1394)] = 62835, + [SMALL_STATE(1395)] = 62890, + [SMALL_STATE(1396)] = 62939, + [SMALL_STATE(1397)] = 62988, + [SMALL_STATE(1398)] = 63041, + [SMALL_STATE(1399)] = 63090, + [SMALL_STATE(1400)] = 63139, + [SMALL_STATE(1401)] = 63188, + [SMALL_STATE(1402)] = 63237, + [SMALL_STATE(1403)] = 63286, + [SMALL_STATE(1404)] = 63335, + [SMALL_STATE(1405)] = 63384, + [SMALL_STATE(1406)] = 63433, + [SMALL_STATE(1407)] = 63488, + [SMALL_STATE(1408)] = 63537, + [SMALL_STATE(1409)] = 63586, + [SMALL_STATE(1410)] = 63635, + [SMALL_STATE(1411)] = 63684, + [SMALL_STATE(1412)] = 63733, + [SMALL_STATE(1413)] = 63782, + [SMALL_STATE(1414)] = 63831, + [SMALL_STATE(1415)] = 63880, + [SMALL_STATE(1416)] = 63929, + [SMALL_STATE(1417)] = 63978, + [SMALL_STATE(1418)] = 64027, + [SMALL_STATE(1419)] = 64076, + [SMALL_STATE(1420)] = 64125, + [SMALL_STATE(1421)] = 64178, + [SMALL_STATE(1422)] = 64227, + [SMALL_STATE(1423)] = 64280, + [SMALL_STATE(1424)] = 64335, + [SMALL_STATE(1425)] = 64390, + [SMALL_STATE(1426)] = 64439, + [SMALL_STATE(1427)] = 64488, + [SMALL_STATE(1428)] = 64541, + [SMALL_STATE(1429)] = 64590, + [SMALL_STATE(1430)] = 64645, + [SMALL_STATE(1431)] = 64694, + [SMALL_STATE(1432)] = 64749, + [SMALL_STATE(1433)] = 64798, + [SMALL_STATE(1434)] = 64847, + [SMALL_STATE(1435)] = 64900, + [SMALL_STATE(1436)] = 64953, + [SMALL_STATE(1437)] = 65008, + [SMALL_STATE(1438)] = 65061, + [SMALL_STATE(1439)] = 65110, + [SMALL_STATE(1440)] = 65159, + [SMALL_STATE(1441)] = 65208, + [SMALL_STATE(1442)] = 65257, + [SMALL_STATE(1443)] = 65306, + [SMALL_STATE(1444)] = 65358, + [SMALL_STATE(1445)] = 65414, + [SMALL_STATE(1446)] = 65462, + [SMALL_STATE(1447)] = 65518, + [SMALL_STATE(1448)] = 65570, + [SMALL_STATE(1449)] = 65626, + [SMALL_STATE(1450)] = 65678, + [SMALL_STATE(1451)] = 65726, + [SMALL_STATE(1452)] = 65778, + [SMALL_STATE(1453)] = 65830, + [SMALL_STATE(1454)] = 65886, + [SMALL_STATE(1455)] = 65934, + [SMALL_STATE(1456)] = 65990, + [SMALL_STATE(1457)] = 66044, + [SMALL_STATE(1458)] = 66098, + [SMALL_STATE(1459)] = 66150, + [SMALL_STATE(1460)] = 66202, + [SMALL_STATE(1461)] = 66258, + [SMALL_STATE(1462)] = 66314, + [SMALL_STATE(1463)] = 66370, + [SMALL_STATE(1464)] = 66426, + [SMALL_STATE(1465)] = 66482, + [SMALL_STATE(1466)] = 66538, + [SMALL_STATE(1467)] = 66594, + [SMALL_STATE(1468)] = 66642, + [SMALL_STATE(1469)] = 66696, + [SMALL_STATE(1470)] = 66752, + [SMALL_STATE(1471)] = 66808, + [SMALL_STATE(1472)] = 66860, + [SMALL_STATE(1473)] = 66916, + [SMALL_STATE(1474)] = 66972, + [SMALL_STATE(1475)] = 67024, + [SMALL_STATE(1476)] = 67080, + [SMALL_STATE(1477)] = 67136, + [SMALL_STATE(1478)] = 67192, + [SMALL_STATE(1479)] = 67248, + [SMALL_STATE(1480)] = 67296, + [SMALL_STATE(1481)] = 67344, + [SMALL_STATE(1482)] = 67392, + [SMALL_STATE(1483)] = 67448, + [SMALL_STATE(1484)] = 67504, + [SMALL_STATE(1485)] = 67560, + [SMALL_STATE(1486)] = 67608, + [SMALL_STATE(1487)] = 67656, + [SMALL_STATE(1488)] = 67708, + [SMALL_STATE(1489)] = 67762, + [SMALL_STATE(1490)] = 67816, + [SMALL_STATE(1491)] = 67864, + [SMALL_STATE(1492)] = 67912, + [SMALL_STATE(1493)] = 67968, + [SMALL_STATE(1494)] = 68016, + [SMALL_STATE(1495)] = 68072, + [SMALL_STATE(1496)] = 68120, + [SMALL_STATE(1497)] = 68176, + [SMALL_STATE(1498)] = 68232, + [SMALL_STATE(1499)] = 68280, + [SMALL_STATE(1500)] = 68336, + [SMALL_STATE(1501)] = 68388, + [SMALL_STATE(1502)] = 68444, + [SMALL_STATE(1503)] = 68500, + [SMALL_STATE(1504)] = 68552, + [SMALL_STATE(1505)] = 68606, + [SMALL_STATE(1506)] = 68660, + [SMALL_STATE(1507)] = 68712, + [SMALL_STATE(1508)] = 68764, + [SMALL_STATE(1509)] = 68820, + [SMALL_STATE(1510)] = 68872, + [SMALL_STATE(1511)] = 68928, + [SMALL_STATE(1512)] = 68984, + [SMALL_STATE(1513)] = 69040, + [SMALL_STATE(1514)] = 69092, + [SMALL_STATE(1515)] = 69148, + [SMALL_STATE(1516)] = 69204, + [SMALL_STATE(1517)] = 69252, + [SMALL_STATE(1518)] = 69300, + [SMALL_STATE(1519)] = 69356, + [SMALL_STATE(1520)] = 69404, + [SMALL_STATE(1521)] = 69458, + [SMALL_STATE(1522)] = 69510, + [SMALL_STATE(1523)] = 69566, + [SMALL_STATE(1524)] = 69618, + [SMALL_STATE(1525)] = 69670, + [SMALL_STATE(1526)] = 69722, + [SMALL_STATE(1527)] = 69770, + [SMALL_STATE(1528)] = 69826, + [SMALL_STATE(1529)] = 69880, + [SMALL_STATE(1530)] = 69936, + [SMALL_STATE(1531)] = 70020, + [SMALL_STATE(1532)] = 70076, + [SMALL_STATE(1533)] = 70124, + [SMALL_STATE(1534)] = 70172, + [SMALL_STATE(1535)] = 70228, + [SMALL_STATE(1536)] = 70276, + [SMALL_STATE(1537)] = 70332, + [SMALL_STATE(1538)] = 70388, + [SMALL_STATE(1539)] = 70442, + [SMALL_STATE(1540)] = 70496, + [SMALL_STATE(1541)] = 70544, + [SMALL_STATE(1542)] = 70592, + [SMALL_STATE(1543)] = 70644, + [SMALL_STATE(1544)] = 70696, + [SMALL_STATE(1545)] = 70750, + [SMALL_STATE(1546)] = 70804, + [SMALL_STATE(1547)] = 70860, + [SMALL_STATE(1548)] = 70914, + [SMALL_STATE(1549)] = 70970, + [SMALL_STATE(1550)] = 71026, + [SMALL_STATE(1551)] = 71082, + [SMALL_STATE(1552)] = 71130, + [SMALL_STATE(1553)] = 71178, + [SMALL_STATE(1554)] = 71226, + [SMALL_STATE(1555)] = 71274, + [SMALL_STATE(1556)] = 71330, + [SMALL_STATE(1557)] = 71386, + [SMALL_STATE(1558)] = 71442, + [SMALL_STATE(1559)] = 71498, + [SMALL_STATE(1560)] = 71554, + [SMALL_STATE(1561)] = 71602, + [SMALL_STATE(1562)] = 71650, + [SMALL_STATE(1563)] = 71706, + [SMALL_STATE(1564)] = 71795, + [SMALL_STATE(1565)] = 71850, + [SMALL_STATE(1566)] = 71903, + [SMALL_STATE(1567)] = 71950, + [SMALL_STATE(1568)] = 71997, + [SMALL_STATE(1569)] = 72044, + [SMALL_STATE(1570)] = 72099, + [SMALL_STATE(1571)] = 72154, + [SMALL_STATE(1572)] = 72201, + [SMALL_STATE(1573)] = 72290, + [SMALL_STATE(1574)] = 72341, + [SMALL_STATE(1575)] = 72392, + [SMALL_STATE(1576)] = 72439, + [SMALL_STATE(1577)] = 72492, + [SMALL_STATE(1578)] = 72545, + [SMALL_STATE(1579)] = 72598, + [SMALL_STATE(1580)] = 72653, + [SMALL_STATE(1581)] = 72704, + [SMALL_STATE(1582)] = 72751, + [SMALL_STATE(1583)] = 72802, + [SMALL_STATE(1584)] = 72853, + [SMALL_STATE(1585)] = 72900, + [SMALL_STATE(1586)] = 72953, + [SMALL_STATE(1587)] = 73000, + [SMALL_STATE(1588)] = 73047, + [SMALL_STATE(1589)] = 73094, + [SMALL_STATE(1590)] = 73145, + [SMALL_STATE(1591)] = 73196, + [SMALL_STATE(1592)] = 73243, + [SMALL_STATE(1593)] = 73290, + [SMALL_STATE(1594)] = 73341, + [SMALL_STATE(1595)] = 73388, + [SMALL_STATE(1596)] = 73435, + [SMALL_STATE(1597)] = 73482, + [SMALL_STATE(1598)] = 73535, + [SMALL_STATE(1599)] = 73590, + [SMALL_STATE(1600)] = 73641, + [SMALL_STATE(1601)] = 73688, + [SMALL_STATE(1602)] = 73743, + [SMALL_STATE(1603)] = 73794, + [SMALL_STATE(1604)] = 73845, + [SMALL_STATE(1605)] = 73896, + [SMALL_STATE(1606)] = 73943, + [SMALL_STATE(1607)] = 73990, + [SMALL_STATE(1608)] = 74041, + [SMALL_STATE(1609)] = 74092, + [SMALL_STATE(1610)] = 74143, + [SMALL_STATE(1611)] = 74196, + [SMALL_STATE(1612)] = 74249, + [SMALL_STATE(1613)] = 74302, + [SMALL_STATE(1614)] = 74349, + [SMALL_STATE(1615)] = 74400, + [SMALL_STATE(1616)] = 74447, + [SMALL_STATE(1617)] = 74500, + [SMALL_STATE(1618)] = 74551, + [SMALL_STATE(1619)] = 74640, + [SMALL_STATE(1620)] = 74729, + [SMALL_STATE(1621)] = 74776, + [SMALL_STATE(1622)] = 74829, + [SMALL_STATE(1623)] = 74918, + [SMALL_STATE(1624)] = 75007, + [SMALL_STATE(1625)] = 75062, + [SMALL_STATE(1626)] = 75115, + [SMALL_STATE(1627)] = 75166, + [SMALL_STATE(1628)] = 75221, + [SMALL_STATE(1629)] = 75274, + [SMALL_STATE(1630)] = 75327, + [SMALL_STATE(1631)] = 75416, + [SMALL_STATE(1632)] = 75463, + [SMALL_STATE(1633)] = 75510, + [SMALL_STATE(1634)] = 75557, + [SMALL_STATE(1635)] = 75646, + [SMALL_STATE(1636)] = 75693, + [SMALL_STATE(1637)] = 75744, + [SMALL_STATE(1638)] = 75795, + [SMALL_STATE(1639)] = 75848, + [SMALL_STATE(1640)] = 75895, + [SMALL_STATE(1641)] = 75942, + [SMALL_STATE(1642)] = 75989, + [SMALL_STATE(1643)] = 76036, + [SMALL_STATE(1644)] = 76089, + [SMALL_STATE(1645)] = 76136, + [SMALL_STATE(1646)] = 76189, + [SMALL_STATE(1647)] = 76236, + [SMALL_STATE(1648)] = 76289, + [SMALL_STATE(1649)] = 76340, + [SMALL_STATE(1650)] = 76393, + [SMALL_STATE(1651)] = 76448, + [SMALL_STATE(1652)] = 76495, + [SMALL_STATE(1653)] = 76550, + [SMALL_STATE(1654)] = 76601, + [SMALL_STATE(1655)] = 76656, + [SMALL_STATE(1656)] = 76703, + [SMALL_STATE(1657)] = 76754, + [SMALL_STATE(1658)] = 76843, + [SMALL_STATE(1659)] = 76932, + [SMALL_STATE(1660)] = 76983, + [SMALL_STATE(1661)] = 77030, + [SMALL_STATE(1662)] = 77119, + [SMALL_STATE(1663)] = 77166, + [SMALL_STATE(1664)] = 77213, + [SMALL_STATE(1665)] = 77260, + [SMALL_STATE(1666)] = 77311, + [SMALL_STATE(1667)] = 77364, + [SMALL_STATE(1668)] = 77411, + [SMALL_STATE(1669)] = 77466, + [SMALL_STATE(1670)] = 77519, + [SMALL_STATE(1671)] = 77608, + [SMALL_STATE(1672)] = 77661, + [SMALL_STATE(1673)] = 77714, + [SMALL_STATE(1674)] = 77761, + [SMALL_STATE(1675)] = 77814, + [SMALL_STATE(1676)] = 77867, + [SMALL_STATE(1677)] = 77914, + [SMALL_STATE(1678)] = 77967, + [SMALL_STATE(1679)] = 78014, + [SMALL_STATE(1680)] = 78061, + [SMALL_STATE(1681)] = 78114, + [SMALL_STATE(1682)] = 78167, + [SMALL_STATE(1683)] = 78214, + [SMALL_STATE(1684)] = 78267, + [SMALL_STATE(1685)] = 78317, + [SMALL_STATE(1686)] = 78367, + [SMALL_STATE(1687)] = 78413, + [SMALL_STATE(1688)] = 78463, + [SMALL_STATE(1689)] = 78515, + [SMALL_STATE(1690)] = 78561, + [SMALL_STATE(1691)] = 78613, + [SMALL_STATE(1692)] = 78663, + [SMALL_STATE(1693)] = 78709, + [SMALL_STATE(1694)] = 78757, + [SMALL_STATE(1695)] = 78807, + [SMALL_STATE(1696)] = 78853, + [SMALL_STATE(1697)] = 78903, + [SMALL_STATE(1698)] = 78949, + [SMALL_STATE(1699)] = 78995, + [SMALL_STATE(1700)] = 79047, + [SMALL_STATE(1701)] = 79093, + [SMALL_STATE(1702)] = 79139, + [SMALL_STATE(1703)] = 79185, + [SMALL_STATE(1704)] = 79237, + [SMALL_STATE(1705)] = 79283, + [SMALL_STATE(1706)] = 79329, + [SMALL_STATE(1707)] = 79377, + [SMALL_STATE(1708)] = 79423, + [SMALL_STATE(1709)] = 79469, + [SMALL_STATE(1710)] = 79519, + [SMALL_STATE(1711)] = 79565, + [SMALL_STATE(1712)] = 79615, + [SMALL_STATE(1713)] = 79661, + [SMALL_STATE(1714)] = 79711, + [SMALL_STATE(1715)] = 79761, + [SMALL_STATE(1716)] = 79807, + [SMALL_STATE(1717)] = 79853, + [SMALL_STATE(1718)] = 79903, + [SMALL_STATE(1719)] = 79955, + [SMALL_STATE(1720)] = 80001, + [SMALL_STATE(1721)] = 80047, + [SMALL_STATE(1722)] = 80093, + [SMALL_STATE(1723)] = 80139, + [SMALL_STATE(1724)] = 80185, + [SMALL_STATE(1725)] = 80231, + [SMALL_STATE(1726)] = 80283, + [SMALL_STATE(1727)] = 80335, + [SMALL_STATE(1728)] = 80387, + [SMALL_STATE(1729)] = 80433, + [SMALL_STATE(1730)] = 80481, + [SMALL_STATE(1731)] = 80527, + [SMALL_STATE(1732)] = 80577, + [SMALL_STATE(1733)] = 80629, + [SMALL_STATE(1734)] = 80675, + [SMALL_STATE(1735)] = 80721, + [SMALL_STATE(1736)] = 80771, + [SMALL_STATE(1737)] = 80821, + [SMALL_STATE(1738)] = 80867, + [SMALL_STATE(1739)] = 80913, + [SMALL_STATE(1740)] = 80959, + [SMALL_STATE(1741)] = 81005, + [SMALL_STATE(1742)] = 81055, + [SMALL_STATE(1743)] = 81105, + [SMALL_STATE(1744)] = 81155, + [SMALL_STATE(1745)] = 81201, + [SMALL_STATE(1746)] = 81247, + [SMALL_STATE(1747)] = 81297, + [SMALL_STATE(1748)] = 81343, + [SMALL_STATE(1749)] = 81389, + [SMALL_STATE(1750)] = 81435, + [SMALL_STATE(1751)] = 81481, + [SMALL_STATE(1752)] = 81531, + [SMALL_STATE(1753)] = 81581, + [SMALL_STATE(1754)] = 81627, + [SMALL_STATE(1755)] = 81673, + [SMALL_STATE(1756)] = 81719, + [SMALL_STATE(1757)] = 81769, + [SMALL_STATE(1758)] = 81815, + [SMALL_STATE(1759)] = 81867, + [SMALL_STATE(1760)] = 81913, + [SMALL_STATE(1761)] = 81965, + [SMALL_STATE(1762)] = 82011, + [SMALL_STATE(1763)] = 82057, + [SMALL_STATE(1764)] = 82103, + [SMALL_STATE(1765)] = 82149, + [SMALL_STATE(1766)] = 82197, + [SMALL_STATE(1767)] = 82245, + [SMALL_STATE(1768)] = 82295, + [SMALL_STATE(1769)] = 82341, + [SMALL_STATE(1770)] = 82387, + [SMALL_STATE(1771)] = 82433, + [SMALL_STATE(1772)] = 82479, + [SMALL_STATE(1773)] = 82525, + [SMALL_STATE(1774)] = 82571, + [SMALL_STATE(1775)] = 82617, + [SMALL_STATE(1776)] = 82663, + [SMALL_STATE(1777)] = 82715, + [SMALL_STATE(1778)] = 82767, + [SMALL_STATE(1779)] = 82813, + [SMALL_STATE(1780)] = 82859, + [SMALL_STATE(1781)] = 82905, + [SMALL_STATE(1782)] = 82955, + [SMALL_STATE(1783)] = 83000, + [SMALL_STATE(1784)] = 83045, + [SMALL_STATE(1785)] = 83090, + [SMALL_STATE(1786)] = 83135, + [SMALL_STATE(1787)] = 83180, + [SMALL_STATE(1788)] = 83235, + [SMALL_STATE(1789)] = 83290, + [SMALL_STATE(1790)] = 83335, + [SMALL_STATE(1791)] = 83380, + [SMALL_STATE(1792)] = 83429, + [SMALL_STATE(1793)] = 83474, + [SMALL_STATE(1794)] = 83523, + [SMALL_STATE(1795)] = 83568, + [SMALL_STATE(1796)] = 83613, + [SMALL_STATE(1797)] = 83668, + [SMALL_STATE(1798)] = 83723, + [SMALL_STATE(1799)] = 83778, + [SMALL_STATE(1800)] = 83827, + [SMALL_STATE(1801)] = 83872, + [SMALL_STATE(1802)] = 83927, + [SMALL_STATE(1803)] = 83972, + [SMALL_STATE(1804)] = 84027, + [SMALL_STATE(1805)] = 84082, + [SMALL_STATE(1806)] = 84127, + [SMALL_STATE(1807)] = 84172, + [SMALL_STATE(1808)] = 84217, + [SMALL_STATE(1809)] = 84262, + [SMALL_STATE(1810)] = 84307, + [SMALL_STATE(1811)] = 84356, + [SMALL_STATE(1812)] = 84405, + [SMALL_STATE(1813)] = 84450, + [SMALL_STATE(1814)] = 84495, + [SMALL_STATE(1815)] = 84546, + [SMALL_STATE(1816)] = 84591, + [SMALL_STATE(1817)] = 84636, + [SMALL_STATE(1818)] = 84681, + [SMALL_STATE(1819)] = 84736, + [SMALL_STATE(1820)] = 84781, + [SMALL_STATE(1821)] = 84830, + [SMALL_STATE(1822)] = 84875, + [SMALL_STATE(1823)] = 84920, + [SMALL_STATE(1824)] = 84969, + [SMALL_STATE(1825)] = 85018, + [SMALL_STATE(1826)] = 85063, + [SMALL_STATE(1827)] = 85118, + [SMALL_STATE(1828)] = 85167, + [SMALL_STATE(1829)] = 85212, + [SMALL_STATE(1830)] = 85257, + [SMALL_STATE(1831)] = 85312, + [SMALL_STATE(1832)] = 85357, + [SMALL_STATE(1833)] = 85402, + [SMALL_STATE(1834)] = 85457, + [SMALL_STATE(1835)] = 85502, + [SMALL_STATE(1836)] = 85557, + [SMALL_STATE(1837)] = 85602, + [SMALL_STATE(1838)] = 85657, + [SMALL_STATE(1839)] = 85702, + [SMALL_STATE(1840)] = 85747, + [SMALL_STATE(1841)] = 85796, + [SMALL_STATE(1842)] = 85845, + [SMALL_STATE(1843)] = 85894, + [SMALL_STATE(1844)] = 85949, + [SMALL_STATE(1845)] = 85994, + [SMALL_STATE(1846)] = 86039, + [SMALL_STATE(1847)] = 86094, + [SMALL_STATE(1848)] = 86139, + [SMALL_STATE(1849)] = 86184, + [SMALL_STATE(1850)] = 86239, + [SMALL_STATE(1851)] = 86292, + [SMALL_STATE(1852)] = 86345, + [SMALL_STATE(1853)] = 86400, + [SMALL_STATE(1854)] = 86445, + [SMALL_STATE(1855)] = 86490, + [SMALL_STATE(1856)] = 86539, + [SMALL_STATE(1857)] = 86584, + [SMALL_STATE(1858)] = 86639, + [SMALL_STATE(1859)] = 86684, + [SMALL_STATE(1860)] = 86739, + [SMALL_STATE(1861)] = 86784, + [SMALL_STATE(1862)] = 86829, + [SMALL_STATE(1863)] = 86874, + [SMALL_STATE(1864)] = 86919, + [SMALL_STATE(1865)] = 86964, + [SMALL_STATE(1866)] = 87019, + [SMALL_STATE(1867)] = 87064, + [SMALL_STATE(1868)] = 87119, + [SMALL_STATE(1869)] = 87166, + [SMALL_STATE(1870)] = 87221, + [SMALL_STATE(1871)] = 87276, + [SMALL_STATE(1872)] = 87321, + [SMALL_STATE(1873)] = 87376, + [SMALL_STATE(1874)] = 87431, + [SMALL_STATE(1875)] = 87486, + [SMALL_STATE(1876)] = 87531, + [SMALL_STATE(1877)] = 87586, + [SMALL_STATE(1878)] = 87631, + [SMALL_STATE(1879)] = 87676, + [SMALL_STATE(1880)] = 87721, + [SMALL_STATE(1881)] = 87776, + [SMALL_STATE(1882)] = 87821, + [SMALL_STATE(1883)] = 87870, + [SMALL_STATE(1884)] = 87925, + [SMALL_STATE(1885)] = 87970, + [SMALL_STATE(1886)] = 88025, + [SMALL_STATE(1887)] = 88070, + [SMALL_STATE(1888)] = 88115, + [SMALL_STATE(1889)] = 88170, + [SMALL_STATE(1890)] = 88215, + [SMALL_STATE(1891)] = 88260, + [SMALL_STATE(1892)] = 88305, + [SMALL_STATE(1893)] = 88360, + [SMALL_STATE(1894)] = 88415, + [SMALL_STATE(1895)] = 88466, + [SMALL_STATE(1896)] = 88517, + [SMALL_STATE(1897)] = 88572, + [SMALL_STATE(1898)] = 88627, + [SMALL_STATE(1899)] = 88672, + [SMALL_STATE(1900)] = 88717, + [SMALL_STATE(1901)] = 88762, + [SMALL_STATE(1902)] = 88807, + [SMALL_STATE(1903)] = 88862, + [SMALL_STATE(1904)] = 88907, + [SMALL_STATE(1905)] = 88952, + [SMALL_STATE(1906)] = 89007, + [SMALL_STATE(1907)] = 89062, + [SMALL_STATE(1908)] = 89111, + [SMALL_STATE(1909)] = 89156, + [SMALL_STATE(1910)] = 89201, + [SMALL_STATE(1911)] = 89256, + [SMALL_STATE(1912)] = 89301, + [SMALL_STATE(1913)] = 89356, + [SMALL_STATE(1914)] = 89401, + [SMALL_STATE(1915)] = 89446, + [SMALL_STATE(1916)] = 89491, + [SMALL_STATE(1917)] = 89546, + [SMALL_STATE(1918)] = 89591, + [SMALL_STATE(1919)] = 89646, + [SMALL_STATE(1920)] = 89691, + [SMALL_STATE(1921)] = 89736, + [SMALL_STATE(1922)] = 89781, + [SMALL_STATE(1923)] = 89826, + [SMALL_STATE(1924)] = 89881, + [SMALL_STATE(1925)] = 89936, + [SMALL_STATE(1926)] = 89981, + [SMALL_STATE(1927)] = 90026, + [SMALL_STATE(1928)] = 90081, + [SMALL_STATE(1929)] = 90126, + [SMALL_STATE(1930)] = 90171, + [SMALL_STATE(1931)] = 90220, + [SMALL_STATE(1932)] = 90269, + [SMALL_STATE(1933)] = 90314, + [SMALL_STATE(1934)] = 90359, + [SMALL_STATE(1935)] = 90414, + [SMALL_STATE(1936)] = 90469, + [SMALL_STATE(1937)] = 90520, + [SMALL_STATE(1938)] = 90571, + [SMALL_STATE(1939)] = 90626, + [SMALL_STATE(1940)] = 90681, + [SMALL_STATE(1941)] = 90736, + [SMALL_STATE(1942)] = 90780, + [SMALL_STATE(1943)] = 90828, + [SMALL_STATE(1944)] = 90880, + [SMALL_STATE(1945)] = 90926, + [SMALL_STATE(1946)] = 90978, + [SMALL_STATE(1947)] = 91022, + [SMALL_STATE(1948)] = 91066, + [SMALL_STATE(1949)] = 91114, + [SMALL_STATE(1950)] = 91158, + [SMALL_STATE(1951)] = 91210, + [SMALL_STATE(1952)] = 91258, + [SMALL_STATE(1953)] = 91310, + [SMALL_STATE(1954)] = 91362, + [SMALL_STATE(1955)] = 91414, + [SMALL_STATE(1956)] = 91464, + [SMALL_STATE(1957)] = 91510, + [SMALL_STATE(1958)] = 91562, + [SMALL_STATE(1959)] = 91606, + [SMALL_STATE(1960)] = 91654, + [SMALL_STATE(1961)] = 91698, + [SMALL_STATE(1962)] = 91742, + [SMALL_STATE(1963)] = 91786, + [SMALL_STATE(1964)] = 91832, + [SMALL_STATE(1965)] = 91876, + [SMALL_STATE(1966)] = 91920, + [SMALL_STATE(1967)] = 91964, + [SMALL_STATE(1968)] = 92012, + [SMALL_STATE(1969)] = 92060, + [SMALL_STATE(1970)] = 92112, + [SMALL_STATE(1971)] = 92156, + [SMALL_STATE(1972)] = 92200, + [SMALL_STATE(1973)] = 92248, + [SMALL_STATE(1974)] = 92292, + [SMALL_STATE(1975)] = 92340, + [SMALL_STATE(1976)] = 92384, + [SMALL_STATE(1977)] = 92432, + [SMALL_STATE(1978)] = 92484, + [SMALL_STATE(1979)] = 92532, + [SMALL_STATE(1980)] = 92580, + [SMALL_STATE(1981)] = 92628, + [SMALL_STATE(1982)] = 92680, + [SMALL_STATE(1983)] = 92724, + [SMALL_STATE(1984)] = 92776, + [SMALL_STATE(1985)] = 92824, + [SMALL_STATE(1986)] = 92872, + [SMALL_STATE(1987)] = 92916, + [SMALL_STATE(1988)] = 92960, + [SMALL_STATE(1989)] = 93004, + [SMALL_STATE(1990)] = 93048, + [SMALL_STATE(1991)] = 93092, + [SMALL_STATE(1992)] = 93136, + [SMALL_STATE(1993)] = 93184, + [SMALL_STATE(1994)] = 93228, + [SMALL_STATE(1995)] = 93280, + [SMALL_STATE(1996)] = 93326, + [SMALL_STATE(1997)] = 93378, + [SMALL_STATE(1998)] = 93426, + [SMALL_STATE(1999)] = 93478, + [SMALL_STATE(2000)] = 93526, + [SMALL_STATE(2001)] = 93574, + [SMALL_STATE(2002)] = 93622, + [SMALL_STATE(2003)] = 93674, + [SMALL_STATE(2004)] = 93718, + [SMALL_STATE(2005)] = 93762, + [SMALL_STATE(2006)] = 93814, + [SMALL_STATE(2007)] = 93866, + [SMALL_STATE(2008)] = 93910, + [SMALL_STATE(2009)] = 93954, + [SMALL_STATE(2010)] = 94006, + [SMALL_STATE(2011)] = 94058, + [SMALL_STATE(2012)] = 94110, + [SMALL_STATE(2013)] = 94162, + [SMALL_STATE(2014)] = 94214, + [SMALL_STATE(2015)] = 94266, + [SMALL_STATE(2016)] = 94310, + [SMALL_STATE(2017)] = 94354, + [SMALL_STATE(2018)] = 94406, + [SMALL_STATE(2019)] = 94450, + [SMALL_STATE(2020)] = 94502, + [SMALL_STATE(2021)] = 94554, + [SMALL_STATE(2022)] = 94600, + [SMALL_STATE(2023)] = 94648, + [SMALL_STATE(2024)] = 94692, + [SMALL_STATE(2025)] = 94744, + [SMALL_STATE(2026)] = 94792, + [SMALL_STATE(2027)] = 94836, + [SMALL_STATE(2028)] = 94880, + [SMALL_STATE(2029)] = 94928, + [SMALL_STATE(2030)] = 95013, + [SMALL_STATE(2031)] = 95060, + [SMALL_STATE(2032)] = 95107, + [SMALL_STATE(2033)] = 95158, + [SMALL_STATE(2034)] = 95209, + [SMALL_STATE(2035)] = 95256, + [SMALL_STATE(2036)] = 95299, + [SMALL_STATE(2037)] = 95350, + [SMALL_STATE(2038)] = 95401, + [SMALL_STATE(2039)] = 95444, + [SMALL_STATE(2040)] = 95493, + [SMALL_STATE(2041)] = 95536, + [SMALL_STATE(2042)] = 95587, + [SMALL_STATE(2043)] = 95630, + [SMALL_STATE(2044)] = 95673, + [SMALL_STATE(2045)] = 95720, + [SMALL_STATE(2046)] = 95771, + [SMALL_STATE(2047)] = 95856, + [SMALL_STATE(2048)] = 95899, + [SMALL_STATE(2049)] = 95984, + [SMALL_STATE(2050)] = 96027, + [SMALL_STATE(2051)] = 96070, + [SMALL_STATE(2052)] = 96113, + [SMALL_STATE(2053)] = 96162, + [SMALL_STATE(2054)] = 96247, + [SMALL_STATE(2055)] = 96290, + [SMALL_STATE(2056)] = 96333, + [SMALL_STATE(2057)] = 96418, + [SMALL_STATE(2058)] = 96461, + [SMALL_STATE(2059)] = 96512, + [SMALL_STATE(2060)] = 96597, + [SMALL_STATE(2061)] = 96640, + [SMALL_STATE(2062)] = 96725, + [SMALL_STATE(2063)] = 96768, + [SMALL_STATE(2064)] = 96811, + [SMALL_STATE(2065)] = 96854, + [SMALL_STATE(2066)] = 96897, + [SMALL_STATE(2067)] = 96982, + [SMALL_STATE(2068)] = 97031, + [SMALL_STATE(2069)] = 97074, + [SMALL_STATE(2070)] = 97117, + [SMALL_STATE(2071)] = 97202, + [SMALL_STATE(2072)] = 97253, + [SMALL_STATE(2073)] = 97296, + [SMALL_STATE(2074)] = 97381, + [SMALL_STATE(2075)] = 97466, + [SMALL_STATE(2076)] = 97551, + [SMALL_STATE(2077)] = 97596, + [SMALL_STATE(2078)] = 97647, + [SMALL_STATE(2079)] = 97690, + [SMALL_STATE(2080)] = 97737, + [SMALL_STATE(2081)] = 97780, + [SMALL_STATE(2082)] = 97829, + [SMALL_STATE(2083)] = 97878, + [SMALL_STATE(2084)] = 97921, + [SMALL_STATE(2085)] = 97968, + [SMALL_STATE(2086)] = 98011, + [SMALL_STATE(2087)] = 98054, + [SMALL_STATE(2088)] = 98136, + [SMALL_STATE(2089)] = 98186, + [SMALL_STATE(2090)] = 98268, + [SMALL_STATE(2091)] = 98350, + [SMALL_STATE(2092)] = 98432, + [SMALL_STATE(2093)] = 98508, + [SMALL_STATE(2094)] = 98590, + [SMALL_STATE(2095)] = 98672, + [SMALL_STATE(2096)] = 98754, + [SMALL_STATE(2097)] = 98836, + [SMALL_STATE(2098)] = 98918, + [SMALL_STATE(2099)] = 99000, + [SMALL_STATE(2100)] = 99074, + [SMALL_STATE(2101)] = 99148, + [SMALL_STATE(2102)] = 99198, + [SMALL_STATE(2103)] = 99242, + [SMALL_STATE(2104)] = 99324, + [SMALL_STATE(2105)] = 99374, + [SMALL_STATE(2106)] = 99456, + [SMALL_STATE(2107)] = 99538, + [SMALL_STATE(2108)] = 99620, + [SMALL_STATE(2109)] = 99702, + [SMALL_STATE(2110)] = 99776, + [SMALL_STATE(2111)] = 99826, + [SMALL_STATE(2112)] = 99900, + [SMALL_STATE(2113)] = 99950, + [SMALL_STATE(2114)] = 100000, + [SMALL_STATE(2115)] = 100082, + [SMALL_STATE(2116)] = 100164, + [SMALL_STATE(2117)] = 100214, + [SMALL_STATE(2118)] = 100264, + [SMALL_STATE(2119)] = 100346, + [SMALL_STATE(2120)] = 100388, + [SMALL_STATE(2121)] = 100467, + [SMALL_STATE(2122)] = 100508, + [SMALL_STATE(2123)] = 100587, + [SMALL_STATE(2124)] = 100666, + [SMALL_STATE(2125)] = 100745, + [SMALL_STATE(2126)] = 100818, + [SMALL_STATE(2127)] = 100859, + [SMALL_STATE(2128)] = 100938, + [SMALL_STATE(2129)] = 101011, + [SMALL_STATE(2130)] = 101056, + [SMALL_STATE(2131)] = 101097, + [SMALL_STATE(2132)] = 101176, + [SMALL_STATE(2133)] = 101255, + [SMALL_STATE(2134)] = 101334, + [SMALL_STATE(2135)] = 101375, + [SMALL_STATE(2136)] = 101454, + [SMALL_STATE(2137)] = 101533, + [SMALL_STATE(2138)] = 101612, + [SMALL_STATE(2139)] = 101653, + [SMALL_STATE(2140)] = 101702, + [SMALL_STATE(2141)] = 101747, + [SMALL_STATE(2142)] = 101826, + [SMALL_STATE(2143)] = 101875, + [SMALL_STATE(2144)] = 101954, + [SMALL_STATE(2145)] = 102033, + [SMALL_STATE(2146)] = 102074, + [SMALL_STATE(2147)] = 102115, + [SMALL_STATE(2148)] = 102194, + [SMALL_STATE(2149)] = 102273, + [SMALL_STATE(2150)] = 102322, + [SMALL_STATE(2151)] = 102401, + [SMALL_STATE(2152)] = 102450, + [SMALL_STATE(2153)] = 102529, + [SMALL_STATE(2154)] = 102570, + [SMALL_STATE(2155)] = 102611, + [SMALL_STATE(2156)] = 102652, + [SMALL_STATE(2157)] = 102693, + [SMALL_STATE(2158)] = 102734, + [SMALL_STATE(2159)] = 102813, + [SMALL_STATE(2160)] = 102854, + [SMALL_STATE(2161)] = 102895, + [SMALL_STATE(2162)] = 102974, + [SMALL_STATE(2163)] = 103053, + [SMALL_STATE(2164)] = 103126, + [SMALL_STATE(2165)] = 103205, + [SMALL_STATE(2166)] = 103246, + [SMALL_STATE(2167)] = 103287, + [SMALL_STATE(2168)] = 103366, + [SMALL_STATE(2169)] = 103439, + [SMALL_STATE(2170)] = 103518, + [SMALL_STATE(2171)] = 103559, + [SMALL_STATE(2172)] = 103600, + [SMALL_STATE(2173)] = 103642, + [SMALL_STATE(2174)] = 103684, + [SMALL_STATE(2175)] = 103736, + [SMALL_STATE(2176)] = 103775, + [SMALL_STATE(2177)] = 103814, + [SMALL_STATE(2178)] = 103887, + [SMALL_STATE(2179)] = 103930, + [SMALL_STATE(2180)] = 103969, + [SMALL_STATE(2181)] = 104042, + [SMALL_STATE(2182)] = 104115, + [SMALL_STATE(2183)] = 104188, + [SMALL_STATE(2184)] = 104261, + [SMALL_STATE(2185)] = 104334, + [SMALL_STATE(2186)] = 104407, + [SMALL_STATE(2187)] = 104480, + [SMALL_STATE(2188)] = 104553, + [SMALL_STATE(2189)] = 104592, + [SMALL_STATE(2190)] = 104665, + [SMALL_STATE(2191)] = 104736, + [SMALL_STATE(2192)] = 104807, + [SMALL_STATE(2193)] = 104880, + [SMALL_STATE(2194)] = 104953, + [SMALL_STATE(2195)] = 105026, + [SMALL_STATE(2196)] = 105097, + [SMALL_STATE(2197)] = 105170, + [SMALL_STATE(2198)] = 105243, + [SMALL_STATE(2199)] = 105314, + [SMALL_STATE(2200)] = 105387, + [SMALL_STATE(2201)] = 105460, + [SMALL_STATE(2202)] = 105533, + [SMALL_STATE(2203)] = 105606, + [SMALL_STATE(2204)] = 105645, + [SMALL_STATE(2205)] = 105718, + [SMALL_STATE(2206)] = 105761, + [SMALL_STATE(2207)] = 105834, + [SMALL_STATE(2208)] = 105907, + [SMALL_STATE(2209)] = 105946, + [SMALL_STATE(2210)] = 105993, + [SMALL_STATE(2211)] = 106066, + [SMALL_STATE(2212)] = 106139, + [SMALL_STATE(2213)] = 106212, + [SMALL_STATE(2214)] = 106259, + [SMALL_STATE(2215)] = 106302, + [SMALL_STATE(2216)] = 106341, + [SMALL_STATE(2217)] = 106380, + [SMALL_STATE(2218)] = 106425, + [SMALL_STATE(2219)] = 106470, + [SMALL_STATE(2220)] = 106513, + [SMALL_STATE(2221)] = 106552, + [SMALL_STATE(2222)] = 106591, + [SMALL_STATE(2223)] = 106634, + [SMALL_STATE(2224)] = 106677, + [SMALL_STATE(2225)] = 106720, + [SMALL_STATE(2226)] = 106759, + [SMALL_STATE(2227)] = 106802, + [SMALL_STATE(2228)] = 106841, + [SMALL_STATE(2229)] = 106914, + [SMALL_STATE(2230)] = 106987, + [SMALL_STATE(2231)] = 107060, + [SMALL_STATE(2232)] = 107099, + [SMALL_STATE(2233)] = 107138, + [SMALL_STATE(2234)] = 107177, + [SMALL_STATE(2235)] = 107216, + [SMALL_STATE(2236)] = 107255, + [SMALL_STATE(2237)] = 107294, + [SMALL_STATE(2238)] = 107333, + [SMALL_STATE(2239)] = 107406, + [SMALL_STATE(2240)] = 107449, + [SMALL_STATE(2241)] = 107488, + [SMALL_STATE(2242)] = 107527, + [SMALL_STATE(2243)] = 107566, + [SMALL_STATE(2244)] = 107605, + [SMALL_STATE(2245)] = 107644, + [SMALL_STATE(2246)] = 107683, + [SMALL_STATE(2247)] = 107722, + [SMALL_STATE(2248)] = 107761, + [SMALL_STATE(2249)] = 107800, + [SMALL_STATE(2250)] = 107839, + [SMALL_STATE(2251)] = 107912, + [SMALL_STATE(2252)] = 107951, + [SMALL_STATE(2253)] = 107990, + [SMALL_STATE(2254)] = 108029, + [SMALL_STATE(2255)] = 108068, + [SMALL_STATE(2256)] = 108111, + [SMALL_STATE(2257)] = 108150, + [SMALL_STATE(2258)] = 108189, + [SMALL_STATE(2259)] = 108262, + [SMALL_STATE(2260)] = 108301, + [SMALL_STATE(2261)] = 108339, + [SMALL_STATE(2262)] = 108409, + [SMALL_STATE(2263)] = 108479, + [SMALL_STATE(2264)] = 108517, + [SMALL_STATE(2265)] = 108555, + [SMALL_STATE(2266)] = 108627, + [SMALL_STATE(2267)] = 108665, + [SMALL_STATE(2268)] = 108703, + [SMALL_STATE(2269)] = 108741, + [SMALL_STATE(2270)] = 108779, + [SMALL_STATE(2271)] = 108849, + [SMALL_STATE(2272)] = 108919, + [SMALL_STATE(2273)] = 108989, + [SMALL_STATE(2274)] = 109035, + [SMALL_STATE(2275)] = 109073, + [SMALL_STATE(2276)] = 109111, + [SMALL_STATE(2277)] = 109181, + [SMALL_STATE(2278)] = 109251, + [SMALL_STATE(2279)] = 109321, + [SMALL_STATE(2280)] = 109391, + [SMALL_STATE(2281)] = 109437, + [SMALL_STATE(2282)] = 109507, + [SMALL_STATE(2283)] = 109577, + [SMALL_STATE(2284)] = 109623, + [SMALL_STATE(2285)] = 109661, + [SMALL_STATE(2286)] = 109733, + [SMALL_STATE(2287)] = 109803, + [SMALL_STATE(2288)] = 109875, + [SMALL_STATE(2289)] = 109913, + [SMALL_STATE(2290)] = 109983, + [SMALL_STATE(2291)] = 110053, + [SMALL_STATE(2292)] = 110123, + [SMALL_STATE(2293)] = 110195, + [SMALL_STATE(2294)] = 110267, + [SMALL_STATE(2295)] = 110337, + [SMALL_STATE(2296)] = 110375, + [SMALL_STATE(2297)] = 110421, + [SMALL_STATE(2298)] = 110467, + [SMALL_STATE(2299)] = 110513, + [SMALL_STATE(2300)] = 110551, + [SMALL_STATE(2301)] = 110623, + [SMALL_STATE(2302)] = 110669, + [SMALL_STATE(2303)] = 110739, + [SMALL_STATE(2304)] = 110777, + [SMALL_STATE(2305)] = 110847, + [SMALL_STATE(2306)] = 110917, + [SMALL_STATE(2307)] = 110987, + [SMALL_STATE(2308)] = 111057, + [SMALL_STATE(2309)] = 111095, + [SMALL_STATE(2310)] = 111141, + [SMALL_STATE(2311)] = 111211, + [SMALL_STATE(2312)] = 111281, + [SMALL_STATE(2313)] = 111327, + [SMALL_STATE(2314)] = 111397, + [SMALL_STATE(2315)] = 111467, + [SMALL_STATE(2316)] = 111537, + [SMALL_STATE(2317)] = 111607, + [SMALL_STATE(2318)] = 111677, + [SMALL_STATE(2319)] = 111747, + [SMALL_STATE(2320)] = 111817, + [SMALL_STATE(2321)] = 111863, + [SMALL_STATE(2322)] = 111933, + [SMALL_STATE(2323)] = 111971, + [SMALL_STATE(2324)] = 112009, + [SMALL_STATE(2325)] = 112079, + [SMALL_STATE(2326)] = 112117, + [SMALL_STATE(2327)] = 112187, + [SMALL_STATE(2328)] = 112257, + [SMALL_STATE(2329)] = 112327, + [SMALL_STATE(2330)] = 112399, + [SMALL_STATE(2331)] = 112469, + [SMALL_STATE(2332)] = 112539, + [SMALL_STATE(2333)] = 112611, + [SMALL_STATE(2334)] = 112681, + [SMALL_STATE(2335)] = 112751, + [SMALL_STATE(2336)] = 112823, + [SMALL_STATE(2337)] = 112895, + [SMALL_STATE(2338)] = 112967, + [SMALL_STATE(2339)] = 113037, + [SMALL_STATE(2340)] = 113107, + [SMALL_STATE(2341)] = 113180, + [SMALL_STATE(2342)] = 113247, + [SMALL_STATE(2343)] = 113292, + [SMALL_STATE(2344)] = 113359, + [SMALL_STATE(2345)] = 113426, + [SMALL_STATE(2346)] = 113495, + [SMALL_STATE(2347)] = 113562, + [SMALL_STATE(2348)] = 113629, + [SMALL_STATE(2349)] = 113698, + [SMALL_STATE(2350)] = 113767, + [SMALL_STATE(2351)] = 113808, + [SMALL_STATE(2352)] = 113881, + [SMALL_STATE(2353)] = 113950, + [SMALL_STATE(2354)] = 114019, + [SMALL_STATE(2355)] = 114088, + [SMALL_STATE(2356)] = 114155, + [SMALL_STATE(2357)] = 114222, + [SMALL_STATE(2358)] = 114263, + [SMALL_STATE(2359)] = 114308, + [SMALL_STATE(2360)] = 114377, + [SMALL_STATE(2361)] = 114446, + [SMALL_STATE(2362)] = 114515, + [SMALL_STATE(2363)] = 114584, + [SMALL_STATE(2364)] = 114653, + [SMALL_STATE(2365)] = 114722, + [SMALL_STATE(2366)] = 114791, + [SMALL_STATE(2367)] = 114856, + [SMALL_STATE(2368)] = 114925, + [SMALL_STATE(2369)] = 114992, + [SMALL_STATE(2370)] = 115065, + [SMALL_STATE(2371)] = 115134, + [SMALL_STATE(2372)] = 115203, + [SMALL_STATE(2373)] = 115272, + [SMALL_STATE(2374)] = 115341, + [SMALL_STATE(2375)] = 115408, + [SMALL_STATE(2376)] = 115449, + [SMALL_STATE(2377)] = 115518, + [SMALL_STATE(2378)] = 115587, + [SMALL_STATE(2379)] = 115654, + [SMALL_STATE(2380)] = 115723, + [SMALL_STATE(2381)] = 115787, + [SMALL_STATE(2382)] = 115851, + [SMALL_STATE(2383)] = 115915, + [SMALL_STATE(2384)] = 115979, + [SMALL_STATE(2385)] = 116043, + [SMALL_STATE(2386)] = 116107, + [SMALL_STATE(2387)] = 116171, + [SMALL_STATE(2388)] = 116235, + [SMALL_STATE(2389)] = 116299, + [SMALL_STATE(2390)] = 116363, + [SMALL_STATE(2391)] = 116427, + [SMALL_STATE(2392)] = 116491, + [SMALL_STATE(2393)] = 116555, + [SMALL_STATE(2394)] = 116619, + [SMALL_STATE(2395)] = 116683, + [SMALL_STATE(2396)] = 116747, + [SMALL_STATE(2397)] = 116811, + [SMALL_STATE(2398)] = 116875, + [SMALL_STATE(2399)] = 116939, + [SMALL_STATE(2400)] = 117003, + [SMALL_STATE(2401)] = 117067, + [SMALL_STATE(2402)] = 117131, + [SMALL_STATE(2403)] = 117195, + [SMALL_STATE(2404)] = 117259, + [SMALL_STATE(2405)] = 117323, + [SMALL_STATE(2406)] = 117387, + [SMALL_STATE(2407)] = 117451, + [SMALL_STATE(2408)] = 117515, + [SMALL_STATE(2409)] = 117551, + [SMALL_STATE(2410)] = 117615, + [SMALL_STATE(2411)] = 117679, + [SMALL_STATE(2412)] = 117743, + [SMALL_STATE(2413)] = 117807, + [SMALL_STATE(2414)] = 117871, + [SMALL_STATE(2415)] = 117935, + [SMALL_STATE(2416)] = 117999, + [SMALL_STATE(2417)] = 118063, + [SMALL_STATE(2418)] = 118127, + [SMALL_STATE(2419)] = 118191, + [SMALL_STATE(2420)] = 118255, + [SMALL_STATE(2421)] = 118319, + [SMALL_STATE(2422)] = 118383, + [SMALL_STATE(2423)] = 118447, + [SMALL_STATE(2424)] = 118511, + [SMALL_STATE(2425)] = 118575, + [SMALL_STATE(2426)] = 118639, + [SMALL_STATE(2427)] = 118703, + [SMALL_STATE(2428)] = 118767, + [SMALL_STATE(2429)] = 118831, + [SMALL_STATE(2430)] = 118895, + [SMALL_STATE(2431)] = 118959, + [SMALL_STATE(2432)] = 119023, + [SMALL_STATE(2433)] = 119087, + [SMALL_STATE(2434)] = 119151, + [SMALL_STATE(2435)] = 119215, + [SMALL_STATE(2436)] = 119279, + [SMALL_STATE(2437)] = 119343, + [SMALL_STATE(2438)] = 119407, + [SMALL_STATE(2439)] = 119471, + [SMALL_STATE(2440)] = 119535, + [SMALL_STATE(2441)] = 119571, + [SMALL_STATE(2442)] = 119607, + [SMALL_STATE(2443)] = 119671, + [SMALL_STATE(2444)] = 119735, + [SMALL_STATE(2445)] = 119799, + [SMALL_STATE(2446)] = 119863, + [SMALL_STATE(2447)] = 119927, + [SMALL_STATE(2448)] = 119991, + [SMALL_STATE(2449)] = 120055, + [SMALL_STATE(2450)] = 120119, + [SMALL_STATE(2451)] = 120183, + [SMALL_STATE(2452)] = 120247, + [SMALL_STATE(2453)] = 120311, + [SMALL_STATE(2454)] = 120375, + [SMALL_STATE(2455)] = 120411, + [SMALL_STATE(2456)] = 120475, + [SMALL_STATE(2457)] = 120539, + [SMALL_STATE(2458)] = 120603, + [SMALL_STATE(2459)] = 120667, + [SMALL_STATE(2460)] = 120731, + [SMALL_STATE(2461)] = 120795, + [SMALL_STATE(2462)] = 120859, + [SMALL_STATE(2463)] = 120923, + [SMALL_STATE(2464)] = 120987, + [SMALL_STATE(2465)] = 121051, + [SMALL_STATE(2466)] = 121115, + [SMALL_STATE(2467)] = 121179, + [SMALL_STATE(2468)] = 121243, + [SMALL_STATE(2469)] = 121307, + [SMALL_STATE(2470)] = 121371, + [SMALL_STATE(2471)] = 121435, + [SMALL_STATE(2472)] = 121499, + [SMALL_STATE(2473)] = 121563, + [SMALL_STATE(2474)] = 121627, + [SMALL_STATE(2475)] = 121691, + [SMALL_STATE(2476)] = 121755, + [SMALL_STATE(2477)] = 121819, + [SMALL_STATE(2478)] = 121883, + [SMALL_STATE(2479)] = 121947, + [SMALL_STATE(2480)] = 122011, + [SMALL_STATE(2481)] = 122075, + [SMALL_STATE(2482)] = 122139, + [SMALL_STATE(2483)] = 122203, + [SMALL_STATE(2484)] = 122267, + [SMALL_STATE(2485)] = 122331, + [SMALL_STATE(2486)] = 122395, + [SMALL_STATE(2487)] = 122465, + [SMALL_STATE(2488)] = 122529, + [SMALL_STATE(2489)] = 122593, + [SMALL_STATE(2490)] = 122657, + [SMALL_STATE(2491)] = 122721, + [SMALL_STATE(2492)] = 122785, + [SMALL_STATE(2493)] = 122849, + [SMALL_STATE(2494)] = 122913, + [SMALL_STATE(2495)] = 122977, + [SMALL_STATE(2496)] = 123041, + [SMALL_STATE(2497)] = 123105, + [SMALL_STATE(2498)] = 123169, + [SMALL_STATE(2499)] = 123233, + [SMALL_STATE(2500)] = 123297, + [SMALL_STATE(2501)] = 123361, + [SMALL_STATE(2502)] = 123425, + [SMALL_STATE(2503)] = 123489, + [SMALL_STATE(2504)] = 123553, + [SMALL_STATE(2505)] = 123595, + [SMALL_STATE(2506)] = 123659, + [SMALL_STATE(2507)] = 123723, + [SMALL_STATE(2508)] = 123787, + [SMALL_STATE(2509)] = 123851, + [SMALL_STATE(2510)] = 123915, + [SMALL_STATE(2511)] = 123979, + [SMALL_STATE(2512)] = 124043, + [SMALL_STATE(2513)] = 124113, + [SMALL_STATE(2514)] = 124177, + [SMALL_STATE(2515)] = 124241, + [SMALL_STATE(2516)] = 124305, + [SMALL_STATE(2517)] = 124369, + [SMALL_STATE(2518)] = 124433, + [SMALL_STATE(2519)] = 124497, + [SMALL_STATE(2520)] = 124561, + [SMALL_STATE(2521)] = 124625, + [SMALL_STATE(2522)] = 124689, + [SMALL_STATE(2523)] = 124753, + [SMALL_STATE(2524)] = 124817, + [SMALL_STATE(2525)] = 124881, + [SMALL_STATE(2526)] = 124945, + [SMALL_STATE(2527)] = 125009, + [SMALL_STATE(2528)] = 125073, + [SMALL_STATE(2529)] = 125137, + [SMALL_STATE(2530)] = 125201, + [SMALL_STATE(2531)] = 125265, + [SMALL_STATE(2532)] = 125329, + [SMALL_STATE(2533)] = 125393, + [SMALL_STATE(2534)] = 125457, + [SMALL_STATE(2535)] = 125521, + [SMALL_STATE(2536)] = 125585, + [SMALL_STATE(2537)] = 125649, + [SMALL_STATE(2538)] = 125713, + [SMALL_STATE(2539)] = 125777, + [SMALL_STATE(2540)] = 125841, + [SMALL_STATE(2541)] = 125905, + [SMALL_STATE(2542)] = 125969, + [SMALL_STATE(2543)] = 126033, + [SMALL_STATE(2544)] = 126097, + [SMALL_STATE(2545)] = 126161, + [SMALL_STATE(2546)] = 126225, + [SMALL_STATE(2547)] = 126289, + [SMALL_STATE(2548)] = 126353, + [SMALL_STATE(2549)] = 126417, + [SMALL_STATE(2550)] = 126481, + [SMALL_STATE(2551)] = 126545, + [SMALL_STATE(2552)] = 126609, + [SMALL_STATE(2553)] = 126673, + [SMALL_STATE(2554)] = 126737, + [SMALL_STATE(2555)] = 126801, + [SMALL_STATE(2556)] = 126865, + [SMALL_STATE(2557)] = 126929, + [SMALL_STATE(2558)] = 126993, + [SMALL_STATE(2559)] = 127057, + [SMALL_STATE(2560)] = 127121, + [SMALL_STATE(2561)] = 127185, + [SMALL_STATE(2562)] = 127249, + [SMALL_STATE(2563)] = 127319, + [SMALL_STATE(2564)] = 127383, + [SMALL_STATE(2565)] = 127447, + [SMALL_STATE(2566)] = 127511, + [SMALL_STATE(2567)] = 127575, + [SMALL_STATE(2568)] = 127639, + [SMALL_STATE(2569)] = 127703, + [SMALL_STATE(2570)] = 127767, + [SMALL_STATE(2571)] = 127831, + [SMALL_STATE(2572)] = 127895, + [SMALL_STATE(2573)] = 127959, + [SMALL_STATE(2574)] = 128023, + [SMALL_STATE(2575)] = 128087, + [SMALL_STATE(2576)] = 128151, + [SMALL_STATE(2577)] = 128215, + [SMALL_STATE(2578)] = 128279, + [SMALL_STATE(2579)] = 128320, + [SMALL_STATE(2580)] = 128361, + [SMALL_STATE(2581)] = 128402, + [SMALL_STATE(2582)] = 128443, + [SMALL_STATE(2583)] = 128484, + [SMALL_STATE(2584)] = 128521, + [SMALL_STATE(2585)] = 128562, + [SMALL_STATE(2586)] = 128601, + [SMALL_STATE(2587)] = 128642, + [SMALL_STATE(2588)] = 128683, + [SMALL_STATE(2589)] = 128720, + [SMALL_STATE(2590)] = 128757, + [SMALL_STATE(2591)] = 128798, + [SMALL_STATE(2592)] = 128849, + [SMALL_STATE(2593)] = 128894, + [SMALL_STATE(2594)] = 128939, + [SMALL_STATE(2595)] = 128976, + [SMALL_STATE(2596)] = 129013, + [SMALL_STATE(2597)] = 129054, + [SMALL_STATE(2598)] = 129105, + [SMALL_STATE(2599)] = 129145, + [SMALL_STATE(2600)] = 129179, + [SMALL_STATE(2601)] = 129219, + [SMALL_STATE(2602)] = 129259, + [SMALL_STATE(2603)] = 129297, + [SMALL_STATE(2604)] = 129331, + [SMALL_STATE(2605)] = 129365, + [SMALL_STATE(2606)] = 129399, + [SMALL_STATE(2607)] = 129437, + [SMALL_STATE(2608)] = 129475, + [SMALL_STATE(2609)] = 129515, + [SMALL_STATE(2610)] = 129549, + [SMALL_STATE(2611)] = 129589, + [SMALL_STATE(2612)] = 129623, + [SMALL_STATE(2613)] = 129657, + [SMALL_STATE(2614)] = 129691, + [SMALL_STATE(2615)] = 129725, + [SMALL_STATE(2616)] = 129759, + [SMALL_STATE(2617)] = 129793, + [SMALL_STATE(2618)] = 129827, + [SMALL_STATE(2619)] = 129861, + [SMALL_STATE(2620)] = 129901, + [SMALL_STATE(2621)] = 129937, + [SMALL_STATE(2622)] = 129971, + [SMALL_STATE(2623)] = 130005, + [SMALL_STATE(2624)] = 130039, + [SMALL_STATE(2625)] = 130079, + [SMALL_STATE(2626)] = 130113, + [SMALL_STATE(2627)] = 130163, + [SMALL_STATE(2628)] = 130197, + [SMALL_STATE(2629)] = 130231, + [SMALL_STATE(2630)] = 130265, + [SMALL_STATE(2631)] = 130303, + [SMALL_STATE(2632)] = 130353, + [SMALL_STATE(2633)] = 130387, + [SMALL_STATE(2634)] = 130421, + [SMALL_STATE(2635)] = 130455, + [SMALL_STATE(2636)] = 130495, + [SMALL_STATE(2637)] = 130529, + [SMALL_STATE(2638)] = 130563, + [SMALL_STATE(2639)] = 130597, + [SMALL_STATE(2640)] = 130631, + [SMALL_STATE(2641)] = 130665, + [SMALL_STATE(2642)] = 130699, + [SMALL_STATE(2643)] = 130739, + [SMALL_STATE(2644)] = 130773, + [SMALL_STATE(2645)] = 130807, + [SMALL_STATE(2646)] = 130847, + [SMALL_STATE(2647)] = 130887, + [SMALL_STATE(2648)] = 130921, + [SMALL_STATE(2649)] = 130955, + [SMALL_STATE(2650)] = 130995, + [SMALL_STATE(2651)] = 131035, + [SMALL_STATE(2652)] = 131069, + [SMALL_STATE(2653)] = 131103, + [SMALL_STATE(2654)] = 131137, + [SMALL_STATE(2655)] = 131177, + [SMALL_STATE(2656)] = 131215, + [SMALL_STATE(2657)] = 131249, + [SMALL_STATE(2658)] = 131293, + [SMALL_STATE(2659)] = 131337, + [SMALL_STATE(2660)] = 131371, + [SMALL_STATE(2661)] = 131411, + [SMALL_STATE(2662)] = 131451, + [SMALL_STATE(2663)] = 131485, + [SMALL_STATE(2664)] = 131519, + [SMALL_STATE(2665)] = 131559, + [SMALL_STATE(2666)] = 131599, + [SMALL_STATE(2667)] = 131632, + [SMALL_STATE(2668)] = 131665, + [SMALL_STATE(2669)] = 131698, + [SMALL_STATE(2670)] = 131731, + [SMALL_STATE(2671)] = 131764, + [SMALL_STATE(2672)] = 131823, + [SMALL_STATE(2673)] = 131856, + [SMALL_STATE(2674)] = 131889, + [SMALL_STATE(2675)] = 131922, + [SMALL_STATE(2676)] = 131955, + [SMALL_STATE(2677)] = 132014, + [SMALL_STATE(2678)] = 132073, + [SMALL_STATE(2679)] = 132106, + [SMALL_STATE(2680)] = 132139, + [SMALL_STATE(2681)] = 132172, + [SMALL_STATE(2682)] = 132205, + [SMALL_STATE(2683)] = 132244, + [SMALL_STATE(2684)] = 132281, + [SMALL_STATE(2685)] = 132318, + [SMALL_STATE(2686)] = 132355, + [SMALL_STATE(2687)] = 132388, + [SMALL_STATE(2688)] = 132447, + [SMALL_STATE(2689)] = 132510, + [SMALL_STATE(2690)] = 132569, + [SMALL_STATE(2691)] = 132602, + [SMALL_STATE(2692)] = 132661, + [SMALL_STATE(2693)] = 132700, + [SMALL_STATE(2694)] = 132763, + [SMALL_STATE(2695)] = 132822, + [SMALL_STATE(2696)] = 132881, + [SMALL_STATE(2697)] = 132940, + [SMALL_STATE(2698)] = 132999, + [SMALL_STATE(2699)] = 133058, + [SMALL_STATE(2700)] = 133117, + [SMALL_STATE(2701)] = 133156, + [SMALL_STATE(2702)] = 133215, + [SMALL_STATE(2703)] = 133254, + [SMALL_STATE(2704)] = 133313, + [SMALL_STATE(2705)] = 133362, + [SMALL_STATE(2706)] = 133395, + [SMALL_STATE(2707)] = 133428, + [SMALL_STATE(2708)] = 133491, + [SMALL_STATE(2709)] = 133550, + [SMALL_STATE(2710)] = 133609, + [SMALL_STATE(2711)] = 133668, + [SMALL_STATE(2712)] = 133701, + [SMALL_STATE(2713)] = 133734, + [SMALL_STATE(2714)] = 133767, + [SMALL_STATE(2715)] = 133826, + [SMALL_STATE(2716)] = 133865, + [SMALL_STATE(2717)] = 133898, + [SMALL_STATE(2718)] = 133947, + [SMALL_STATE(2719)] = 134006, + [SMALL_STATE(2720)] = 134065, + [SMALL_STATE(2721)] = 134124, + [SMALL_STATE(2722)] = 134157, + [SMALL_STATE(2723)] = 134190, + [SMALL_STATE(2724)] = 134249, + [SMALL_STATE(2725)] = 134282, + [SMALL_STATE(2726)] = 134341, + [SMALL_STATE(2727)] = 134380, + [SMALL_STATE(2728)] = 134429, + [SMALL_STATE(2729)] = 134468, + [SMALL_STATE(2730)] = 134501, + [SMALL_STATE(2731)] = 134534, + [SMALL_STATE(2732)] = 134567, + [SMALL_STATE(2733)] = 134626, + [SMALL_STATE(2734)] = 134685, + [SMALL_STATE(2735)] = 134744, + [SMALL_STATE(2736)] = 134777, + [SMALL_STATE(2737)] = 134840, + [SMALL_STATE(2738)] = 134889, + [SMALL_STATE(2739)] = 134948, + [SMALL_STATE(2740)] = 135011, + [SMALL_STATE(2741)] = 135070, + [SMALL_STATE(2742)] = 135109, + [SMALL_STATE(2743)] = 135168, + [SMALL_STATE(2744)] = 135207, + [SMALL_STATE(2745)] = 135266, + [SMALL_STATE(2746)] = 135325, + [SMALL_STATE(2747)] = 135384, + [SMALL_STATE(2748)] = 135421, + [SMALL_STATE(2749)] = 135454, + [SMALL_STATE(2750)] = 135513, + [SMALL_STATE(2751)] = 135572, + [SMALL_STATE(2752)] = 135631, + [SMALL_STATE(2753)] = 135690, + [SMALL_STATE(2754)] = 135749, + [SMALL_STATE(2755)] = 135782, + [SMALL_STATE(2756)] = 135815, + [SMALL_STATE(2757)] = 135874, + [SMALL_STATE(2758)] = 135933, + [SMALL_STATE(2759)] = 135992, + [SMALL_STATE(2760)] = 136051, + [SMALL_STATE(2761)] = 136110, + [SMALL_STATE(2762)] = 136169, + [SMALL_STATE(2763)] = 136202, + [SMALL_STATE(2764)] = 136261, + [SMALL_STATE(2765)] = 136294, + [SMALL_STATE(2766)] = 136327, + [SMALL_STATE(2767)] = 136386, + [SMALL_STATE(2768)] = 136419, + [SMALL_STATE(2769)] = 136452, + [SMALL_STATE(2770)] = 136495, + [SMALL_STATE(2771)] = 136534, + [SMALL_STATE(2772)] = 136583, + [SMALL_STATE(2773)] = 136626, + [SMALL_STATE(2774)] = 136659, + [SMALL_STATE(2775)] = 136698, + [SMALL_STATE(2776)] = 136737, + [SMALL_STATE(2777)] = 136776, + [SMALL_STATE(2778)] = 136815, + [SMALL_STATE(2779)] = 136854, + [SMALL_STATE(2780)] = 136893, + [SMALL_STATE(2781)] = 136932, + [SMALL_STATE(2782)] = 136995, + [SMALL_STATE(2783)] = 137034, + [SMALL_STATE(2784)] = 137073, + [SMALL_STATE(2785)] = 137112, + [SMALL_STATE(2786)] = 137151, + [SMALL_STATE(2787)] = 137210, + [SMALL_STATE(2788)] = 137245, + [SMALL_STATE(2789)] = 137288, + [SMALL_STATE(2790)] = 137347, + [SMALL_STATE(2791)] = 137386, + [SMALL_STATE(2792)] = 137445, + [SMALL_STATE(2793)] = 137494, + [SMALL_STATE(2794)] = 137553, + [SMALL_STATE(2795)] = 137592, + [SMALL_STATE(2796)] = 137651, + [SMALL_STATE(2797)] = 137690, + [SMALL_STATE(2798)] = 137733, + [SMALL_STATE(2799)] = 137768, + [SMALL_STATE(2800)] = 137807, + [SMALL_STATE(2801)] = 137850, + [SMALL_STATE(2802)] = 137913, + [SMALL_STATE(2803)] = 137976, + [SMALL_STATE(2804)] = 138015, + [SMALL_STATE(2805)] = 138054, + [SMALL_STATE(2806)] = 138093, + [SMALL_STATE(2807)] = 138132, + [SMALL_STATE(2808)] = 138169, + [SMALL_STATE(2809)] = 138228, + [SMALL_STATE(2810)] = 138267, + [SMALL_STATE(2811)] = 138306, + [SMALL_STATE(2812)] = 138343, + [SMALL_STATE(2813)] = 138380, + [SMALL_STATE(2814)] = 138443, + [SMALL_STATE(2815)] = 138482, + [SMALL_STATE(2816)] = 138519, + [SMALL_STATE(2817)] = 138558, + [SMALL_STATE(2818)] = 138617, + [SMALL_STATE(2819)] = 138676, + [SMALL_STATE(2820)] = 138719, + [SMALL_STATE(2821)] = 138756, + [SMALL_STATE(2822)] = 138791, + [SMALL_STATE(2823)] = 138830, + [SMALL_STATE(2824)] = 138863, + [SMALL_STATE(2825)] = 138902, + [SMALL_STATE(2826)] = 138961, + [SMALL_STATE(2827)] = 139000, + [SMALL_STATE(2828)] = 139038, + [SMALL_STATE(2829)] = 139076, + [SMALL_STATE(2830)] = 139108, + [SMALL_STATE(2831)] = 139150, + [SMALL_STATE(2832)] = 139184, + [SMALL_STATE(2833)] = 139222, + [SMALL_STATE(2834)] = 139260, + [SMALL_STATE(2835)] = 139298, + [SMALL_STATE(2836)] = 139358, + [SMALL_STATE(2837)] = 139400, + [SMALL_STATE(2838)] = 139446, + [SMALL_STATE(2839)] = 139504, + [SMALL_STATE(2840)] = 139562, + [SMALL_STATE(2841)] = 139600, + [SMALL_STATE(2842)] = 139638, + [SMALL_STATE(2843)] = 139684, + [SMALL_STATE(2844)] = 139742, + [SMALL_STATE(2845)] = 139780, + [SMALL_STATE(2846)] = 139812, + [SMALL_STATE(2847)] = 139844, + [SMALL_STATE(2848)] = 139882, + [SMALL_STATE(2849)] = 139940, + [SMALL_STATE(2850)] = 140000, + [SMALL_STATE(2851)] = 140038, + [SMALL_STATE(2852)] = 140076, + [SMALL_STATE(2853)] = 140134, + [SMALL_STATE(2854)] = 140170, + [SMALL_STATE(2855)] = 140230, + [SMALL_STATE(2856)] = 140276, + [SMALL_STATE(2857)] = 140314, + [SMALL_STATE(2858)] = 140352, + [SMALL_STATE(2859)] = 140390, + [SMALL_STATE(2860)] = 140448, + [SMALL_STATE(2861)] = 140506, + [SMALL_STATE(2862)] = 140544, + [SMALL_STATE(2863)] = 140604, + [SMALL_STATE(2864)] = 140662, + [SMALL_STATE(2865)] = 140720, + [SMALL_STATE(2866)] = 140778, + [SMALL_STATE(2867)] = 140836, + [SMALL_STATE(2868)] = 140896, + [SMALL_STATE(2869)] = 140954, + [SMALL_STATE(2870)] = 140986, + [SMALL_STATE(2871)] = 141018, + [SMALL_STATE(2872)] = 141050, + [SMALL_STATE(2873)] = 141082, + [SMALL_STATE(2874)] = 141120, + [SMALL_STATE(2875)] = 141178, + [SMALL_STATE(2876)] = 141216, + [SMALL_STATE(2877)] = 141276, + [SMALL_STATE(2878)] = 141334, + [SMALL_STATE(2879)] = 141372, + [SMALL_STATE(2880)] = 141430, + [SMALL_STATE(2881)] = 141468, + [SMALL_STATE(2882)] = 141514, + [SMALL_STATE(2883)] = 141572, + [SMALL_STATE(2884)] = 141610, + [SMALL_STATE(2885)] = 141642, + [SMALL_STATE(2886)] = 141700, + [SMALL_STATE(2887)] = 141758, + [SMALL_STATE(2888)] = 141816, + [SMALL_STATE(2889)] = 141874, + [SMALL_STATE(2890)] = 141912, + [SMALL_STATE(2891)] = 141970, + [SMALL_STATE(2892)] = 142002, + [SMALL_STATE(2893)] = 142034, + [SMALL_STATE(2894)] = 142092, + [SMALL_STATE(2895)] = 142150, + [SMALL_STATE(2896)] = 142182, + [SMALL_STATE(2897)] = 142214, + [SMALL_STATE(2898)] = 142272, + [SMALL_STATE(2899)] = 142304, + [SMALL_STATE(2900)] = 142362, + [SMALL_STATE(2901)] = 142420, + [SMALL_STATE(2902)] = 142452, + [SMALL_STATE(2903)] = 142484, + [SMALL_STATE(2904)] = 142542, + [SMALL_STATE(2905)] = 142588, + [SMALL_STATE(2906)] = 142646, + [SMALL_STATE(2907)] = 142704, + [SMALL_STATE(2908)] = 142762, + [SMALL_STATE(2909)] = 142820, + [SMALL_STATE(2910)] = 142878, + [SMALL_STATE(2911)] = 142916, + [SMALL_STATE(2912)] = 142974, + [SMALL_STATE(2913)] = 143020, + [SMALL_STATE(2914)] = 143078, + [SMALL_STATE(2915)] = 143116, + [SMALL_STATE(2916)] = 143174, + [SMALL_STATE(2917)] = 143232, + [SMALL_STATE(2918)] = 143292, + [SMALL_STATE(2919)] = 143324, + [SMALL_STATE(2920)] = 143382, + [SMALL_STATE(2921)] = 143440, + [SMALL_STATE(2922)] = 143498, + [SMALL_STATE(2923)] = 143536, + [SMALL_STATE(2924)] = 143568, + [SMALL_STATE(2925)] = 143614, + [SMALL_STATE(2926)] = 143672, + [SMALL_STATE(2927)] = 143710, + [SMALL_STATE(2928)] = 143748, + [SMALL_STATE(2929)] = 143806, + [SMALL_STATE(2930)] = 143864, + [SMALL_STATE(2931)] = 143922, + [SMALL_STATE(2932)] = 143954, + [SMALL_STATE(2933)] = 144012, + [SMALL_STATE(2934)] = 144070, + [SMALL_STATE(2935)] = 144128, + [SMALL_STATE(2936)] = 144186, + [SMALL_STATE(2937)] = 144244, + [SMALL_STATE(2938)] = 144302, + [SMALL_STATE(2939)] = 144360, + [SMALL_STATE(2940)] = 144418, + [SMALL_STATE(2941)] = 144450, + [SMALL_STATE(2942)] = 144508, + [SMALL_STATE(2943)] = 144566, + [SMALL_STATE(2944)] = 144624, + [SMALL_STATE(2945)] = 144682, + [SMALL_STATE(2946)] = 144720, + [SMALL_STATE(2947)] = 144752, + [SMALL_STATE(2948)] = 144790, + [SMALL_STATE(2949)] = 144848, + [SMALL_STATE(2950)] = 144880, + [SMALL_STATE(2951)] = 144938, + [SMALL_STATE(2952)] = 144984, + [SMALL_STATE(2953)] = 145022, + [SMALL_STATE(2954)] = 145054, + [SMALL_STATE(2955)] = 145092, + [SMALL_STATE(2956)] = 145124, + [SMALL_STATE(2957)] = 145182, + [SMALL_STATE(2958)] = 145242, + [SMALL_STATE(2959)] = 145300, + [SMALL_STATE(2960)] = 145360, + [SMALL_STATE(2961)] = 145418, + [SMALL_STATE(2962)] = 145450, + [SMALL_STATE(2963)] = 145482, + [SMALL_STATE(2964)] = 145514, + [SMALL_STATE(2965)] = 145572, + [SMALL_STATE(2966)] = 145603, + [SMALL_STATE(2967)] = 145640, + [SMALL_STATE(2968)] = 145671, + [SMALL_STATE(2969)] = 145702, + [SMALL_STATE(2970)] = 145733, + [SMALL_STATE(2971)] = 145764, + [SMALL_STATE(2972)] = 145801, + [SMALL_STATE(2973)] = 145832, + [SMALL_STATE(2974)] = 145869, + [SMALL_STATE(2975)] = 145906, + [SMALL_STATE(2976)] = 145937, + [SMALL_STATE(2977)] = 145968, + [SMALL_STATE(2978)] = 145999, + [SMALL_STATE(2979)] = 146030, + [SMALL_STATE(2980)] = 146061, + [SMALL_STATE(2981)] = 146098, + [SMALL_STATE(2982)] = 146129, + [SMALL_STATE(2983)] = 146160, + [SMALL_STATE(2984)] = 146195, + [SMALL_STATE(2985)] = 146226, + [SMALL_STATE(2986)] = 146257, + [SMALL_STATE(2987)] = 146288, + [SMALL_STATE(2988)] = 146319, + [SMALL_STATE(2989)] = 146350, + [SMALL_STATE(2990)] = 146381, + [SMALL_STATE(2991)] = 146412, + [SMALL_STATE(2992)] = 146443, + [SMALL_STATE(2993)] = 146474, + [SMALL_STATE(2994)] = 146505, + [SMALL_STATE(2995)] = 146536, + [SMALL_STATE(2996)] = 146567, + [SMALL_STATE(2997)] = 146598, + [SMALL_STATE(2998)] = 146629, + [SMALL_STATE(2999)] = 146660, + [SMALL_STATE(3000)] = 146691, + [SMALL_STATE(3001)] = 146722, + [SMALL_STATE(3002)] = 146753, + [SMALL_STATE(3003)] = 146784, + [SMALL_STATE(3004)] = 146815, + [SMALL_STATE(3005)] = 146846, + [SMALL_STATE(3006)] = 146877, + [SMALL_STATE(3007)] = 146908, + [SMALL_STATE(3008)] = 146939, + [SMALL_STATE(3009)] = 146970, + [SMALL_STATE(3010)] = 147001, + [SMALL_STATE(3011)] = 147032, + [SMALL_STATE(3012)] = 147063, + [SMALL_STATE(3013)] = 147094, + [SMALL_STATE(3014)] = 147125, + [SMALL_STATE(3015)] = 147162, + [SMALL_STATE(3016)] = 147199, + [SMALL_STATE(3017)] = 147230, + [SMALL_STATE(3018)] = 147261, + [SMALL_STATE(3019)] = 147298, + [SMALL_STATE(3020)] = 147329, + [SMALL_STATE(3021)] = 147360, + [SMALL_STATE(3022)] = 147391, + [SMALL_STATE(3023)] = 147422, + [SMALL_STATE(3024)] = 147453, + [SMALL_STATE(3025)] = 147484, + [SMALL_STATE(3026)] = 147515, + [SMALL_STATE(3027)] = 147546, + [SMALL_STATE(3028)] = 147577, + [SMALL_STATE(3029)] = 147608, + [SMALL_STATE(3030)] = 147645, + [SMALL_STATE(3031)] = 147676, + [SMALL_STATE(3032)] = 147707, + [SMALL_STATE(3033)] = 147738, + [SMALL_STATE(3034)] = 147769, + [SMALL_STATE(3035)] = 147806, + [SMALL_STATE(3036)] = 147837, + [SMALL_STATE(3037)] = 147868, + [SMALL_STATE(3038)] = 147905, + [SMALL_STATE(3039)] = 147936, + [SMALL_STATE(3040)] = 147973, + [SMALL_STATE(3041)] = 148004, + [SMALL_STATE(3042)] = 148035, + [SMALL_STATE(3043)] = 148066, + [SMALL_STATE(3044)] = 148097, + [SMALL_STATE(3045)] = 148128, + [SMALL_STATE(3046)] = 148165, + [SMALL_STATE(3047)] = 148196, + [SMALL_STATE(3048)] = 148227, + [SMALL_STATE(3049)] = 148258, + [SMALL_STATE(3050)] = 148289, + [SMALL_STATE(3051)] = 148320, + [SMALL_STATE(3052)] = 148351, + [SMALL_STATE(3053)] = 148382, + [SMALL_STATE(3054)] = 148413, + [SMALL_STATE(3055)] = 148444, + [SMALL_STATE(3056)] = 148475, + [SMALL_STATE(3057)] = 148506, + [SMALL_STATE(3058)] = 148537, + [SMALL_STATE(3059)] = 148568, + [SMALL_STATE(3060)] = 148599, + [SMALL_STATE(3061)] = 148630, + [SMALL_STATE(3062)] = 148667, + [SMALL_STATE(3063)] = 148698, + [SMALL_STATE(3064)] = 148735, + [SMALL_STATE(3065)] = 148766, + [SMALL_STATE(3066)] = 148797, + [SMALL_STATE(3067)] = 148828, + [SMALL_STATE(3068)] = 148863, + [SMALL_STATE(3069)] = 148919, + [SMALL_STATE(3070)] = 148955, + [SMALL_STATE(3071)] = 149011, + [SMALL_STATE(3072)] = 149045, + [SMALL_STATE(3073)] = 149081, + [SMALL_STATE(3074)] = 149117, + [SMALL_STATE(3075)] = 149153, + [SMALL_STATE(3076)] = 149189, + [SMALL_STATE(3077)] = 149225, + [SMALL_STATE(3078)] = 149261, + [SMALL_STATE(3079)] = 149297, + [SMALL_STATE(3080)] = 149353, + [SMALL_STATE(3081)] = 149387, + [SMALL_STATE(3082)] = 149417, + [SMALL_STATE(3083)] = 149453, + [SMALL_STATE(3084)] = 149489, + [SMALL_STATE(3085)] = 149523, + [SMALL_STATE(3086)] = 149557, + [SMALL_STATE(3087)] = 149593, + [SMALL_STATE(3088)] = 149649, + [SMALL_STATE(3089)] = 149705, + [SMALL_STATE(3090)] = 149741, + [SMALL_STATE(3091)] = 149777, + [SMALL_STATE(3092)] = 149813, + [SMALL_STATE(3093)] = 149849, + [SMALL_STATE(3094)] = 149885, + [SMALL_STATE(3095)] = 149921, + [SMALL_STATE(3096)] = 149977, + [SMALL_STATE(3097)] = 150013, + [SMALL_STATE(3098)] = 150049, + [SMALL_STATE(3099)] = 150080, + [SMALL_STATE(3100)] = 150111, + [SMALL_STATE(3101)] = 150142, + [SMALL_STATE(3102)] = 150173, + [SMALL_STATE(3103)] = 150202, + [SMALL_STATE(3104)] = 150233, + [SMALL_STATE(3105)] = 150262, + [SMALL_STATE(3106)] = 150309, + [SMALL_STATE(3107)] = 150338, + [SMALL_STATE(3108)] = 150367, + [SMALL_STATE(3109)] = 150398, + [SMALL_STATE(3110)] = 150441, + [SMALL_STATE(3111)] = 150472, + [SMALL_STATE(3112)] = 150501, + [SMALL_STATE(3113)] = 150532, + [SMALL_STATE(3114)] = 150563, + [SMALL_STATE(3115)] = 150596, + [SMALL_STATE(3116)] = 150627, + [SMALL_STATE(3117)] = 150658, + [SMALL_STATE(3118)] = 150687, + [SMALL_STATE(3119)] = 150716, + [SMALL_STATE(3120)] = 150751, + [SMALL_STATE(3121)] = 150794, + [SMALL_STATE(3122)] = 150825, + [SMALL_STATE(3123)] = 150854, + [SMALL_STATE(3124)] = 150889, + [SMALL_STATE(3125)] = 150924, + [SMALL_STATE(3126)] = 150955, + [SMALL_STATE(3127)] = 150990, + [SMALL_STATE(3128)] = 151021, + [SMALL_STATE(3129)] = 151050, + [SMALL_STATE(3130)] = 151079, + [SMALL_STATE(3131)] = 151108, + [SMALL_STATE(3132)] = 151137, + [SMALL_STATE(3133)] = 151172, + [SMALL_STATE(3134)] = 151207, + [SMALL_STATE(3135)] = 151242, + [SMALL_STATE(3136)] = 151271, + [SMALL_STATE(3137)] = 151306, + [SMALL_STATE(3138)] = 151339, + [SMALL_STATE(3139)] = 151370, + [SMALL_STATE(3140)] = 151405, + [SMALL_STATE(3141)] = 151436, + [SMALL_STATE(3142)] = 151467, + [SMALL_STATE(3143)] = 151508, + [SMALL_STATE(3144)] = 151539, + [SMALL_STATE(3145)] = 151572, + [SMALL_STATE(3146)] = 151611, + [SMALL_STATE(3147)] = 151642, + [SMALL_STATE(3148)] = 151671, + [SMALL_STATE(3149)] = 151702, + [SMALL_STATE(3150)] = 151731, + [SMALL_STATE(3151)] = 151762, + [SMALL_STATE(3152)] = 151793, + [SMALL_STATE(3153)] = 151824, + [SMALL_STATE(3154)] = 151859, + [SMALL_STATE(3155)] = 151890, + [SMALL_STATE(3156)] = 151919, + [SMALL_STATE(3157)] = 151948, + [SMALL_STATE(3158)] = 151977, + [SMALL_STATE(3159)] = 152016, + [SMALL_STATE(3160)] = 152063, + [SMALL_STATE(3161)] = 152094, + [SMALL_STATE(3162)] = 152141, + [SMALL_STATE(3163)] = 152169, + [SMALL_STATE(3164)] = 152197, + [SMALL_STATE(3165)] = 152229, + [SMALL_STATE(3166)] = 152261, + [SMALL_STATE(3167)] = 152293, + [SMALL_STATE(3168)] = 152327, + [SMALL_STATE(3169)] = 152361, + [SMALL_STATE(3170)] = 152389, + [SMALL_STATE(3171)] = 152423, + [SMALL_STATE(3172)] = 152457, + [SMALL_STATE(3173)] = 152491, + [SMALL_STATE(3174)] = 152523, + [SMALL_STATE(3175)] = 152551, + [SMALL_STATE(3176)] = 152583, + [SMALL_STATE(3177)] = 152613, + [SMALL_STATE(3178)] = 152647, + [SMALL_STATE(3179)] = 152691, + [SMALL_STATE(3180)] = 152719, + [SMALL_STATE(3181)] = 152753, + [SMALL_STATE(3182)] = 152781, + [SMALL_STATE(3183)] = 152809, + [SMALL_STATE(3184)] = 152843, + [SMALL_STATE(3185)] = 152871, + [SMALL_STATE(3186)] = 152899, + [SMALL_STATE(3187)] = 152927, + [SMALL_STATE(3188)] = 152955, + [SMALL_STATE(3189)] = 152987, + [SMALL_STATE(3190)] = 153015, + [SMALL_STATE(3191)] = 153043, + [SMALL_STATE(3192)] = 153071, + [SMALL_STATE(3193)] = 153099, + [SMALL_STATE(3194)] = 153127, + [SMALL_STATE(3195)] = 153155, + [SMALL_STATE(3196)] = 153183, + [SMALL_STATE(3197)] = 153211, + [SMALL_STATE(3198)] = 153239, + [SMALL_STATE(3199)] = 153267, + [SMALL_STATE(3200)] = 153301, + [SMALL_STATE(3201)] = 153329, + [SMALL_STATE(3202)] = 153357, + [SMALL_STATE(3203)] = 153385, + [SMALL_STATE(3204)] = 153413, + [SMALL_STATE(3205)] = 153441, + [SMALL_STATE(3206)] = 153469, + [SMALL_STATE(3207)] = 153497, + [SMALL_STATE(3208)] = 153525, + [SMALL_STATE(3209)] = 153553, + [SMALL_STATE(3210)] = 153581, + [SMALL_STATE(3211)] = 153609, + [SMALL_STATE(3212)] = 153637, + [SMALL_STATE(3213)] = 153671, + [SMALL_STATE(3214)] = 153699, + [SMALL_STATE(3215)] = 153743, + [SMALL_STATE(3216)] = 153771, + [SMALL_STATE(3217)] = 153799, + [SMALL_STATE(3218)] = 153827, + [SMALL_STATE(3219)] = 153861, + [SMALL_STATE(3220)] = 153889, + [SMALL_STATE(3221)] = 153917, + [SMALL_STATE(3222)] = 153945, + [SMALL_STATE(3223)] = 153973, + [SMALL_STATE(3224)] = 154001, + [SMALL_STATE(3225)] = 154033, + [SMALL_STATE(3226)] = 154061, + [SMALL_STATE(3227)] = 154089, + [SMALL_STATE(3228)] = 154117, + [SMALL_STATE(3229)] = 154145, + [SMALL_STATE(3230)] = 154173, + [SMALL_STATE(3231)] = 154215, + [SMALL_STATE(3232)] = 154257, + [SMALL_STATE(3233)] = 154285, + [SMALL_STATE(3234)] = 154313, + [SMALL_STATE(3235)] = 154341, + [SMALL_STATE(3236)] = 154369, + [SMALL_STATE(3237)] = 154397, + [SMALL_STATE(3238)] = 154429, + [SMALL_STATE(3239)] = 154457, + [SMALL_STATE(3240)] = 154485, + [SMALL_STATE(3241)] = 154517, + [SMALL_STATE(3242)] = 154545, + [SMALL_STATE(3243)] = 154577, + [SMALL_STATE(3244)] = 154611, + [SMALL_STATE(3245)] = 154639, + [SMALL_STATE(3246)] = 154667, + [SMALL_STATE(3247)] = 154695, + [SMALL_STATE(3248)] = 154729, + [SMALL_STATE(3249)] = 154757, + [SMALL_STATE(3250)] = 154785, + [SMALL_STATE(3251)] = 154817, + [SMALL_STATE(3252)] = 154845, + [SMALL_STATE(3253)] = 154873, + [SMALL_STATE(3254)] = 154901, + [SMALL_STATE(3255)] = 154929, + [SMALL_STATE(3256)] = 154960, + [SMALL_STATE(3257)] = 154987, + [SMALL_STATE(3258)] = 155014, + [SMALL_STATE(3259)] = 155041, + [SMALL_STATE(3260)] = 155068, + [SMALL_STATE(3261)] = 155095, + [SMALL_STATE(3262)] = 155122, + [SMALL_STATE(3263)] = 155149, + [SMALL_STATE(3264)] = 155176, + [SMALL_STATE(3265)] = 155203, + [SMALL_STATE(3266)] = 155230, + [SMALL_STATE(3267)] = 155261, + [SMALL_STATE(3268)] = 155288, + [SMALL_STATE(3269)] = 155315, + [SMALL_STATE(3270)] = 155342, + [SMALL_STATE(3271)] = 155369, + [SMALL_STATE(3272)] = 155404, + [SMALL_STATE(3273)] = 155431, + [SMALL_STATE(3274)] = 155458, + [SMALL_STATE(3275)] = 155493, + [SMALL_STATE(3276)] = 155520, + [SMALL_STATE(3277)] = 155547, + [SMALL_STATE(3278)] = 155596, + [SMALL_STATE(3279)] = 155623, + [SMALL_STATE(3280)] = 155650, + [SMALL_STATE(3281)] = 155683, + [SMALL_STATE(3282)] = 155710, + [SMALL_STATE(3283)] = 155741, + [SMALL_STATE(3284)] = 155768, + [SMALL_STATE(3285)] = 155795, + [SMALL_STATE(3286)] = 155822, + [SMALL_STATE(3287)] = 155849, + [SMALL_STATE(3288)] = 155880, + [SMALL_STATE(3289)] = 155911, + [SMALL_STATE(3290)] = 155938, + [SMALL_STATE(3291)] = 155965, + [SMALL_STATE(3292)] = 155996, + [SMALL_STATE(3293)] = 156023, + [SMALL_STATE(3294)] = 156056, + [SMALL_STATE(3295)] = 156083, + [SMALL_STATE(3296)] = 156110, + [SMALL_STATE(3297)] = 156137, + [SMALL_STATE(3298)] = 156168, + [SMALL_STATE(3299)] = 156199, + [SMALL_STATE(3300)] = 156226, + [SMALL_STATE(3301)] = 156253, + [SMALL_STATE(3302)] = 156284, + [SMALL_STATE(3303)] = 156311, + [SMALL_STATE(3304)] = 156344, + [SMALL_STATE(3305)] = 156377, + [SMALL_STATE(3306)] = 156404, + [SMALL_STATE(3307)] = 156431, + [SMALL_STATE(3308)] = 156458, + [SMALL_STATE(3309)] = 156489, + [SMALL_STATE(3310)] = 156515, + [SMALL_STATE(3311)] = 156541, + [SMALL_STATE(3312)] = 156567, + [SMALL_STATE(3313)] = 156593, + [SMALL_STATE(3314)] = 156619, + [SMALL_STATE(3315)] = 156651, + [SMALL_STATE(3316)] = 156685, + [SMALL_STATE(3317)] = 156711, + [SMALL_STATE(3318)] = 156737, + [SMALL_STATE(3319)] = 156763, + [SMALL_STATE(3320)] = 156789, + [SMALL_STATE(3321)] = 156815, + [SMALL_STATE(3322)] = 156847, + [SMALL_STATE(3323)] = 156873, + [SMALL_STATE(3324)] = 156899, + [SMALL_STATE(3325)] = 156929, + [SMALL_STATE(3326)] = 156963, + [SMALL_STATE(3327)] = 156993, + [SMALL_STATE(3328)] = 157019, + [SMALL_STATE(3329)] = 157045, + [SMALL_STATE(3330)] = 157077, + [SMALL_STATE(3331)] = 157103, + [SMALL_STATE(3332)] = 157133, + [SMALL_STATE(3333)] = 157165, + [SMALL_STATE(3334)] = 157197, + [SMALL_STATE(3335)] = 157223, + [SMALL_STATE(3336)] = 157249, + [SMALL_STATE(3337)] = 157275, + [SMALL_STATE(3338)] = 157301, + [SMALL_STATE(3339)] = 157327, + [SMALL_STATE(3340)] = 157360, + [SMALL_STATE(3341)] = 157393, + [SMALL_STATE(3342)] = 157418, + [SMALL_STATE(3343)] = 157443, + [SMALL_STATE(3344)] = 157468, + [SMALL_STATE(3345)] = 157493, + [SMALL_STATE(3346)] = 157518, + [SMALL_STATE(3347)] = 157543, + [SMALL_STATE(3348)] = 157568, + [SMALL_STATE(3349)] = 157593, + [SMALL_STATE(3350)] = 157618, + [SMALL_STATE(3351)] = 157643, + [SMALL_STATE(3352)] = 157668, + [SMALL_STATE(3353)] = 157693, + [SMALL_STATE(3354)] = 157726, + [SMALL_STATE(3355)] = 157750, + [SMALL_STATE(3356)] = 157774, + [SMALL_STATE(3357)] = 157798, + [SMALL_STATE(3358)] = 157822, + [SMALL_STATE(3359)] = 157846, + [SMALL_STATE(3360)] = 157870, + [SMALL_STATE(3361)] = 157894, + [SMALL_STATE(3362)] = 157918, + [SMALL_STATE(3363)] = 157942, + [SMALL_STATE(3364)] = 157966, + [SMALL_STATE(3365)] = 157990, + [SMALL_STATE(3366)] = 158014, + [SMALL_STATE(3367)] = 158038, + [SMALL_STATE(3368)] = 158062, + [SMALL_STATE(3369)] = 158086, + [SMALL_STATE(3370)] = 158124, + [SMALL_STATE(3371)] = 158148, + [SMALL_STATE(3372)] = 158172, + [SMALL_STATE(3373)] = 158196, + [SMALL_STATE(3374)] = 158232, + [SMALL_STATE(3375)] = 158256, + [SMALL_STATE(3376)] = 158280, + [SMALL_STATE(3377)] = 158304, + [SMALL_STATE(3378)] = 158328, + [SMALL_STATE(3379)] = 158352, + [SMALL_STATE(3380)] = 158376, + [SMALL_STATE(3381)] = 158400, + [SMALL_STATE(3382)] = 158424, + [SMALL_STATE(3383)] = 158448, + [SMALL_STATE(3384)] = 158472, + [SMALL_STATE(3385)] = 158496, + [SMALL_STATE(3386)] = 158520, + [SMALL_STATE(3387)] = 158544, + [SMALL_STATE(3388)] = 158568, + [SMALL_STATE(3389)] = 158592, + [SMALL_STATE(3390)] = 158616, + [SMALL_STATE(3391)] = 158640, + [SMALL_STATE(3392)] = 158664, + [SMALL_STATE(3393)] = 158688, + [SMALL_STATE(3394)] = 158712, + [SMALL_STATE(3395)] = 158736, + [SMALL_STATE(3396)] = 158760, + [SMALL_STATE(3397)] = 158784, + [SMALL_STATE(3398)] = 158808, + [SMALL_STATE(3399)] = 158832, + [SMALL_STATE(3400)] = 158861, + [SMALL_STATE(3401)] = 158890, + [SMALL_STATE(3402)] = 158919, + [SMALL_STATE(3403)] = 158948, + [SMALL_STATE(3404)] = 158986, + [SMALL_STATE(3405)] = 159024, + [SMALL_STATE(3406)] = 159062, + [SMALL_STATE(3407)] = 159100, + [SMALL_STATE(3408)] = 159138, + [SMALL_STATE(3409)] = 159176, + [SMALL_STATE(3410)] = 159214, + [SMALL_STATE(3411)] = 159252, + [SMALL_STATE(3412)] = 159290, + [SMALL_STATE(3413)] = 159328, + [SMALL_STATE(3414)] = 159366, + [SMALL_STATE(3415)] = 159404, + [SMALL_STATE(3416)] = 159442, + [SMALL_STATE(3417)] = 159480, + [SMALL_STATE(3418)] = 159518, + [SMALL_STATE(3419)] = 159556, + [SMALL_STATE(3420)] = 159594, + [SMALL_STATE(3421)] = 159632, + [SMALL_STATE(3422)] = 159670, + [SMALL_STATE(3423)] = 159708, + [SMALL_STATE(3424)] = 159746, + [SMALL_STATE(3425)] = 159784, + [SMALL_STATE(3426)] = 159822, + [SMALL_STATE(3427)] = 159860, + [SMALL_STATE(3428)] = 159898, + [SMALL_STATE(3429)] = 159936, + [SMALL_STATE(3430)] = 159974, + [SMALL_STATE(3431)] = 160012, + [SMALL_STATE(3432)] = 160050, + [SMALL_STATE(3433)] = 160088, + [SMALL_STATE(3434)] = 160126, + [SMALL_STATE(3435)] = 160164, + [SMALL_STATE(3436)] = 160202, + [SMALL_STATE(3437)] = 160240, + [SMALL_STATE(3438)] = 160278, + [SMALL_STATE(3439)] = 160316, + [SMALL_STATE(3440)] = 160354, + [SMALL_STATE(3441)] = 160392, + [SMALL_STATE(3442)] = 160430, + [SMALL_STATE(3443)] = 160468, + [SMALL_STATE(3444)] = 160506, + [SMALL_STATE(3445)] = 160544, + [SMALL_STATE(3446)] = 160582, + [SMALL_STATE(3447)] = 160620, + [SMALL_STATE(3448)] = 160658, + [SMALL_STATE(3449)] = 160696, + [SMALL_STATE(3450)] = 160724, + [SMALL_STATE(3451)] = 160752, + [SMALL_STATE(3452)] = 160790, + [SMALL_STATE(3453)] = 160828, + [SMALL_STATE(3454)] = 160866, + [SMALL_STATE(3455)] = 160894, + [SMALL_STATE(3456)] = 160932, + [SMALL_STATE(3457)] = 160970, + [SMALL_STATE(3458)] = 161008, + [SMALL_STATE(3459)] = 161046, + [SMALL_STATE(3460)] = 161084, + [SMALL_STATE(3461)] = 161112, + [SMALL_STATE(3462)] = 161150, + [SMALL_STATE(3463)] = 161188, + [SMALL_STATE(3464)] = 161226, + [SMALL_STATE(3465)] = 161264, + [SMALL_STATE(3466)] = 161302, + [SMALL_STATE(3467)] = 161340, + [SMALL_STATE(3468)] = 161378, + [SMALL_STATE(3469)] = 161416, + [SMALL_STATE(3470)] = 161454, + [SMALL_STATE(3471)] = 161492, + [SMALL_STATE(3472)] = 161530, + [SMALL_STATE(3473)] = 161568, + [SMALL_STATE(3474)] = 161606, + [SMALL_STATE(3475)] = 161644, + [SMALL_STATE(3476)] = 161682, + [SMALL_STATE(3477)] = 161720, + [SMALL_STATE(3478)] = 161758, + [SMALL_STATE(3479)] = 161796, + [SMALL_STATE(3480)] = 161834, + [SMALL_STATE(3481)] = 161862, + [SMALL_STATE(3482)] = 161900, + [SMALL_STATE(3483)] = 161938, + [SMALL_STATE(3484)] = 161976, + [SMALL_STATE(3485)] = 162004, + [SMALL_STATE(3486)] = 162042, + [SMALL_STATE(3487)] = 162080, + [SMALL_STATE(3488)] = 162118, + [SMALL_STATE(3489)] = 162156, + [SMALL_STATE(3490)] = 162194, + [SMALL_STATE(3491)] = 162232, + [SMALL_STATE(3492)] = 162270, + [SMALL_STATE(3493)] = 162298, + [SMALL_STATE(3494)] = 162336, + [SMALL_STATE(3495)] = 162374, + [SMALL_STATE(3496)] = 162412, + [SMALL_STATE(3497)] = 162450, + [SMALL_STATE(3498)] = 162488, + [SMALL_STATE(3499)] = 162526, + [SMALL_STATE(3500)] = 162564, + [SMALL_STATE(3501)] = 162602, + [SMALL_STATE(3502)] = 162640, + [SMALL_STATE(3503)] = 162678, + [SMALL_STATE(3504)] = 162716, + [SMALL_STATE(3505)] = 162744, + [SMALL_STATE(3506)] = 162782, + [SMALL_STATE(3507)] = 162820, + [SMALL_STATE(3508)] = 162858, + [SMALL_STATE(3509)] = 162896, + [SMALL_STATE(3510)] = 162934, + [SMALL_STATE(3511)] = 162972, + [SMALL_STATE(3512)] = 163010, + [SMALL_STATE(3513)] = 163035, + [SMALL_STATE(3514)] = 163060, + [SMALL_STATE(3515)] = 163085, + [SMALL_STATE(3516)] = 163110, + [SMALL_STATE(3517)] = 163135, + [SMALL_STATE(3518)] = 163160, + [SMALL_STATE(3519)] = 163185, + [SMALL_STATE(3520)] = 163210, + [SMALL_STATE(3521)] = 163235, + [SMALL_STATE(3522)] = 163260, + [SMALL_STATE(3523)] = 163285, + [SMALL_STATE(3524)] = 163310, + [SMALL_STATE(3525)] = 163335, + [SMALL_STATE(3526)] = 163360, + [SMALL_STATE(3527)] = 163385, + [SMALL_STATE(3528)] = 163410, + [SMALL_STATE(3529)] = 163435, + [SMALL_STATE(3530)] = 163460, + [SMALL_STATE(3531)] = 163485, + [SMALL_STATE(3532)] = 163510, + [SMALL_STATE(3533)] = 163535, + [SMALL_STATE(3534)] = 163560, + [SMALL_STATE(3535)] = 163585, + [SMALL_STATE(3536)] = 163610, + [SMALL_STATE(3537)] = 163635, + [SMALL_STATE(3538)] = 163660, + [SMALL_STATE(3539)] = 163685, + [SMALL_STATE(3540)] = 163710, + [SMALL_STATE(3541)] = 163735, + [SMALL_STATE(3542)] = 163760, + [SMALL_STATE(3543)] = 163785, + [SMALL_STATE(3544)] = 163810, + [SMALL_STATE(3545)] = 163835, + [SMALL_STATE(3546)] = 163860, + [SMALL_STATE(3547)] = 163885, + [SMALL_STATE(3548)] = 163910, + [SMALL_STATE(3549)] = 163935, + [SMALL_STATE(3550)] = 163960, + [SMALL_STATE(3551)] = 163985, + [SMALL_STATE(3552)] = 164010, + [SMALL_STATE(3553)] = 164035, + [SMALL_STATE(3554)] = 164060, + [SMALL_STATE(3555)] = 164085, + [SMALL_STATE(3556)] = 164110, + [SMALL_STATE(3557)] = 164135, + [SMALL_STATE(3558)] = 164160, + [SMALL_STATE(3559)] = 164185, + [SMALL_STATE(3560)] = 164210, + [SMALL_STATE(3561)] = 164235, + [SMALL_STATE(3562)] = 164260, + [SMALL_STATE(3563)] = 164285, + [SMALL_STATE(3564)] = 164310, + [SMALL_STATE(3565)] = 164335, + [SMALL_STATE(3566)] = 164360, + [SMALL_STATE(3567)] = 164385, + [SMALL_STATE(3568)] = 164410, + [SMALL_STATE(3569)] = 164435, + [SMALL_STATE(3570)] = 164460, + [SMALL_STATE(3571)] = 164485, + [SMALL_STATE(3572)] = 164510, + [SMALL_STATE(3573)] = 164535, + [SMALL_STATE(3574)] = 164560, + [SMALL_STATE(3575)] = 164585, + [SMALL_STATE(3576)] = 164610, + [SMALL_STATE(3577)] = 164635, + [SMALL_STATE(3578)] = 164660, + [SMALL_STATE(3579)] = 164685, + [SMALL_STATE(3580)] = 164710, + [SMALL_STATE(3581)] = 164735, + [SMALL_STATE(3582)] = 164760, + [SMALL_STATE(3583)] = 164785, + [SMALL_STATE(3584)] = 164810, + [SMALL_STATE(3585)] = 164835, + [SMALL_STATE(3586)] = 164860, + [SMALL_STATE(3587)] = 164885, + [SMALL_STATE(3588)] = 164910, + [SMALL_STATE(3589)] = 164935, + [SMALL_STATE(3590)] = 164960, + [SMALL_STATE(3591)] = 164985, + [SMALL_STATE(3592)] = 165010, + [SMALL_STATE(3593)] = 165035, + [SMALL_STATE(3594)] = 165060, + [SMALL_STATE(3595)] = 165085, + [SMALL_STATE(3596)] = 165110, + [SMALL_STATE(3597)] = 165135, + [SMALL_STATE(3598)] = 165160, + [SMALL_STATE(3599)] = 165185, + [SMALL_STATE(3600)] = 165210, + [SMALL_STATE(3601)] = 165235, + [SMALL_STATE(3602)] = 165260, + [SMALL_STATE(3603)] = 165285, + [SMALL_STATE(3604)] = 165310, + [SMALL_STATE(3605)] = 165335, + [SMALL_STATE(3606)] = 165360, + [SMALL_STATE(3607)] = 165385, + [SMALL_STATE(3608)] = 165410, + [SMALL_STATE(3609)] = 165435, + [SMALL_STATE(3610)] = 165460, + [SMALL_STATE(3611)] = 165485, + [SMALL_STATE(3612)] = 165510, + [SMALL_STATE(3613)] = 165535, + [SMALL_STATE(3614)] = 165560, + [SMALL_STATE(3615)] = 165585, + [SMALL_STATE(3616)] = 165610, + [SMALL_STATE(3617)] = 165635, + [SMALL_STATE(3618)] = 165660, + [SMALL_STATE(3619)] = 165685, + [SMALL_STATE(3620)] = 165710, + [SMALL_STATE(3621)] = 165735, + [SMALL_STATE(3622)] = 165760, + [SMALL_STATE(3623)] = 165785, + [SMALL_STATE(3624)] = 165810, + [SMALL_STATE(3625)] = 165835, + [SMALL_STATE(3626)] = 165860, + [SMALL_STATE(3627)] = 165885, + [SMALL_STATE(3628)] = 165910, + [SMALL_STATE(3629)] = 165935, + [SMALL_STATE(3630)] = 165960, + [SMALL_STATE(3631)] = 165985, + [SMALL_STATE(3632)] = 166010, + [SMALL_STATE(3633)] = 166035, + [SMALL_STATE(3634)] = 166060, + [SMALL_STATE(3635)] = 166085, + [SMALL_STATE(3636)] = 166110, + [SMALL_STATE(3637)] = 166135, + [SMALL_STATE(3638)] = 166160, + [SMALL_STATE(3639)] = 166185, + [SMALL_STATE(3640)] = 166210, + [SMALL_STATE(3641)] = 166235, + [SMALL_STATE(3642)] = 166260, + [SMALL_STATE(3643)] = 166285, + [SMALL_STATE(3644)] = 166310, + [SMALL_STATE(3645)] = 166335, + [SMALL_STATE(3646)] = 166360, + [SMALL_STATE(3647)] = 166385, + [SMALL_STATE(3648)] = 166410, + [SMALL_STATE(3649)] = 166435, + [SMALL_STATE(3650)] = 166460, + [SMALL_STATE(3651)] = 166485, + [SMALL_STATE(3652)] = 166510, + [SMALL_STATE(3653)] = 166535, + [SMALL_STATE(3654)] = 166560, + [SMALL_STATE(3655)] = 166585, + [SMALL_STATE(3656)] = 166610, + [SMALL_STATE(3657)] = 166635, + [SMALL_STATE(3658)] = 166660, + [SMALL_STATE(3659)] = 166682, + [SMALL_STATE(3660)] = 166714, + [SMALL_STATE(3661)] = 166739, + [SMALL_STATE(3662)] = 166758, + [SMALL_STATE(3663)] = 166783, + [SMALL_STATE(3664)] = 166808, + [SMALL_STATE(3665)] = 166827, + [SMALL_STATE(3666)] = 166852, + [SMALL_STATE(3667)] = 166877, + [SMALL_STATE(3668)] = 166902, + [SMALL_STATE(3669)] = 166927, + [SMALL_STATE(3670)] = 166946, + [SMALL_STATE(3671)] = 166977, + [SMALL_STATE(3672)] = 166996, + [SMALL_STATE(3673)] = 167015, + [SMALL_STATE(3674)] = 167046, + [SMALL_STATE(3675)] = 167071, + [SMALL_STATE(3676)] = 167090, + [SMALL_STATE(3677)] = 167109, + [SMALL_STATE(3678)] = 167140, + [SMALL_STATE(3679)] = 167159, + [SMALL_STATE(3680)] = 167184, + [SMALL_STATE(3681)] = 167200, + [SMALL_STATE(3682)] = 167218, + [SMALL_STATE(3683)] = 167236, + [SMALL_STATE(3684)] = 167262, + [SMALL_STATE(3685)] = 167280, + [SMALL_STATE(3686)] = 167298, + [SMALL_STATE(3687)] = 167316, + [SMALL_STATE(3688)] = 167334, + [SMALL_STATE(3689)] = 167352, + [SMALL_STATE(3690)] = 167370, + [SMALL_STATE(3691)] = 167388, + [SMALL_STATE(3692)] = 167406, + [SMALL_STATE(3693)] = 167433, + [SMALL_STATE(3694)] = 167456, + [SMALL_STATE(3695)] = 167471, + [SMALL_STATE(3696)] = 167486, + [SMALL_STATE(3697)] = 167502, + [SMALL_STATE(3698)] = 167518, + [SMALL_STATE(3699)] = 167542, + [SMALL_STATE(3700)] = 167558, + [SMALL_STATE(3701)] = 167582, + [SMALL_STATE(3702)] = 167598, + [SMALL_STATE(3703)] = 167614, + [SMALL_STATE(3704)] = 167630, + [SMALL_STATE(3705)] = 167646, + [SMALL_STATE(3706)] = 167662, + [SMALL_STATE(3707)] = 167678, + [SMALL_STATE(3708)] = 167702, + [SMALL_STATE(3709)] = 167718, + [SMALL_STATE(3710)] = 167742, + [SMALL_STATE(3711)] = 167758, + [SMALL_STATE(3712)] = 167780, + [SMALL_STATE(3713)] = 167804, + [SMALL_STATE(3714)] = 167820, + [SMALL_STATE(3715)] = 167836, + [SMALL_STATE(3716)] = 167860, + [SMALL_STATE(3717)] = 167876, + [SMALL_STATE(3718)] = 167892, + [SMALL_STATE(3719)] = 167908, + [SMALL_STATE(3720)] = 167924, + [SMALL_STATE(3721)] = 167940, + [SMALL_STATE(3722)] = 167962, + [SMALL_STATE(3723)] = 167978, + [SMALL_STATE(3724)] = 168000, + [SMALL_STATE(3725)] = 168015, + [SMALL_STATE(3726)] = 168036, + [SMALL_STATE(3727)] = 168051, + [SMALL_STATE(3728)] = 168066, + [SMALL_STATE(3729)] = 168081, + [SMALL_STATE(3730)] = 168096, + [SMALL_STATE(3731)] = 168115, + [SMALL_STATE(3732)] = 168136, + [SMALL_STATE(3733)] = 168151, + [SMALL_STATE(3734)] = 168166, + [SMALL_STATE(3735)] = 168181, + [SMALL_STATE(3736)] = 168202, + [SMALL_STATE(3737)] = 168223, + [SMALL_STATE(3738)] = 168244, + [SMALL_STATE(3739)] = 168259, + [SMALL_STATE(3740)] = 168274, + [SMALL_STATE(3741)] = 168289, + [SMALL_STATE(3742)] = 168304, + [SMALL_STATE(3743)] = 168325, + [SMALL_STATE(3744)] = 168340, + [SMALL_STATE(3745)] = 168355, + [SMALL_STATE(3746)] = 168376, + [SMALL_STATE(3747)] = 168391, + [SMALL_STATE(3748)] = 168412, + [SMALL_STATE(3749)] = 168427, + [SMALL_STATE(3750)] = 168448, + [SMALL_STATE(3751)] = 168469, + [SMALL_STATE(3752)] = 168490, + [SMALL_STATE(3753)] = 168511, + [SMALL_STATE(3754)] = 168526, + [SMALL_STATE(3755)] = 168547, + [SMALL_STATE(3756)] = 168568, + [SMALL_STATE(3757)] = 168589, + [SMALL_STATE(3758)] = 168610, + [SMALL_STATE(3759)] = 168631, + [SMALL_STATE(3760)] = 168652, + [SMALL_STATE(3761)] = 168673, + [SMALL_STATE(3762)] = 168694, + [SMALL_STATE(3763)] = 168709, + [SMALL_STATE(3764)] = 168724, + [SMALL_STATE(3765)] = 168739, + [SMALL_STATE(3766)] = 168754, + [SMALL_STATE(3767)] = 168775, + [SMALL_STATE(3768)] = 168796, + [SMALL_STATE(3769)] = 168811, + [SMALL_STATE(3770)] = 168832, + [SMALL_STATE(3771)] = 168847, + [SMALL_STATE(3772)] = 168868, + [SMALL_STATE(3773)] = 168883, + [SMALL_STATE(3774)] = 168904, + [SMALL_STATE(3775)] = 168925, + [SMALL_STATE(3776)] = 168946, + [SMALL_STATE(3777)] = 168966, + [SMALL_STATE(3778)] = 168986, + [SMALL_STATE(3779)] = 169006, + [SMALL_STATE(3780)] = 169026, + [SMALL_STATE(3781)] = 169046, + [SMALL_STATE(3782)] = 169066, + [SMALL_STATE(3783)] = 169086, + [SMALL_STATE(3784)] = 169102, + [SMALL_STATE(3785)] = 169124, + [SMALL_STATE(3786)] = 169144, + [SMALL_STATE(3787)] = 169164, + [SMALL_STATE(3788)] = 169184, + [SMALL_STATE(3789)] = 169204, + [SMALL_STATE(3790)] = 169224, + [SMALL_STATE(3791)] = 169244, + [SMALL_STATE(3792)] = 169264, + [SMALL_STATE(3793)] = 169284, + [SMALL_STATE(3794)] = 169298, + [SMALL_STATE(3795)] = 169318, + [SMALL_STATE(3796)] = 169338, + [SMALL_STATE(3797)] = 169356, + [SMALL_STATE(3798)] = 169376, + [SMALL_STATE(3799)] = 169396, + [SMALL_STATE(3800)] = 169416, + [SMALL_STATE(3801)] = 169436, + [SMALL_STATE(3802)] = 169456, + [SMALL_STATE(3803)] = 169471, + [SMALL_STATE(3804)] = 169488, + [SMALL_STATE(3805)] = 169505, + [SMALL_STATE(3806)] = 169520, + [SMALL_STATE(3807)] = 169539, + [SMALL_STATE(3808)] = 169552, + [SMALL_STATE(3809)] = 169571, + [SMALL_STATE(3810)] = 169586, + [SMALL_STATE(3811)] = 169601, + [SMALL_STATE(3812)] = 169618, + [SMALL_STATE(3813)] = 169635, + [SMALL_STATE(3814)] = 169650, + [SMALL_STATE(3815)] = 169665, + [SMALL_STATE(3816)] = 169680, + [SMALL_STATE(3817)] = 169697, + [SMALL_STATE(3818)] = 169714, + [SMALL_STATE(3819)] = 169733, + [SMALL_STATE(3820)] = 169750, + [SMALL_STATE(3821)] = 169769, + [SMALL_STATE(3822)] = 169786, + [SMALL_STATE(3823)] = 169801, + [SMALL_STATE(3824)] = 169816, + [SMALL_STATE(3825)] = 169831, + [SMALL_STATE(3826)] = 169848, + [SMALL_STATE(3827)] = 169863, + [SMALL_STATE(3828)] = 169878, + [SMALL_STATE(3829)] = 169893, + [SMALL_STATE(3830)] = 169908, + [SMALL_STATE(3831)] = 169923, + [SMALL_STATE(3832)] = 169936, + [SMALL_STATE(3833)] = 169951, + [SMALL_STATE(3834)] = 169966, + [SMALL_STATE(3835)] = 169981, + [SMALL_STATE(3836)] = 170000, + [SMALL_STATE(3837)] = 170017, + [SMALL_STATE(3838)] = 170032, + [SMALL_STATE(3839)] = 170049, + [SMALL_STATE(3840)] = 170066, + [SMALL_STATE(3841)] = 170081, + [SMALL_STATE(3842)] = 170098, + [SMALL_STATE(3843)] = 170113, + [SMALL_STATE(3844)] = 170132, + [SMALL_STATE(3845)] = 170149, + [SMALL_STATE(3846)] = 170166, + [SMALL_STATE(3847)] = 170183, + [SMALL_STATE(3848)] = 170200, + [SMALL_STATE(3849)] = 170217, + [SMALL_STATE(3850)] = 170230, + [SMALL_STATE(3851)] = 170247, + [SMALL_STATE(3852)] = 170262, + [SMALL_STATE(3853)] = 170281, + [SMALL_STATE(3854)] = 170298, + [SMALL_STATE(3855)] = 170313, + [SMALL_STATE(3856)] = 170328, + [SMALL_STATE(3857)] = 170345, + [SMALL_STATE(3858)] = 170362, + [SMALL_STATE(3859)] = 170375, + [SMALL_STATE(3860)] = 170392, + [SMALL_STATE(3861)] = 170408, + [SMALL_STATE(3862)] = 170418, + [SMALL_STATE(3863)] = 170428, + [SMALL_STATE(3864)] = 170438, + [SMALL_STATE(3865)] = 170454, + [SMALL_STATE(3866)] = 170468, + [SMALL_STATE(3867)] = 170480, + [SMALL_STATE(3868)] = 170490, + [SMALL_STATE(3869)] = 170500, + [SMALL_STATE(3870)] = 170510, + [SMALL_STATE(3871)] = 170520, + [SMALL_STATE(3872)] = 170534, + [SMALL_STATE(3873)] = 170550, + [SMALL_STATE(3874)] = 170562, + [SMALL_STATE(3875)] = 170572, + [SMALL_STATE(3876)] = 170582, + [SMALL_STATE(3877)] = 170592, + [SMALL_STATE(3878)] = 170602, + [SMALL_STATE(3879)] = 170612, + [SMALL_STATE(3880)] = 170622, + [SMALL_STATE(3881)] = 170638, + [SMALL_STATE(3882)] = 170648, + [SMALL_STATE(3883)] = 170662, + [SMALL_STATE(3884)] = 170672, + [SMALL_STATE(3885)] = 170686, + [SMALL_STATE(3886)] = 170696, + [SMALL_STATE(3887)] = 170712, + [SMALL_STATE(3888)] = 170722, + [SMALL_STATE(3889)] = 170732, + [SMALL_STATE(3890)] = 170748, + [SMALL_STATE(3891)] = 170762, + [SMALL_STATE(3892)] = 170772, + [SMALL_STATE(3893)] = 170782, + [SMALL_STATE(3894)] = 170792, + [SMALL_STATE(3895)] = 170808, + [SMALL_STATE(3896)] = 170824, + [SMALL_STATE(3897)] = 170834, + [SMALL_STATE(3898)] = 170844, + [SMALL_STATE(3899)] = 170860, + [SMALL_STATE(3900)] = 170870, + [SMALL_STATE(3901)] = 170884, + [SMALL_STATE(3902)] = 170894, + [SMALL_STATE(3903)] = 170904, + [SMALL_STATE(3904)] = 170914, + [SMALL_STATE(3905)] = 170924, + [SMALL_STATE(3906)] = 170940, + [SMALL_STATE(3907)] = 170950, + [SMALL_STATE(3908)] = 170960, + [SMALL_STATE(3909)] = 170970, + [SMALL_STATE(3910)] = 170980, + [SMALL_STATE(3911)] = 170996, + [SMALL_STATE(3912)] = 171010, + [SMALL_STATE(3913)] = 171020, + [SMALL_STATE(3914)] = 171036, + [SMALL_STATE(3915)] = 171046, + [SMALL_STATE(3916)] = 171060, + [SMALL_STATE(3917)] = 171074, + [SMALL_STATE(3918)] = 171084, + [SMALL_STATE(3919)] = 171094, + [SMALL_STATE(3920)] = 171104, + [SMALL_STATE(3921)] = 171114, + [SMALL_STATE(3922)] = 171124, + [SMALL_STATE(3923)] = 171134, + [SMALL_STATE(3924)] = 171144, + [SMALL_STATE(3925)] = 171158, + [SMALL_STATE(3926)] = 171168, + [SMALL_STATE(3927)] = 171178, + [SMALL_STATE(3928)] = 171191, + [SMALL_STATE(3929)] = 171204, + [SMALL_STATE(3930)] = 171215, + [SMALL_STATE(3931)] = 171228, + [SMALL_STATE(3932)] = 171241, + [SMALL_STATE(3933)] = 171254, + [SMALL_STATE(3934)] = 171267, + [SMALL_STATE(3935)] = 171278, + [SMALL_STATE(3936)] = 171291, + [SMALL_STATE(3937)] = 171304, + [SMALL_STATE(3938)] = 171317, + [SMALL_STATE(3939)] = 171328, + [SMALL_STATE(3940)] = 171341, + [SMALL_STATE(3941)] = 171354, + [SMALL_STATE(3942)] = 171367, + [SMALL_STATE(3943)] = 171380, + [SMALL_STATE(3944)] = 171393, + [SMALL_STATE(3945)] = 171402, + [SMALL_STATE(3946)] = 171415, + [SMALL_STATE(3947)] = 171426, + [SMALL_STATE(3948)] = 171439, + [SMALL_STATE(3949)] = 171450, + [SMALL_STATE(3950)] = 171463, + [SMALL_STATE(3951)] = 171474, + [SMALL_STATE(3952)] = 171487, + [SMALL_STATE(3953)] = 171498, + [SMALL_STATE(3954)] = 171511, + [SMALL_STATE(3955)] = 171524, + [SMALL_STATE(3956)] = 171537, + [SMALL_STATE(3957)] = 171550, + [SMALL_STATE(3958)] = 171563, + [SMALL_STATE(3959)] = 171576, + [SMALL_STATE(3960)] = 171589, + [SMALL_STATE(3961)] = 171598, + [SMALL_STATE(3962)] = 171611, + [SMALL_STATE(3963)] = 171624, + [SMALL_STATE(3964)] = 171635, + [SMALL_STATE(3965)] = 171648, + [SMALL_STATE(3966)] = 171661, + [SMALL_STATE(3967)] = 171674, + [SMALL_STATE(3968)] = 171687, + [SMALL_STATE(3969)] = 171700, + [SMALL_STATE(3970)] = 171713, + [SMALL_STATE(3971)] = 171726, + [SMALL_STATE(3972)] = 171739, + [SMALL_STATE(3973)] = 171752, + [SMALL_STATE(3974)] = 171765, + [SMALL_STATE(3975)] = 171778, + [SMALL_STATE(3976)] = 171789, + [SMALL_STATE(3977)] = 171802, + [SMALL_STATE(3978)] = 171815, + [SMALL_STATE(3979)] = 171826, + [SMALL_STATE(3980)] = 171839, + [SMALL_STATE(3981)] = 171852, + [SMALL_STATE(3982)] = 171865, + [SMALL_STATE(3983)] = 171878, + [SMALL_STATE(3984)] = 171891, + [SMALL_STATE(3985)] = 171902, + [SMALL_STATE(3986)] = 171915, + [SMALL_STATE(3987)] = 171928, + [SMALL_STATE(3988)] = 171941, + [SMALL_STATE(3989)] = 171954, + [SMALL_STATE(3990)] = 171965, + [SMALL_STATE(3991)] = 171978, + [SMALL_STATE(3992)] = 171991, + [SMALL_STATE(3993)] = 172002, + [SMALL_STATE(3994)] = 172015, + [SMALL_STATE(3995)] = 172026, + [SMALL_STATE(3996)] = 172037, + [SMALL_STATE(3997)] = 172050, + [SMALL_STATE(3998)] = 172063, + [SMALL_STATE(3999)] = 172076, + [SMALL_STATE(4000)] = 172087, + [SMALL_STATE(4001)] = 172098, + [SMALL_STATE(4002)] = 172111, + [SMALL_STATE(4003)] = 172122, + [SMALL_STATE(4004)] = 172135, + [SMALL_STATE(4005)] = 172146, + [SMALL_STATE(4006)] = 172159, + [SMALL_STATE(4007)] = 172172, + [SMALL_STATE(4008)] = 172185, + [SMALL_STATE(4009)] = 172196, + [SMALL_STATE(4010)] = 172209, + [SMALL_STATE(4011)] = 172222, + [SMALL_STATE(4012)] = 172233, + [SMALL_STATE(4013)] = 172246, + [SMALL_STATE(4014)] = 172259, + [SMALL_STATE(4015)] = 172272, + [SMALL_STATE(4016)] = 172283, + [SMALL_STATE(4017)] = 172296, + [SMALL_STATE(4018)] = 172309, + [SMALL_STATE(4019)] = 172322, + [SMALL_STATE(4020)] = 172333, + [SMALL_STATE(4021)] = 172346, + [SMALL_STATE(4022)] = 172357, + [SMALL_STATE(4023)] = 172370, + [SMALL_STATE(4024)] = 172381, + [SMALL_STATE(4025)] = 172392, + [SMALL_STATE(4026)] = 172405, + [SMALL_STATE(4027)] = 172418, + [SMALL_STATE(4028)] = 172431, + [SMALL_STATE(4029)] = 172444, + [SMALL_STATE(4030)] = 172457, + [SMALL_STATE(4031)] = 172470, + [SMALL_STATE(4032)] = 172483, + [SMALL_STATE(4033)] = 172496, + [SMALL_STATE(4034)] = 172509, + [SMALL_STATE(4035)] = 172522, + [SMALL_STATE(4036)] = 172535, + [SMALL_STATE(4037)] = 172548, + [SMALL_STATE(4038)] = 172561, + [SMALL_STATE(4039)] = 172574, + [SMALL_STATE(4040)] = 172587, + [SMALL_STATE(4041)] = 172598, + [SMALL_STATE(4042)] = 172611, + [SMALL_STATE(4043)] = 172624, + [SMALL_STATE(4044)] = 172637, + [SMALL_STATE(4045)] = 172650, + [SMALL_STATE(4046)] = 172661, + [SMALL_STATE(4047)] = 172674, + [SMALL_STATE(4048)] = 172687, + [SMALL_STATE(4049)] = 172700, + [SMALL_STATE(4050)] = 172713, + [SMALL_STATE(4051)] = 172726, + [SMALL_STATE(4052)] = 172739, + [SMALL_STATE(4053)] = 172752, + [SMALL_STATE(4054)] = 172763, + [SMALL_STATE(4055)] = 172774, + [SMALL_STATE(4056)] = 172787, + [SMALL_STATE(4057)] = 172800, + [SMALL_STATE(4058)] = 172811, + [SMALL_STATE(4059)] = 172824, + [SMALL_STATE(4060)] = 172837, + [SMALL_STATE(4061)] = 172848, + [SMALL_STATE(4062)] = 172861, + [SMALL_STATE(4063)] = 172874, + [SMALL_STATE(4064)] = 172885, + [SMALL_STATE(4065)] = 172898, + [SMALL_STATE(4066)] = 172911, + [SMALL_STATE(4067)] = 172921, + [SMALL_STATE(4068)] = 172931, + [SMALL_STATE(4069)] = 172939, + [SMALL_STATE(4070)] = 172947, + [SMALL_STATE(4071)] = 172955, + [SMALL_STATE(4072)] = 172963, + [SMALL_STATE(4073)] = 172973, + [SMALL_STATE(4074)] = 172983, + [SMALL_STATE(4075)] = 172993, + [SMALL_STATE(4076)] = 173003, + [SMALL_STATE(4077)] = 173013, + [SMALL_STATE(4078)] = 173023, + [SMALL_STATE(4079)] = 173031, + [SMALL_STATE(4080)] = 173039, + [SMALL_STATE(4081)] = 173049, + [SMALL_STATE(4082)] = 173059, + [SMALL_STATE(4083)] = 173067, + [SMALL_STATE(4084)] = 173075, + [SMALL_STATE(4085)] = 173085, + [SMALL_STATE(4086)] = 173093, + [SMALL_STATE(4087)] = 173103, + [SMALL_STATE(4088)] = 173113, + [SMALL_STATE(4089)] = 173121, + [SMALL_STATE(4090)] = 173129, + [SMALL_STATE(4091)] = 173139, + [SMALL_STATE(4092)] = 173147, + [SMALL_STATE(4093)] = 173155, + [SMALL_STATE(4094)] = 173165, + [SMALL_STATE(4095)] = 173175, + [SMALL_STATE(4096)] = 173185, + [SMALL_STATE(4097)] = 173195, + [SMALL_STATE(4098)] = 173203, + [SMALL_STATE(4099)] = 173213, + [SMALL_STATE(4100)] = 173223, + [SMALL_STATE(4101)] = 173231, + [SMALL_STATE(4102)] = 173241, + [SMALL_STATE(4103)] = 173251, + [SMALL_STATE(4104)] = 173259, + [SMALL_STATE(4105)] = 173267, + [SMALL_STATE(4106)] = 173275, + [SMALL_STATE(4107)] = 173285, + [SMALL_STATE(4108)] = 173295, + [SMALL_STATE(4109)] = 173305, + [SMALL_STATE(4110)] = 173313, + [SMALL_STATE(4111)] = 173323, + [SMALL_STATE(4112)] = 173333, + [SMALL_STATE(4113)] = 173341, + [SMALL_STATE(4114)] = 173349, + [SMALL_STATE(4115)] = 173359, + [SMALL_STATE(4116)] = 173369, + [SMALL_STATE(4117)] = 173377, + [SMALL_STATE(4118)] = 173387, + [SMALL_STATE(4119)] = 173397, + [SMALL_STATE(4120)] = 173407, + [SMALL_STATE(4121)] = 173417, + [SMALL_STATE(4122)] = 173427, + [SMALL_STATE(4123)] = 173437, + [SMALL_STATE(4124)] = 173447, + [SMALL_STATE(4125)] = 173457, + [SMALL_STATE(4126)] = 173465, + [SMALL_STATE(4127)] = 173475, + [SMALL_STATE(4128)] = 173485, + [SMALL_STATE(4129)] = 173493, + [SMALL_STATE(4130)] = 173503, + [SMALL_STATE(4131)] = 173511, + [SMALL_STATE(4132)] = 173519, + [SMALL_STATE(4133)] = 173529, + [SMALL_STATE(4134)] = 173539, + [SMALL_STATE(4135)] = 173547, + [SMALL_STATE(4136)] = 173557, + [SMALL_STATE(4137)] = 173565, + [SMALL_STATE(4138)] = 173575, + [SMALL_STATE(4139)] = 173585, + [SMALL_STATE(4140)] = 173595, + [SMALL_STATE(4141)] = 173603, + [SMALL_STATE(4142)] = 173613, + [SMALL_STATE(4143)] = 173623, + [SMALL_STATE(4144)] = 173633, + [SMALL_STATE(4145)] = 173643, + [SMALL_STATE(4146)] = 173653, + [SMALL_STATE(4147)] = 173663, + [SMALL_STATE(4148)] = 173671, + [SMALL_STATE(4149)] = 173681, + [SMALL_STATE(4150)] = 173691, + [SMALL_STATE(4151)] = 173701, + [SMALL_STATE(4152)] = 173711, + [SMALL_STATE(4153)] = 173721, + [SMALL_STATE(4154)] = 173729, + [SMALL_STATE(4155)] = 173739, + [SMALL_STATE(4156)] = 173749, + [SMALL_STATE(4157)] = 173759, + [SMALL_STATE(4158)] = 173767, + [SMALL_STATE(4159)] = 173775, + [SMALL_STATE(4160)] = 173785, + [SMALL_STATE(4161)] = 173795, + [SMALL_STATE(4162)] = 173803, + [SMALL_STATE(4163)] = 173813, + [SMALL_STATE(4164)] = 173821, + [SMALL_STATE(4165)] = 173829, + [SMALL_STATE(4166)] = 173837, + [SMALL_STATE(4167)] = 173847, + [SMALL_STATE(4168)] = 173855, + [SMALL_STATE(4169)] = 173863, + [SMALL_STATE(4170)] = 173873, + [SMALL_STATE(4171)] = 173880, + [SMALL_STATE(4172)] = 173887, + [SMALL_STATE(4173)] = 173894, + [SMALL_STATE(4174)] = 173901, + [SMALL_STATE(4175)] = 173908, + [SMALL_STATE(4176)] = 173915, + [SMALL_STATE(4177)] = 173922, + [SMALL_STATE(4178)] = 173929, + [SMALL_STATE(4179)] = 173936, + [SMALL_STATE(4180)] = 173943, + [SMALL_STATE(4181)] = 173950, + [SMALL_STATE(4182)] = 173957, + [SMALL_STATE(4183)] = 173964, + [SMALL_STATE(4184)] = 173971, + [SMALL_STATE(4185)] = 173978, + [SMALL_STATE(4186)] = 173985, + [SMALL_STATE(4187)] = 173992, + [SMALL_STATE(4188)] = 173999, + [SMALL_STATE(4189)] = 174006, + [SMALL_STATE(4190)] = 174013, + [SMALL_STATE(4191)] = 174020, + [SMALL_STATE(4192)] = 174027, + [SMALL_STATE(4193)] = 174034, + [SMALL_STATE(4194)] = 174041, + [SMALL_STATE(4195)] = 174048, + [SMALL_STATE(4196)] = 174055, + [SMALL_STATE(4197)] = 174062, + [SMALL_STATE(4198)] = 174069, + [SMALL_STATE(4199)] = 174076, + [SMALL_STATE(4200)] = 174083, + [SMALL_STATE(4201)] = 174090, + [SMALL_STATE(4202)] = 174097, + [SMALL_STATE(4203)] = 174104, + [SMALL_STATE(4204)] = 174111, + [SMALL_STATE(4205)] = 174118, + [SMALL_STATE(4206)] = 174125, + [SMALL_STATE(4207)] = 174132, + [SMALL_STATE(4208)] = 174139, + [SMALL_STATE(4209)] = 174146, + [SMALL_STATE(4210)] = 174153, + [SMALL_STATE(4211)] = 174160, + [SMALL_STATE(4212)] = 174167, + [SMALL_STATE(4213)] = 174174, + [SMALL_STATE(4214)] = 174181, + [SMALL_STATE(4215)] = 174188, + [SMALL_STATE(4216)] = 174195, + [SMALL_STATE(4217)] = 174202, + [SMALL_STATE(4218)] = 174209, + [SMALL_STATE(4219)] = 174216, + [SMALL_STATE(4220)] = 174223, + [SMALL_STATE(4221)] = 174230, + [SMALL_STATE(4222)] = 174237, + [SMALL_STATE(4223)] = 174244, + [SMALL_STATE(4224)] = 174251, + [SMALL_STATE(4225)] = 174258, + [SMALL_STATE(4226)] = 174265, + [SMALL_STATE(4227)] = 174272, + [SMALL_STATE(4228)] = 174279, + [SMALL_STATE(4229)] = 174286, + [SMALL_STATE(4230)] = 174293, + [SMALL_STATE(4231)] = 174300, + [SMALL_STATE(4232)] = 174307, + [SMALL_STATE(4233)] = 174314, + [SMALL_STATE(4234)] = 174321, + [SMALL_STATE(4235)] = 174328, + [SMALL_STATE(4236)] = 174335, + [SMALL_STATE(4237)] = 174342, + [SMALL_STATE(4238)] = 174349, + [SMALL_STATE(4239)] = 174356, + [SMALL_STATE(4240)] = 174363, + [SMALL_STATE(4241)] = 174370, + [SMALL_STATE(4242)] = 174377, + [SMALL_STATE(4243)] = 174384, + [SMALL_STATE(4244)] = 174391, + [SMALL_STATE(4245)] = 174398, + [SMALL_STATE(4246)] = 174405, + [SMALL_STATE(4247)] = 174412, + [SMALL_STATE(4248)] = 174419, + [SMALL_STATE(4249)] = 174426, + [SMALL_STATE(4250)] = 174433, + [SMALL_STATE(4251)] = 174440, + [SMALL_STATE(4252)] = 174447, + [SMALL_STATE(4253)] = 174454, + [SMALL_STATE(4254)] = 174461, + [SMALL_STATE(4255)] = 174468, + [SMALL_STATE(4256)] = 174475, + [SMALL_STATE(4257)] = 174482, + [SMALL_STATE(4258)] = 174489, + [SMALL_STATE(4259)] = 174496, + [SMALL_STATE(4260)] = 174503, + [SMALL_STATE(4261)] = 174510, + [SMALL_STATE(4262)] = 174517, + [SMALL_STATE(4263)] = 174524, + [SMALL_STATE(4264)] = 174531, + [SMALL_STATE(4265)] = 174538, + [SMALL_STATE(4266)] = 174545, + [SMALL_STATE(4267)] = 174552, + [SMALL_STATE(4268)] = 174559, + [SMALL_STATE(4269)] = 174566, + [SMALL_STATE(4270)] = 174573, + [SMALL_STATE(4271)] = 174580, + [SMALL_STATE(4272)] = 174587, + [SMALL_STATE(4273)] = 174594, + [SMALL_STATE(4274)] = 174601, + [SMALL_STATE(4275)] = 174608, + [SMALL_STATE(4276)] = 174615, + [SMALL_STATE(4277)] = 174622, + [SMALL_STATE(4278)] = 174629, + [SMALL_STATE(4279)] = 174636, + [SMALL_STATE(4280)] = 174643, + [SMALL_STATE(4281)] = 174650, + [SMALL_STATE(4282)] = 174657, + [SMALL_STATE(4283)] = 174664, + [SMALL_STATE(4284)] = 174671, + [SMALL_STATE(4285)] = 174678, + [SMALL_STATE(4286)] = 174685, + [SMALL_STATE(4287)] = 174692, + [SMALL_STATE(4288)] = 174699, + [SMALL_STATE(4289)] = 174706, + [SMALL_STATE(4290)] = 174713, + [SMALL_STATE(4291)] = 174720, + [SMALL_STATE(4292)] = 174727, + [SMALL_STATE(4293)] = 174734, + [SMALL_STATE(4294)] = 174741, + [SMALL_STATE(4295)] = 174748, + [SMALL_STATE(4296)] = 174755, + [SMALL_STATE(4297)] = 174762, + [SMALL_STATE(4298)] = 174769, + [SMALL_STATE(4299)] = 174776, + [SMALL_STATE(4300)] = 174783, + [SMALL_STATE(4301)] = 174790, + [SMALL_STATE(4302)] = 174797, + [SMALL_STATE(4303)] = 174804, + [SMALL_STATE(4304)] = 174811, + [SMALL_STATE(4305)] = 174818, + [SMALL_STATE(4306)] = 174825, + [SMALL_STATE(4307)] = 174832, + [SMALL_STATE(4308)] = 174839, + [SMALL_STATE(4309)] = 174846, + [SMALL_STATE(4310)] = 174853, + [SMALL_STATE(4311)] = 174860, + [SMALL_STATE(4312)] = 174867, + [SMALL_STATE(4313)] = 174874, + [SMALL_STATE(4314)] = 174881, + [SMALL_STATE(4315)] = 174888, + [SMALL_STATE(4316)] = 174895, + [SMALL_STATE(4317)] = 174902, + [SMALL_STATE(4318)] = 174909, + [SMALL_STATE(4319)] = 174916, + [SMALL_STATE(4320)] = 174923, + [SMALL_STATE(4321)] = 174930, + [SMALL_STATE(4322)] = 174937, + [SMALL_STATE(4323)] = 174944, + [SMALL_STATE(4324)] = 174951, + [SMALL_STATE(4325)] = 174958, + [SMALL_STATE(4326)] = 174965, + [SMALL_STATE(4327)] = 174972, + [SMALL_STATE(4328)] = 174979, + [SMALL_STATE(4329)] = 174986, + [SMALL_STATE(4330)] = 174993, + [SMALL_STATE(4331)] = 175000, + [SMALL_STATE(4332)] = 175007, + [SMALL_STATE(4333)] = 175014, + [SMALL_STATE(4334)] = 175021, + [SMALL_STATE(4335)] = 175028, + [SMALL_STATE(4336)] = 175035, + [SMALL_STATE(4337)] = 175042, + [SMALL_STATE(4338)] = 175049, + [SMALL_STATE(4339)] = 175056, + [SMALL_STATE(4340)] = 175063, + [SMALL_STATE(4341)] = 175070, + [SMALL_STATE(4342)] = 175077, + [SMALL_STATE(4343)] = 175084, + [SMALL_STATE(4344)] = 175091, + [SMALL_STATE(4345)] = 175098, + [SMALL_STATE(4346)] = 175105, + [SMALL_STATE(4347)] = 175112, + [SMALL_STATE(4348)] = 175119, + [SMALL_STATE(4349)] = 175126, + [SMALL_STATE(4350)] = 175133, + [SMALL_STATE(4351)] = 175140, + [SMALL_STATE(4352)] = 175147, + [SMALL_STATE(4353)] = 175154, + [SMALL_STATE(4354)] = 175161, + [SMALL_STATE(4355)] = 175168, + [SMALL_STATE(4356)] = 175175, + [SMALL_STATE(4357)] = 175182, + [SMALL_STATE(4358)] = 175189, + [SMALL_STATE(4359)] = 175196, + [SMALL_STATE(4360)] = 175203, + [SMALL_STATE(4361)] = 175210, + [SMALL_STATE(4362)] = 175217, + [SMALL_STATE(4363)] = 175224, + [SMALL_STATE(4364)] = 175231, + [SMALL_STATE(4365)] = 175238, + [SMALL_STATE(4366)] = 175245, + [SMALL_STATE(4367)] = 175252, + [SMALL_STATE(4368)] = 175259, + [SMALL_STATE(4369)] = 175266, + [SMALL_STATE(4370)] = 175273, + [SMALL_STATE(4371)] = 175280, + [SMALL_STATE(4372)] = 175287, + [SMALL_STATE(4373)] = 175294, + [SMALL_STATE(4374)] = 175301, + [SMALL_STATE(4375)] = 175308, + [SMALL_STATE(4376)] = 175315, + [SMALL_STATE(4377)] = 175322, + [SMALL_STATE(4378)] = 175329, + [SMALL_STATE(4379)] = 175336, + [SMALL_STATE(4380)] = 175343, + [SMALL_STATE(4381)] = 175350, + [SMALL_STATE(4382)] = 175357, + [SMALL_STATE(4383)] = 175364, + [SMALL_STATE(4384)] = 175371, + [SMALL_STATE(4385)] = 175378, + [SMALL_STATE(4386)] = 175385, + [SMALL_STATE(4387)] = 175392, + [SMALL_STATE(4388)] = 175399, + [SMALL_STATE(4389)] = 175406, + [SMALL_STATE(4390)] = 175413, + [SMALL_STATE(4391)] = 175420, + [SMALL_STATE(4392)] = 175427, + [SMALL_STATE(4393)] = 175434, + [SMALL_STATE(4394)] = 175441, + [SMALL_STATE(4395)] = 175448, + [SMALL_STATE(4396)] = 175455, + [SMALL_STATE(4397)] = 175462, + [SMALL_STATE(4398)] = 175469, + [SMALL_STATE(4399)] = 175476, + [SMALL_STATE(4400)] = 175483, + [SMALL_STATE(4401)] = 175490, + [SMALL_STATE(4402)] = 175497, + [SMALL_STATE(4403)] = 175504, + [SMALL_STATE(4404)] = 175511, + [SMALL_STATE(4405)] = 175518, + [SMALL_STATE(4406)] = 175525, + [SMALL_STATE(4407)] = 175532, + [SMALL_STATE(4408)] = 175539, + [SMALL_STATE(4409)] = 175546, + [SMALL_STATE(4410)] = 175553, + [SMALL_STATE(4411)] = 175560, + [SMALL_STATE(4412)] = 175567, + [SMALL_STATE(4413)] = 175574, + [SMALL_STATE(4414)] = 175581, + [SMALL_STATE(4415)] = 175588, + [SMALL_STATE(4416)] = 175595, + [SMALL_STATE(4417)] = 175602, + [SMALL_STATE(4418)] = 175609, + [SMALL_STATE(4419)] = 175616, + [SMALL_STATE(4420)] = 175623, + [SMALL_STATE(4421)] = 175630, + [SMALL_STATE(4422)] = 175637, + [SMALL_STATE(4423)] = 175644, + [SMALL_STATE(4424)] = 175651, + [SMALL_STATE(4425)] = 175658, + [SMALL_STATE(4426)] = 175665, + [SMALL_STATE(4427)] = 175672, + [SMALL_STATE(4428)] = 175679, + [SMALL_STATE(4429)] = 175686, + [SMALL_STATE(4430)] = 175693, + [SMALL_STATE(4431)] = 175700, + [SMALL_STATE(4432)] = 175707, + [SMALL_STATE(4433)] = 175714, + [SMALL_STATE(4434)] = 175721, + [SMALL_STATE(4435)] = 175728, + [SMALL_STATE(4436)] = 175735, + [SMALL_STATE(4437)] = 175742, + [SMALL_STATE(4438)] = 175749, + [SMALL_STATE(4439)] = 175756, + [SMALL_STATE(4440)] = 175763, + [SMALL_STATE(4441)] = 175770, + [SMALL_STATE(4442)] = 175777, + [SMALL_STATE(4443)] = 175784, + [SMALL_STATE(4444)] = 175791, + [SMALL_STATE(4445)] = 175798, + [SMALL_STATE(4446)] = 175805, + [SMALL_STATE(4447)] = 175812, + [SMALL_STATE(4448)] = 175819, + [SMALL_STATE(4449)] = 175826, + [SMALL_STATE(4450)] = 175833, + [SMALL_STATE(4451)] = 175840, + [SMALL_STATE(4452)] = 175847, + [SMALL_STATE(4453)] = 175854, + [SMALL_STATE(4454)] = 175861, + [SMALL_STATE(4455)] = 175868, + [SMALL_STATE(4456)] = 175875, + [SMALL_STATE(4457)] = 175882, + [SMALL_STATE(4458)] = 175889, + [SMALL_STATE(4459)] = 175896, + [SMALL_STATE(4460)] = 175903, + [SMALL_STATE(4461)] = 175910, + [SMALL_STATE(4462)] = 175917, + [SMALL_STATE(4463)] = 175924, + [SMALL_STATE(4464)] = 175931, + [SMALL_STATE(4465)] = 175938, + [SMALL_STATE(4466)] = 175945, + [SMALL_STATE(4467)] = 175952, + [SMALL_STATE(4468)] = 175959, + [SMALL_STATE(4469)] = 175966, + [SMALL_STATE(4470)] = 175973, + [SMALL_STATE(4471)] = 175980, + [SMALL_STATE(4472)] = 175987, + [SMALL_STATE(4473)] = 175994, + [SMALL_STATE(4474)] = 176001, + [SMALL_STATE(4475)] = 176008, + [SMALL_STATE(4476)] = 176015, + [SMALL_STATE(4477)] = 176022, + [SMALL_STATE(4478)] = 176029, + [SMALL_STATE(4479)] = 176036, + [SMALL_STATE(4480)] = 176043, + [SMALL_STATE(4481)] = 176050, + [SMALL_STATE(4482)] = 176057, + [SMALL_STATE(4483)] = 176064, + [SMALL_STATE(4484)] = 176071, + [SMALL_STATE(4485)] = 176078, + [SMALL_STATE(4486)] = 176085, + [SMALL_STATE(4487)] = 176092, + [SMALL_STATE(4488)] = 176099, + [SMALL_STATE(4489)] = 176106, + [SMALL_STATE(4490)] = 176113, + [SMALL_STATE(4491)] = 176120, + [SMALL_STATE(4492)] = 176127, + [SMALL_STATE(4493)] = 176134, + [SMALL_STATE(4494)] = 176141, + [SMALL_STATE(4495)] = 176148, + [SMALL_STATE(4496)] = 176155, + [SMALL_STATE(4497)] = 176162, + [SMALL_STATE(4498)] = 176169, + [SMALL_STATE(4499)] = 176176, + [SMALL_STATE(4500)] = 176183, + [SMALL_STATE(4501)] = 176190, + [SMALL_STATE(4502)] = 176197, + [SMALL_STATE(4503)] = 176204, + [SMALL_STATE(4504)] = 176211, + [SMALL_STATE(4505)] = 176218, + [SMALL_STATE(4506)] = 176225, + [SMALL_STATE(4507)] = 176232, + [SMALL_STATE(4508)] = 176239, + [SMALL_STATE(4509)] = 176246, + [SMALL_STATE(4510)] = 176253, + [SMALL_STATE(4511)] = 176260, + [SMALL_STATE(4512)] = 176267, + [SMALL_STATE(4513)] = 176274, + [SMALL_STATE(4514)] = 176281, + [SMALL_STATE(4515)] = 176288, + [SMALL_STATE(4516)] = 176295, + [SMALL_STATE(4517)] = 176302, + [SMALL_STATE(4518)] = 176309, + [SMALL_STATE(4519)] = 176316, + [SMALL_STATE(4520)] = 176323, + [SMALL_STATE(4521)] = 176330, + [SMALL_STATE(4522)] = 176337, + [SMALL_STATE(4523)] = 176344, + [SMALL_STATE(4524)] = 176351, + [SMALL_STATE(4525)] = 176358, + [SMALL_STATE(4526)] = 176365, + [SMALL_STATE(4527)] = 176372, + [SMALL_STATE(4528)] = 176379, + [SMALL_STATE(4529)] = 176386, + [SMALL_STATE(4530)] = 176393, + [SMALL_STATE(4531)] = 176400, + [SMALL_STATE(4532)] = 176407, + [SMALL_STATE(4533)] = 176414, + [SMALL_STATE(4534)] = 176421, + [SMALL_STATE(4535)] = 176428, + [SMALL_STATE(4536)] = 176435, + [SMALL_STATE(4537)] = 176442, + [SMALL_STATE(4538)] = 176449, + [SMALL_STATE(4539)] = 176456, + [SMALL_STATE(4540)] = 176463, + [SMALL_STATE(4541)] = 176470, + [SMALL_STATE(4542)] = 176477, + [SMALL_STATE(4543)] = 176484, + [SMALL_STATE(4544)] = 176491, + [SMALL_STATE(4545)] = 176498, + [SMALL_STATE(4546)] = 176505, + [SMALL_STATE(4547)] = 176512, + [SMALL_STATE(4548)] = 176519, + [SMALL_STATE(4549)] = 176526, + [SMALL_STATE(4550)] = 176533, + [SMALL_STATE(4551)] = 176540, + [SMALL_STATE(4552)] = 176547, + [SMALL_STATE(4553)] = 176554, + [SMALL_STATE(4554)] = 176561, + [SMALL_STATE(4555)] = 176568, + [SMALL_STATE(4556)] = 176575, + [SMALL_STATE(4557)] = 176582, + [SMALL_STATE(4558)] = 176589, + [SMALL_STATE(4559)] = 176596, + [SMALL_STATE(4560)] = 176603, + [SMALL_STATE(4561)] = 176610, + [SMALL_STATE(4562)] = 176617, + [SMALL_STATE(4563)] = 176624, + [SMALL_STATE(4564)] = 176631, + [SMALL_STATE(4565)] = 176638, + [SMALL_STATE(4566)] = 176645, + [SMALL_STATE(4567)] = 176652, + [SMALL_STATE(4568)] = 176659, + [SMALL_STATE(4569)] = 176666, + [SMALL_STATE(4570)] = 176673, + [SMALL_STATE(4571)] = 176680, + [SMALL_STATE(4572)] = 176687, + [SMALL_STATE(4573)] = 176694, + [SMALL_STATE(4574)] = 176701, + [SMALL_STATE(4575)] = 176708, + [SMALL_STATE(4576)] = 176715, + [SMALL_STATE(4577)] = 176722, + [SMALL_STATE(4578)] = 176729, + [SMALL_STATE(4579)] = 176736, + [SMALL_STATE(4580)] = 176743, + [SMALL_STATE(4581)] = 176750, + [SMALL_STATE(4582)] = 176757, + [SMALL_STATE(4583)] = 176764, + [SMALL_STATE(4584)] = 176771, + [SMALL_STATE(4585)] = 176778, + [SMALL_STATE(4586)] = 176785, + [SMALL_STATE(4587)] = 176792, + [SMALL_STATE(4588)] = 176799, + [SMALL_STATE(4589)] = 176806, + [SMALL_STATE(4590)] = 176813, + [SMALL_STATE(4591)] = 176820, + [SMALL_STATE(4592)] = 176827, + [SMALL_STATE(4593)] = 176834, + [SMALL_STATE(4594)] = 176841, + [SMALL_STATE(4595)] = 176848, + [SMALL_STATE(4596)] = 176855, + [SMALL_STATE(4597)] = 176862, + [SMALL_STATE(4598)] = 176869, + [SMALL_STATE(4599)] = 176876, + [SMALL_STATE(4600)] = 176883, + [SMALL_STATE(4601)] = 176890, + [SMALL_STATE(4602)] = 176897, + [SMALL_STATE(4603)] = 176904, + [SMALL_STATE(4604)] = 176911, + [SMALL_STATE(4605)] = 176918, + [SMALL_STATE(4606)] = 176925, + [SMALL_STATE(4607)] = 176932, + [SMALL_STATE(4608)] = 176939, + [SMALL_STATE(4609)] = 176946, + [SMALL_STATE(4610)] = 176953, + [SMALL_STATE(4611)] = 176960, + [SMALL_STATE(4612)] = 176967, + [SMALL_STATE(4613)] = 176974, + [SMALL_STATE(4614)] = 176981, + [SMALL_STATE(4615)] = 176988, + [SMALL_STATE(4616)] = 176995, + [SMALL_STATE(4617)] = 177002, + [SMALL_STATE(4618)] = 177009, + [SMALL_STATE(4619)] = 177016, + [SMALL_STATE(4620)] = 177023, + [SMALL_STATE(4621)] = 177030, + [SMALL_STATE(4622)] = 177037, + [SMALL_STATE(4623)] = 177044, + [SMALL_STATE(4624)] = 177051, + [SMALL_STATE(4625)] = 177058, + [SMALL_STATE(4626)] = 177065, + [SMALL_STATE(4627)] = 177072, + [SMALL_STATE(4628)] = 177079, + [SMALL_STATE(4629)] = 177086, + [SMALL_STATE(4630)] = 177093, + [SMALL_STATE(4631)] = 177100, + [SMALL_STATE(4632)] = 177107, + [SMALL_STATE(4633)] = 177114, + [SMALL_STATE(4634)] = 177121, + [SMALL_STATE(4635)] = 177128, + [SMALL_STATE(4636)] = 177135, + [SMALL_STATE(4637)] = 177142, + [SMALL_STATE(4638)] = 177149, + [SMALL_STATE(4639)] = 177156, + [SMALL_STATE(4640)] = 177163, + [SMALL_STATE(4641)] = 177170, + [SMALL_STATE(4642)] = 177177, + [SMALL_STATE(4643)] = 177184, + [SMALL_STATE(4644)] = 177191, + [SMALL_STATE(4645)] = 177198, + [SMALL_STATE(4646)] = 177205, + [SMALL_STATE(4647)] = 177212, + [SMALL_STATE(4648)] = 177219, + [SMALL_STATE(4649)] = 177226, + [SMALL_STATE(4650)] = 177233, + [SMALL_STATE(4651)] = 177240, + [SMALL_STATE(4652)] = 177247, + [SMALL_STATE(4653)] = 177254, + [SMALL_STATE(4654)] = 177261, + [SMALL_STATE(4655)] = 177268, + [SMALL_STATE(4656)] = 177275, + [SMALL_STATE(4657)] = 177282, + [SMALL_STATE(4658)] = 177289, + [SMALL_STATE(4659)] = 177296, + [SMALL_STATE(4660)] = 177303, + [SMALL_STATE(4661)] = 177310, + [SMALL_STATE(4662)] = 177317, + [SMALL_STATE(4663)] = 177324, + [SMALL_STATE(4664)] = 177331, + [SMALL_STATE(4665)] = 177338, + [SMALL_STATE(4666)] = 177345, + [SMALL_STATE(4667)] = 177352, + [SMALL_STATE(4668)] = 177359, + [SMALL_STATE(4669)] = 177366, + [SMALL_STATE(4670)] = 177373, + [SMALL_STATE(4671)] = 177380, + [SMALL_STATE(4672)] = 177387, + [SMALL_STATE(4673)] = 177394, + [SMALL_STATE(4674)] = 177401, + [SMALL_STATE(4675)] = 177408, + [SMALL_STATE(4676)] = 177415, + [SMALL_STATE(4677)] = 177422, + [SMALL_STATE(4678)] = 177429, + [SMALL_STATE(4679)] = 177436, + [SMALL_STATE(4680)] = 177443, + [SMALL_STATE(4681)] = 177450, + [SMALL_STATE(4682)] = 177457, + [SMALL_STATE(4683)] = 177464, + [SMALL_STATE(4684)] = 177471, + [SMALL_STATE(4685)] = 177478, + [SMALL_STATE(4686)] = 177485, + [SMALL_STATE(4687)] = 177492, + [SMALL_STATE(4688)] = 177499, + [SMALL_STATE(4689)] = 177506, + [SMALL_STATE(4690)] = 177513, + [SMALL_STATE(4691)] = 177520, + [SMALL_STATE(4692)] = 177527, + [SMALL_STATE(4693)] = 177534, + [SMALL_STATE(4694)] = 177541, + [SMALL_STATE(4695)] = 177548, + [SMALL_STATE(4696)] = 177555, + [SMALL_STATE(4697)] = 177562, + [SMALL_STATE(4698)] = 177569, + [SMALL_STATE(4699)] = 177576, + [SMALL_STATE(4700)] = 177583, + [SMALL_STATE(4701)] = 177590, + [SMALL_STATE(4702)] = 177597, + [SMALL_STATE(4703)] = 177604, + [SMALL_STATE(4704)] = 177611, + [SMALL_STATE(4705)] = 177618, + [SMALL_STATE(4706)] = 177625, + [SMALL_STATE(4707)] = 177632, + [SMALL_STATE(4708)] = 177639, + [SMALL_STATE(4709)] = 177646, + [SMALL_STATE(4710)] = 177653, + [SMALL_STATE(4711)] = 177660, + [SMALL_STATE(4712)] = 177667, + [SMALL_STATE(4713)] = 177674, + [SMALL_STATE(4714)] = 177681, + [SMALL_STATE(4715)] = 177688, + [SMALL_STATE(4716)] = 177695, + [SMALL_STATE(4717)] = 177702, + [SMALL_STATE(4718)] = 177709, + [SMALL_STATE(4719)] = 177716, + [SMALL_STATE(4720)] = 177723, + [SMALL_STATE(4721)] = 177730, + [SMALL_STATE(4722)] = 177737, + [SMALL_STATE(4723)] = 177744, + [SMALL_STATE(4724)] = 177751, + [SMALL_STATE(4725)] = 177758, + [SMALL_STATE(4726)] = 177765, + [SMALL_STATE(4727)] = 177772, + [SMALL_STATE(4728)] = 177779, + [SMALL_STATE(4729)] = 177786, + [SMALL_STATE(4730)] = 177793, + [SMALL_STATE(4731)] = 177800, + [SMALL_STATE(4732)] = 177807, + [SMALL_STATE(4733)] = 177814, + [SMALL_STATE(4734)] = 177821, + [SMALL_STATE(4735)] = 177828, + [SMALL_STATE(4736)] = 177835, + [SMALL_STATE(4737)] = 177842, + [SMALL_STATE(4738)] = 177849, + [SMALL_STATE(4739)] = 177856, + [SMALL_STATE(4740)] = 177863, + [SMALL_STATE(4741)] = 177870, + [SMALL_STATE(4742)] = 177877, + [SMALL_STATE(4743)] = 177884, + [SMALL_STATE(4744)] = 177891, + [SMALL_STATE(4745)] = 177898, + [SMALL_STATE(4746)] = 177905, + [SMALL_STATE(4747)] = 177912, + [SMALL_STATE(4748)] = 177919, + [SMALL_STATE(4749)] = 177926, + [SMALL_STATE(4750)] = 177933, + [SMALL_STATE(4751)] = 177940, + [SMALL_STATE(4752)] = 177947, + [SMALL_STATE(4753)] = 177954, + [SMALL_STATE(4754)] = 177961, + [SMALL_STATE(4755)] = 177968, + [SMALL_STATE(4756)] = 177975, + [SMALL_STATE(4757)] = 177982, + [SMALL_STATE(4758)] = 177989, + [SMALL_STATE(4759)] = 177996, + [SMALL_STATE(4760)] = 178003, + [SMALL_STATE(4761)] = 178010, + [SMALL_STATE(4762)] = 178017, + [SMALL_STATE(4763)] = 178024, + [SMALL_STATE(4764)] = 178031, + [SMALL_STATE(4765)] = 178038, + [SMALL_STATE(4766)] = 178045, + [SMALL_STATE(4767)] = 178052, + [SMALL_STATE(4768)] = 178059, + [SMALL_STATE(4769)] = 178066, + [SMALL_STATE(4770)] = 178073, + [SMALL_STATE(4771)] = 178080, + [SMALL_STATE(4772)] = 178087, + [SMALL_STATE(4773)] = 178094, + [SMALL_STATE(4774)] = 178101, + [SMALL_STATE(4775)] = 178108, + [SMALL_STATE(4776)] = 178115, + [SMALL_STATE(4777)] = 178122, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -218711,5524 +209134,5157 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 65), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 61), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 47), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 84), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 81), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 48), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 32), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 31), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(829), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4297), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4987), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3197), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(123), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(245), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(304), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2496), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4984), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(231), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(579), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(15), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1717), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(479), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(559), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3844), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(932), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3693), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(959), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1031), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4393), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3440), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(113), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(118), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(121), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(133), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(958), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3960), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4227), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4983), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(829), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4297), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4987), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3197), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(84), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(245), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(304), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2496), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4984), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(231), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(579), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(15), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1717), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(479), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(559), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3844), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(932), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3693), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(959), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1031), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4393), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3440), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(113), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(118), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(121), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(133), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(958), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3960), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4227), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4983), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(829), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4297), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4987), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3197), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(123), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(245), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(304), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2496), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4984), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(231), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(579), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1717), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(479), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(559), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3844), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(932), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3693), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(959), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1031), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4393), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3440), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(113), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(118), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(121), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(133), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(958), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3960), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4227), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4983), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 39), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 39), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 21), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 21), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(397), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(409), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2600), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(433), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(730), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3887), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(724), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3667), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(789), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4365), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3372), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(132), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(439), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(727), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4184), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5030), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 25), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 25), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(772), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3201), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3846), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(844), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3635), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1001), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4397), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3331), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(72), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(71), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(69), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(770), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4213), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5037), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(673), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3223), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2402), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3813), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(679), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3668), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(713), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4350), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3275), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(138), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(137), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(135), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(163), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(675), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(974), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5025), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 12), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 12), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 11), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 11), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(999), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3246), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3761), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(893), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3640), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1084), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4314), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3305), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(240), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(243), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(244), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(257), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1000), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4186), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4998), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(758), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3152), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2429), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3878), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(733), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3703), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(845), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4385), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3348), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(83), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(82), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(81), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(112), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(757), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1183), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5034), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(895), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3263), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3762), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(902), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3710), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1180), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4354), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3446), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(262), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(64), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(898), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4200), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5003), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 5), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 5), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(784), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3273), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3877), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(811), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3641), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(870), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4361), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3378), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(139), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(785), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5029), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(774), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3197), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2447), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3844), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(867), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3693), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1031), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4393), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3440), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(113), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(118), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(121), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(133), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(773), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1265), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4983), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1174), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1195), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(477), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1176), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4258), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(769), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3249), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2439), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3825), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(788), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3653), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(886), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4313), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3279), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(268), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(270), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(272), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(274), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(776), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1358), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4996), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(818), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3228), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3896), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(816), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3675), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(956), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4371), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3361), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(100), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(99), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(485), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(817), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5031), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(913), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3207), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3824), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(916), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3681), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1108), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4377), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3358), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(96), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(95), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(92), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(914), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5032), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(942), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3192), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3858), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1013), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3718), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1082), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4395), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3335), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(102), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(943), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5036), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(945), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2392), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(932), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(944), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(936), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3144), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3830), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1025), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3727), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1107), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4400), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3327), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(68), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(67), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(66), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(91), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(933), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5038), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1135), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3266), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3811), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1156), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3679), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1246), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4345), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3470), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(269), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(514), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1136), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5004), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1129), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3208), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3892), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1073), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3652), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1355), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4375), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3295), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(277), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(80), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1128), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4977), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1179), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3237), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3816), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1081), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3739), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1315), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4402), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3325), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(275), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(192), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(193), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(85), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1178), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5039), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1122), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3259), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3822), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1125), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3730), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1257), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4378), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3395), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(276), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(273), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(271), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(285), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1124), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5001), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1091), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3897), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1078), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3654), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1313), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4330), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3281), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(260), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(267), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(294), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(293), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(536), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1080), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4999), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1533), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1507), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(538), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1530), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4163), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1212), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3193), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3750), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1334), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3665), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1420), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4309), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3309), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(219), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(216), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1213), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5012), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1242), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1219), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(547), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1236), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1287), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1256), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1339), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3147), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3888), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1281), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3700), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1428), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4326), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3434), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(181), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(180), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(205), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1337), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5017), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1382), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2391), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1366), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1378), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1375), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1381), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1379), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3216), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3854), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1697), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3723), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1844), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4316), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3288), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(236), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(235), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(234), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(603), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1589), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4237), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5008), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4196), - [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3200), - [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2408), - [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3796), - [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1518), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3677), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1659), - [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4296), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3280), - [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(227), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(226), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(225), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(237), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1471), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1991), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5010), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3042), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4216), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3595), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3079), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1573), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1656), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(636), - [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1687), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1580), - [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1576), - [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1579), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3272), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3753), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1683), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3658), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1784), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4331), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3413), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(248), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(246), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(258), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1622), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5006), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4171), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4161), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3205), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3798), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1783), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3736), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), - [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2016), - [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4310), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3277), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(232), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(230), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(229), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(242), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(659), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1758), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5009), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3159), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3836), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1745), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3738), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1969), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4329), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3472), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(174), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(173), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(172), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(191), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1894), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5019), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3145), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3808), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1729), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3744), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1957), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4332), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3481), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(170), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(169), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(168), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1770), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5020), - [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1878), - [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1918), - [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1880), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), - [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4201), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4197), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3232), - [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3832), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1951), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3656), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2070), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4353), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3411), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(158), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2021), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5026), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 7), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), REDUCE(sym__expansion_body, 2, .production_id = 20), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(872), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), - [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 7), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3196), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(1026), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3870), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2160), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3731), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2231), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(4301), - [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3297), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(223), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(222), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(221), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(233), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2155), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(5011), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 7), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1036), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1132), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4164), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1357), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1352), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1347), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_pipeline, 2), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1274), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1282), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1424), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1367), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4292), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1447), - [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1423), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1374), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1468), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1564), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1502), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1486), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2630), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1487), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1677), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2922), - [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1418), - [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1032), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2337), - [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3206), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3271), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3861), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2382), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3642), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2425), - [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4337), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3467), - [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(251), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2363), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5005), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4124), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1591), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2817), - [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1426), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2526), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(981), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1959), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(832), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1947), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2206), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(921), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1647), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1996), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2842), - [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1864), - [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3506), - [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4005), - [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1638), - [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(388), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3112), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1804), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2438), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4138), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3569), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1251), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1171), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(848), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(370), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2590), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1228), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2256), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1849), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2055), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3920), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1243), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2047), - [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1320), - [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1065), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2782), - [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1038), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1504), - [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2761), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1087), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(976), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2342), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3527), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(412), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(997), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3993), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1294), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1035), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(711), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1823), - [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1828), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 27), - [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 27), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2672), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 26), - [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 26), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 27), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 27), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 26), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 26), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1883), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2625), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2685), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 27), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 27), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 26), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 26), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2584), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2610), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2576), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2019), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 58), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2029), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2009), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2619), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2123), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2114), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2176), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2172), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2150), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2213), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2562), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2811), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3182), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3756), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2830), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3659), - [5522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2908), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4319), - [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3403), - [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(196), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(195), - [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(194), - [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(215), - [5543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2812), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5015), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), - [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3172), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2330), - [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3760), - [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2987), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3725), - [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3122), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(4336), - [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3462), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(162), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(160), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(159), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(175), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2999), - [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(5022), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2), - [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 20), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 19), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3166), - [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2398), - [5950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3862), - [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4031), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3719), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), - [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4141), - [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4328), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3453), - [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(178), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(177), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(176), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(197), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4046), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4215), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5018), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 20), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 19), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2299), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), - [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3945), - [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4182), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3139), - [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3116), - [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3138), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), - [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3187), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3827), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3097), - [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3745), - [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), - [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3230), - [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4315), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3349), - [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), - [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(207), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(206), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(220), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3098), - [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5014), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2595), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 33), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 36), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2510), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 67), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 50), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 49), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 63), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 35), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 36), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 82), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 85), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(824), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4166), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4727), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2838), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2307), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2307), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(66), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(72), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(295), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2379), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4723), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(70), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(565), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(15), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1356), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(462), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(554), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3646), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(975), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3499), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(898), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(884), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4146), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2710), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(91), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(92), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(93), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(94), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(911), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3719), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4060), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4722), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(824), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4166), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4727), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2838), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2307), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2307), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(78), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(72), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(295), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2379), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4723), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(70), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(565), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(15), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1356), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(462), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(554), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3646), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(975), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3499), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(898), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(884), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4146), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2710), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(91), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(92), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(93), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(94), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(911), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3719), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4060), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4722), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(824), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4166), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4727), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2838), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2307), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2307), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(66), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(72), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(295), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2379), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4723), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(70), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(565), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1356), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(462), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(554), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3646), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(975), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3499), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(898), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(884), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4146), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2710), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(91), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(92), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(93), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(94), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(911), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3719), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4060), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4722), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2556), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2556), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2470), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2470), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 21), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 21), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 7), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 7), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 22), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 22), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(392), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(401), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2513), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(423), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(681), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2888), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3657), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(682), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3427), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(750), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4155), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2745), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(232), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(429), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(684), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3999), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4767), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 14), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 14), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 29), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 29), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(801), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2852), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3566), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(774), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3478), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(930), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4074), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2759), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(272), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(433), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(802), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4057), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4774), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(671), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2900), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2285), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3603), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(643), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3412), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(722), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4095), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2732), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(233), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(234), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(235), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(212), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(670), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(851), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4762), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 13), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 13), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(978), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2908), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3568), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(887), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3510), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1081), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4099), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2825), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(108), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(439), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(968), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3992), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4737), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(873), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2958), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3628), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(897), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3477), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1077), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4124), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2751), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(140), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(141), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(64), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(131), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(441), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(875), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4019), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4742), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(728), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2874), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2336), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3622), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(685), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3463), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(793), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4132), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2753), + [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(288), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(289), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(284), + [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(247), + [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(730), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1050), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4771), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 15), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 15), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(762), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2964), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2300), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3521), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(834), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3502), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(849), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4162), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2696), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(77), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(85), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(86), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(87), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(761), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1172), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4735), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 6), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 6), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(760), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2887), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3649), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(825), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3437), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(852), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4169), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2749), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(262), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(266), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(269), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(236), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(461), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(759), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4768), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(770), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2838), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2287), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3646), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(816), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3499), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(884), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4146), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2710), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(91), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(92), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(93), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(94), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(771), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1360), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4722), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1130), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1075), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(467), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1123), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4053), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(778), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2893), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3575), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(817), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3421), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(943), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4145), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2744), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(254), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(256), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(779), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4766), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(915), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2879), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3512), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(942), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3444), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1143), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4111), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2750), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(271), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(274), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(276), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(240), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(916), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4769), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(977), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2848), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3545), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(863), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3483), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1148), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4106), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2760), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(268), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(267), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(265), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(270), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(489), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(976), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4775), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(956), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2859), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3589), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(890), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3470), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1114), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4094), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2757), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(280), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(278), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(277), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(257), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(961), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4773), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(934), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2265), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(975), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(935), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1042), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2909), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3601), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1100), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3458), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1215), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4081), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2817), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1051), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4738), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1082), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2956), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3618), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1071), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3508), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1258), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4107), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2746), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(143), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(75), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(144), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(135), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(509), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1049), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4743), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1058), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2843), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3534), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1116), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3487), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1161), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4120), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2761), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(264), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(279), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(997), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4776), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1108), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2886), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3546), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1006), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3445), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1290), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4127), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2793), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(81), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(82), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(83), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(84), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1129), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4716), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1125), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2916), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3652), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1044), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3422), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1188), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4137), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2763), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(132), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(133), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(134), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(123), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1124), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4740), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1288), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1196), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1287), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1317), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1294), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(531), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1238), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1293), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2921), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3514), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1318), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3489), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1416), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4139), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2671), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(195), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(196), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(197), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1292), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4755), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1242), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2934), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3647), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1302), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3405), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1405), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4077), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2695), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(171), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(172), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(173), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(161), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1243), + [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4750), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1538), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1547), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(558), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1539), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3952), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1603), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2937), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3656), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1589), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3446), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1603), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1702), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4115), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2719), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(158), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(159), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(160), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(149), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(562), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1607), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4000), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4747), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1377), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1390), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1376), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1431), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2292), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1406), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1429), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4011), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1524), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2935), + [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2329), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3616), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1500), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(3404), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1524), + [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1600), + [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4066), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(2699), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(166), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(167), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(169), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(157), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1525), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(1790), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 28), SHIFT_REPEAT(4749), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 2), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1610), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1643), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1612), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3057), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1681), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1669), + [3286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(613), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1680), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4015), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3377), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3021), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1583), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2941), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3556), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1659), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3479), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1583), + [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1762), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4156), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2733), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(150), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(151), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(152), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1582), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4745), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2445), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2445), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3946), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1688), + [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1760), + [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1690), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4063), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1694), + [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2913), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3550), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1735), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3496), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1694), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1911), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4098), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2698), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(209), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(211), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(194), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1781), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4758), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 26), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 26), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 27), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 27), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1752), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2936), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3576), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3430), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1752), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1879), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4090), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2709), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(162), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(163), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(164), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(153), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(661), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1751), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4748), + [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1687), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2919), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3539), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1714), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3495), + [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1687), + [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1881), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4110), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2697), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(204), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(205), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(206), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(190), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1696), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4757), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 12), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 12), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 11), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 11), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3975), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1841), + [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2899), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3620), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1791), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3407), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1841), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1975), + [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4114), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2734), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(237), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(238), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(239), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(216), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1842), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4763), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 17), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 17), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 16), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 16), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4040), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2483), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2483), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2505), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2505), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2457), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2457), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(921), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2524), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2524), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2574), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2574), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2485), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2485), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2437), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2437), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2447), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2447), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2521), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2521), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1140), + [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2414), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2414), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2539), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2539), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1062), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2424), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2424), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1339), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1254), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2446), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2446), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3938), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2416), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2416), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2527), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2527), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2520), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2520), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1291), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2559), + [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2559), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1184), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_pipeline, 2), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1164), + [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2395), + [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2395), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1387), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3995), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [4199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1412), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1364), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1371), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2410), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2410), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1395), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1554), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1516), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1480), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1495), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1454), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2722), + [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1118), + [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1639), + [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3147), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2237), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1224), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3285), + [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2721), + [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1929), + [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2628), + [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3726), + [4382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(702), + [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2256), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1344), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1990), + [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1594), + [4397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3327), + [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3868), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3686), + [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1411), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4525), + [4412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3290), + [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2896), + [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3764), + [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(971), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(821), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(861), + [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1026), + [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1898), + [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1720), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(982), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2405), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1592), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(763), + [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2612), + [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1131), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(944), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1027), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1326), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1591), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1535), + [4485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1409), + [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2224), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2942), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3592), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2214), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3497), + [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2224), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2274), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4102), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2740), + [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(146), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(148), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(139), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2223), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4744), + [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1715), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2263), + [4539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3920), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3863), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(377), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1268), + [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(415), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1007), + [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(358), + [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1775), + [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1903), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(917), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2146), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1199), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1769), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1759), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1747), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2380), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2481), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 18), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 18), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2489), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1832), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 30), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 30), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 31), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 31), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2568), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1860), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2428), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1884), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2544), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 31), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 31), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 30), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 30), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2026), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1941), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 60), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 60), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 18), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 18), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 8), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 8), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 60), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2564), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 33), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 33), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 31), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 31), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 30), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 30), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2054), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2069), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2080), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2119), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 8), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2796), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2928), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3638), + [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2726), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3481), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2902), + [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4149), + [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2691), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(187), + [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(188), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(189), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(174), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2794), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4753), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3776), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2920), + [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2293), + [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3527), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3783), + [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3509), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3776), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3861), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4121), + [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2694), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(200), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(201), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(202), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(186), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3792), + [5473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4029), + [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4756), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 9), + [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 18), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 18), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), + [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 18), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 18), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 8), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 8), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 24), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2304), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2304), + [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3701), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3978), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3085), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2932), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3573), + [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3071), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3443), + [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3085), + [5989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3149), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4073), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2677), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(179), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(180), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(181), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(170), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3084), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4752), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3092), + [6081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3078), + [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3091), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2498), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 39), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2454), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), - [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), - [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4196), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4905), - [7799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2418), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2485), - [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3901), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2818), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4216), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2881), - [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), - [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), - [7889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2397), - [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2470), - [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3913), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4691), - [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2441), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2489), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3912), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 92), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 51), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2431), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2469), - [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3916), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 53), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 55), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 45), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4161), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 71), - [8026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), - [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4171), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 30), - [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2467), - [8040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2494), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3904), - [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2931), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 69), - [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4201), - [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2418), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3949), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [8068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2907), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4197), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2449), - [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2474), - [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3909), - [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 49), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 49), - [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 40), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 40), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2397), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3944), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 30), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 30), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 49), - [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 49), - [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), - [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), - [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), - [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 28), - [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 28), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), - [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), - [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 57), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 57), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), - [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), - [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2431), - [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3947), - [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2441), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3955), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4), - [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 30), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 30), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [8367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 30), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 30), - [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 32), - [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 32), - [8377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3105), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 31), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 31), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [8392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2467), - [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3957), - [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2592), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [8407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2449), - [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3939), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2511), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), - [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), - [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), - [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2482), - [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3918), - [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 85), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 85), - [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 48), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 112), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 112), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 84), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 103), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 103), - [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 84), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), - [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 65), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 82), - [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 82), - [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 110), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 110), - [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 81), - [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 61), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 79), - [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 79), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 61), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 99), - [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 99), - [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 81), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 105), - [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 105), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 65), - [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3471), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [8699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 59), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 59), - [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 47), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), - [8723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2421), - [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2477), - [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3910), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [8754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 101), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 101), - [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 32), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 97), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 97), - [8792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 31), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 63), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 63), - [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 48), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4164), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 47), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 111), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 111), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 96), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 96), - [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2585), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [8934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 78), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 78), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 98), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 98), - [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 83), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 83), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 104), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 104), - [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 100), - [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 100), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), - [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 64), - [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 64), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 106), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 106), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 113), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 113), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [9166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 102), - [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 102), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), - [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [9204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4292), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2606), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3503), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 80), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 80), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), - [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), - [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), - [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2503), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3905), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 60), - [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 60), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [9361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2421), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3950), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3559), - [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3553), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2621), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), - [9387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), - [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3953), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3580), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), - [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3964), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3573), - [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3252), - [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3900), - [9586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [9588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3922), - [9591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3291), - [9594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(292), - [9597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(291), - [9600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(290), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [10067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3906), - [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3384), - [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(116), - [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(115), - [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(114), - [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3907), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [10165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [10175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4, .production_id = 7), - [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [10283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4034), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 33), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 36), - [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 31), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 67), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 32), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(302), - [10417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [10419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2978), - [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2628), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [10431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2549), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 66), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 84), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 61), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 65), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 81), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 48), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4199), - [10517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), - [10519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), - [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [10527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 47), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [10545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4248), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 108), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 109), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [10622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(3165), - [10625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), - [10627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), SHIFT_REPEAT(2426), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 54), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [10658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 52), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 46), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 56), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 107), - [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 90), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 89), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [10704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2944), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 70), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 93), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 94), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [10737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 91), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 68), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 114), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 72), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 73), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 74), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2963), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 33), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 36), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 38), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 37), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 35), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 34), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 67), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [11366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 36), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [11370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 66), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 33), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 7), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [11662] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2463), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2463), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4011), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2382), + [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2382), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 10), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 10), + [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [7540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4646), + [7543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2334), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [7548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2352), + [7551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3668), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 43), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 43), + [7570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2823), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2678), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 44), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 44), + [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4015), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2401), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2401), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 21), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 21), + [7613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2321), + [7616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2363), + [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3667), + [7622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2501), + [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2501), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [7660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2962), + [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2963), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 57), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [7696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 55), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 53), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3975), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 34), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 47), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4589), + [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2291), + [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2353), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3665), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2286), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2372), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3679), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4063), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 70), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 72), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 95), + [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3946), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2324), + [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2359), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3662), + [7911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [7913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2334), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3717), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2278), + [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2365), + [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3666), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2321), + [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3714), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 51), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 51), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4040), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 42), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 42), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 20), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 20), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 34), + [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 34), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 52), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 52), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 36), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 36), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 36), + [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 36), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 35), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 35), + [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 59), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 59), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 42), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 42), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), + [8233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2324), + [8236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3697), + [8239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3081), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 34), + [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 34), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 43), + [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 43), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 36), + [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 36), + [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 34), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 34), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 43), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 43), + [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), + [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 35), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 35), + [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 46), + [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 46), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 35), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 35), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 35), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 35), + [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 51), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 51), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 36), + [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 36), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [8310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2291), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3710), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4), + [8322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 20), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 20), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 36), + [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 36), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 35), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 35), + [8342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [8346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2286), + [8349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3708), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 34), + [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 34), + [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 32), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 32), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), + [8364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2407), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2278), + [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3704), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [8405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 65), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 65), + [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 50), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 61), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 61), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 49), + [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 76), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 76), + [8421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 49), + [8423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 113), + [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 113), + [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 82), + [8429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 78), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 78), + [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 63), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 80), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 80), + [8445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 35), + [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 83), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 83), + [8451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 36), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), + [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 50), + [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 115), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 115), + [8465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 85), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [8469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4516), + [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2281), + [8475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2281), + [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4516), + [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2348), + [8484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3674), + [8487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 67), + [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3938), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 98), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 98), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 63), + [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 100), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 100), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 35), + [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 102), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 102), + [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 82), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [8526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2338), + [8529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2376), + [8532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3663), + [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 104), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 104), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 36), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 106), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 106), + [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 85), + [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 108), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 108), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 67), + [8553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 79), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 79), + [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3289), + [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 62), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 62), + [8564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3995), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 103), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 103), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [8575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 89), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 89), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 107), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 107), + [8585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2411), + [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 99), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 99), + [8592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 109), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 109), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 105), + [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 105), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 101), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 101), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 77), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 77), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 114), + [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 114), + [8632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4592), + [8635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2315), + [8638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2315), + [8641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4592), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2360), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3660), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 84), + [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 84), + [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 81), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 81), + [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 116), + [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 116), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 66), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 66), + [8684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2550), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [8689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2281), + [8692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2281), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3713), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [8712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_expression, 1, .production_id = 8), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [8724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2419), + [8727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3336), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [8736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2338), + [8739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3720), + [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3334), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2315), + [8758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2315), + [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3718), + [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3344), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [8935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2911), + [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3658), + [8941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [8943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3684), + [8946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2808), + [8949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(116), + [8952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(117), + [8955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(118), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [9434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3672), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2742), + [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(248), + [9443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(249), + [9446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(250), + [9449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3670), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 39), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [9510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 39), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [9524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [9606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2455), + [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2455), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3793), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 41), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2385), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 40), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 39), + [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2459), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 35), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 36), + [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 25), + [9781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 25), SHIFT_REPEAT(3888), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 22), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 23), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 5), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 68), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(291), + [9811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), + [9813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2854), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(3683), + [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), + [9831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 45), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 45), + [9835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3950), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 63), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 35), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 36), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 8), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 67), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 50), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 82), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 85), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [9918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3960), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 49), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 8), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [9957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2959), + [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2917), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 117), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 69), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 54), + [10011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 71), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 112), + [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 73), + [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 56), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 111), + [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 110), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 58), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 74), + [10037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(2866), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 75), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 48), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 97), + [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 96), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 94), + [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 93), + [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 92), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 64), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 64), SHIFT_REPEAT(2337), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 8), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 8), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [10223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 8), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 39), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 90), + [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 91), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [10631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 38), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [10641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 8), + [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 37), + [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 8), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [10975] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), }; #ifdef __cplusplus